jsonwebtoken/Cargo.toml

25 lines
541 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"
2015-12-22 12:17:53 -05:00
version = "1.0.0"
2015-10-31 11:37:15 -04:00
authors = ["Vincent Prouillet <vincent@wearewizards.io>"]
license = "MIT"
readme = "README.md"
description = "Create and parse JWT."
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"
2015-12-22 12:17:53 -05:00
clippy = {version = "0.0.32", optional = true}
2015-11-01 14:32:43 -05:00
rust-crypto = "0.2.34"
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