jsonwebtoken/Cargo.toml

25 lines
556 B
TOML
Raw Normal View History

2015-10-31 11:37:15 -04:00
[package]
2015-11-02 18:27:28 -05:00
name = "jsonwebtoken"
2016-08-24 07:50:32 -04:00
version = "1.1.5"
2015-10-31 11:37:15 -04:00
authors = ["Vincent Prouillet <vincent@wearewizards.io>"]
license = "MIT"
readme = "README.md"
2016-01-07 09:01:07 -05:00
description = "Create and parse JWT in a strongly typed way."
2015-11-02 18:27:28 -05:00
homepage = "https://github.com/Keats/rust-jwt"
repository = "https://github.com/Keats/rust-jwt"
keywords = ["jwt", "web", "api", "token", "json"]
2015-10-31 11:37:15 -04:00
[dependencies]
rustc-serialize = "0.3"
2016-10-11 10:13:21 -04:00
clippy = {version = "~0.0.95", optional = true}
ring = "0.4"
2015-10-31 11:37:15 -04:00
[features]
default = []
dev = ["clippy"]
2015-11-02 16:15:45 -05:00
[profile.bench]
lto = true
codegen-units = 1
opt-level = 3