jsonwebtoken/Cargo.toml

21 lines
580 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"
2017-04-10 23:58:50 -04:00
version = "2.0.0"
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]
2017-04-01 15:02:08 -04:00
rustc-serialize = "^0.3"
error-chain = "0.9"
serde_json = "0.9"
serde_derive = "0.9"
serde = "0.9"
2017-02-22 02:45:28 -05:00
ring = { version = "0.7", features = ["rsa_signing", "dev_urandom_fallback"] }
base64 = "0.4"
2017-02-22 02:45:28 -05:00
untrusted = "0.3"