jsonwebtoken/Cargo.toml

25 lines
659 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"
2019-06-16 12:03:21 -04:00
version = "7.0.0"
2019-11-09 06:42:40 -05:00
authors = ["Vincent Prouillet <hello@vincentprouillet.com>"]
2015-10-31 11:37:15 -04:00
license = "MIT"
readme = "README.md"
2019-11-11 13:47:35 -05:00
description = "Create and decode JWTs in a strongly typed way."
homepage = "https://github.com/Keats/jsonwebtoken"
repository = "https://github.com/Keats/jsonwebtoken"
keywords = ["jwt", "web", "api", "token", "json", "jwk"]
2019-07-06 14:36:32 -04:00
edition = "2018"
2015-10-31 11:37:15 -04:00
[dependencies]
serde_json = "1.0"
2019-11-03 10:46:08 -05:00
serde = {version = "1.0", features = ["derive"] }
2019-08-10 17:38:14 -04:00
ring = { version = "0.16.5", features = ["std"] }
2019-11-03 10:36:19 -05:00
base64 = "0.11"
# For PEM decoding
pem = "0.7"
2019-11-03 10:36:19 -05:00
simple_asn1 = "0.4"
2019-11-11 13:47:35 -05:00
[dev-dependencies]
# For the custom chrono example
chrono = "0.4"