jsonwebtoken/Cargo.toml

34 lines
832 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"
2020-11-17 03:32:24 -05:00
version = "8.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"
2019-11-15 14:33:49 -05:00
keywords = ["jwt", "web", "api", "token", "jwk"]
2019-07-06 14:36:32 -04:00
edition = "2018"
2020-06-16 06:07:08 -04:00
include = ["src/**/*", "LICENSE", "README.md", "CHANGELOG.md"]
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"] }
2020-11-17 03:32:24 -05:00
base64 = "0.13"
2019-11-03 10:36:19 -05:00
# For PEM decoding
2020-06-09 16:00:37 -04:00
pem = "0.8"
2020-11-17 03:32:24 -05:00
simple_asn1 = "0.5"
2019-11-11 13:47:35 -05:00
[dev-dependencies]
# For the custom chrono example
chrono = "0.4"
criterion = "0.3"
[[bench]]
name = "jwt"
harness = false
2019-11-11 14:16:34 -05:00
[badges]
2019-11-15 14:39:19 -05:00
maintenance = { status = "passively-maintained" }