-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathCargo.toml
26 lines (23 loc) · 853 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
26
[package]
name = "jwks-client"
version = "0.2.0"
authors = ["Jean-François Bilodeau <[email protected]>"]
edition = "2018"
keywords = [ "jwt", "jwks", "jwk", "gcp" ]
categories = [ "web-programming", "cryptography", "authentication" ]
license = "MIT"
homepage = "https://github.com/jfbilodeau/jwks-client"
repository = "https://github.com/jfbilodeau/jwks-client"
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]
base64 = "^0.11.0"
reqwest = {version = "0.11.0", features = ["json"]}
serde = {version = "1", features = ["derive"]}
serde_json = "1"
regex = "1"
ring = "^0.16.0"
[dev-dependencies]
tokio = {version = "1", features = ["macros", "rt-multi-thread"]}
tokio-test = "0.4"