jsonwebtoken/Cargo.toml

34 lines
856 B
TOML

[package]
name = "jsonwebtoken"
version = "8.0.0-beta.6"
authors = ["Vincent Prouillet <hello@vincentprouillet.com>"]
license = "MIT"
readme = "README.md"
description = "Create and decode JWTs in a strongly typed way."
homepage = "https://github.com/Keats/jsonwebtoken"
repository = "https://github.com/Keats/jsonwebtoken"
keywords = ["jwt", "api", "token", "jwk"]
edition = "2018"
include = ["src/**/*", "benches/**/*", "tests/**/*", "LICENSE", "README.md", "CHANGELOG.md"]
[dependencies]
serde_json = "1.0"
serde = {version = "1.0", features = ["derive"] }
ring = { version = "0.16.5", features = ["std"] }
base64 = "0.13"
# For PEM decoding
pem = "1"
simple_asn1 = "0.6"
[dev-dependencies]
# For the custom time example
time = "0.3"
criterion = "0.3"
[[bench]]
name = "jwt"
harness = false
[badges]
maintenance = { status = "passively-maintained" }