forked from jfbilodeau/jwks-client
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
30 lines (27 loc) · 1.21 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
[package]
name = "jwt-simple-jwks"
version = "0.3.0"
authors = ["Jean-François Bilodeau <[email protected]>", "Sean Pianka <[email protected]>"]
edition = "2018"
keywords = [ "jwt", "jwks", "jwk", "gcp", "jwt-simple" ]
categories = [ "web-programming", "cryptography", "authentication" ]
license = "MIT"
homepage = "https://github.com/seanpianka/jwt-simple-jwks"
repository = "https://github.com/seanpianka/jwt-simple-jwks"
description = "Library to validate JWT tokens using JSON Web Key Set (JWKS)"
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
reqwest = { version = "0.11", default-features = false, features = ["json", "rustls-tls"] }
serde = {version = "1", features = ["derive"]}
serde_json = "1.0.53"
regex = "1.3.7"
ring = "0.17"
jwt-simple = { version = "0.12", default-features = false, features = ["pure-rust"] }
tracing = { version = "0.1", features = ["log"] }
base64 = "0.21.7"
[dev-dependencies]
test-log = { version = "0.2", default-features = false, features = ["trace"] }
tracing-subscriber = { version = "0.3", features = ["parking_lot"] }
tokio = {version = "1", features = ["macros", "rt-multi-thread"]}
tokio-test = "0.4"