forked from Keats/jsonwebtoken
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
47 lines (42 loc) · 1.1 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[package]
name = "jsonwebtoken-aws-lc"
version = "9.3.0"
authors = [
"Vincent Prouillet <[email protected]>",
"Glen Henri J. De Cauwsemaecker <[email protected]>"
]
license = "MIT"
readme = "README.md"
description = "Create and decode JWTs in a strongly typed way."
homepage = "https://github.com/glendc/jsonwebtoken-aws-lc"
repository = "https://github.com/glendc/jsonwebtoken-aws-lc"
keywords = ["jwt", "api", "token", "jwk"]
edition = "2021"
include = [
"src/**/*",
"benches/**/*",
"tests/**/*",
"LICENSE",
"README.md",
"CHANGELOG.md",
]
rust-version = "1.74.0"
[dependencies]
aws-lc-rs = { version = "1.8.1", default-features = false, features = ["aws-lc-sys"] }
base64 = "0.22"
# For PEM decoding
pem = { version = "3", optional = true }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
simple_asn1 = { version = "0.6", optional = true }
[dev-dependencies]
criterion = "0.5.1"
time = "0.3"
[features]
default = ["use_pem"]
use_pem = ["pem", "simple_asn1"]
[[bench]]
name = "jwt"
harness = false
[badges]
maintenance = { status = "passively-maintained" }