[package] name = "jwks" version = "0.1.3" edition = "2021" authors = ["Hung-Han Chen "] 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 = "9.2.0" 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"