[package] name = "jwks-client" version = "0.2.0" authors = ["Jean-François Bilodeau "] 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.10.0", features = ["json"]} serde = {version = "1", features = ["derive"]} serde_json = "1" regex = "1" ring = "^0.16.0" [dev-dependencies] tokio = {version = "0.2", features = ["macros"]} tokio-test = "0.2"