forked from chenhunghan/jwks
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
25 lines (22 loc) · 842 Bytes
/
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
[package]
name = "jwks"
version = "0.1.3"
edition = "2021"
authors = ["Hung-Han Chen <chenhungh@gmail.com>"]
description = "A library for retrieving and parsing JSON Web Key Sets (JWKS)"
license = "MIT"
license-file = "LICENSE"
repository = "https://github.com/chenhunghan/jwks"
readme = "README.md"
keywords = ["jwt", "jsonwebtoken", "jwks"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
base64 = "0.21.7"
jsonwebtoken = { git = "https://github.com/jsdt/jsonwebtoken.git", rev = "7f0cef63c74f58dfa912e88da844932ba4c71562"}
reqwest = { version = "0.11.23", features = ["json"] }
serde = { version = "1.0.195", features = ["derive"] }
thiserror = "1.0.56"
tokio = { version = "1.35.1", features = ["full"] }
[dev-dependencies]
httpmock = "0.7.0-rc.1"
serde_json = "1.0.111"