-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
40 lines (35 loc) · 1.11 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
[package]
name = "jwks_client_rs"
version = "0.5.1"
edition = "2021"
authors = ["Mite Ristovski <[email protected]>", "Simone Cottini <[email protected]>"]
license = "MIT"
description = "JWKS-sync client implementation for Auth0"
repository = "https://github.com/primait/jwks_client"
readme = "README.md"
rust-version = "1.67"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["default-tls"]
default-tls = ["reqwest/default-tls"]
native-tls = ["reqwest/native-tls"]
rustls-tls = ["reqwest/rustls-tls"]
[dependencies]
async-trait = "0.1"
tokio = { version = "1", features = ["sync"] }
jsonwebtoken = "9.0"
chrono = { version = "0.4", default-features = false, features = ["clock"] }
reqwest = { version = "0.12", default-features = false, features = ["json"] }
serde = { version = "1.0", features = ["derive"]}
serde_json = "1.0"
thiserror = "1.0"
url = "2.3"
tracing = "0.1"
[dev-dependencies]
tokio = { version = "1", features = ["macros"] }
mockall = "0.13"
httpmock = "0.7"
rand = "0.8"
[[example]]
name = "get_jwks"
path = "examples/get_jwks.rs"