jsonwebtoken/Cargo.toml

21 lines
614 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-07-18 07:38:46 -04:00
version = "2.0.3"
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]
error-chain = { version = "0.10", default-features = false }
serde_json = "1.0"
serde_derive = "1.0"
serde = "1.0"
2017-08-30 05:09:57 -04:00
ring = { version = "0.12.0", features = ["rsa_signing", "dev_urandom_fallback"] }
2017-06-24 02:18:07 -04:00
base64 = "0.6"
2017-05-09 00:37:56 -04:00
untrusted = "0.5"
chrono = "0.4"