jsonwebtoken/Cargo.toml

40 lines
1.0 KiB
TOML
Raw Permalink Normal View History

2015-10-31 11:37:15 -04:00
[package]
2015-11-02 18:27:28 -05:00
name = "jsonwebtoken"
2022-02-03 14:50:31 -05:00
version = "8.0.1"
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", "api", "token", "jwk"]
2022-01-28 16:37:40 -05:00
edition = "2021"
2021-02-20 04:00:51 -05:00
include = ["src/**/*", "benches/**/*", "tests/**/*", "LICENSE", "README.md", "CHANGELOG.md"]
2015-10-31 11:37:15 -04:00
[dependencies]
serde_json = "1.0"
2022-02-27 23:24:26 -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
2022-02-27 23:24:26 -05:00
pem = { version = "1", optional = true }
simple_asn1 = { version = "0.6", optional = true }
time = "0.3"
2022-03-06 12:17:15 -05:00
crosstime = { git = "https://git.pfaff.dev/michael/crosstime-rs.git" }
2019-11-11 13:47:35 -05:00
[dev-dependencies]
# For the custom time example
time = "0.3"
criterion = "0.3"
2022-01-28 16:37:40 -05:00
[features]
default = ["use_pem"]
use_pem = ["pem", "simple_asn1"]
[[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" }