diff --git a/Cargo.toml b/Cargo.toml index 4bf58ac..2a5b6e4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,17 +1,17 @@ [package] name = "oidc" version = "0.1.0" +license = "Apache-2.0" +description = "OpenID Connect client library using Reqwest" +readme = "README.md" authors = ["Matthew Scheirer "] categories = ["web-programming", "authentication"] -description = "OpenID Connect client library using Reqwest" -license = "Apache-2.0" keywords = ["sync", "authentication", "client", "reqwest", "oauth", "openid", "openid_connect", "web"] -readme = "README.md" [dependencies] base64 = "0.9" -biscuit = { git = "https://github.com/Korvox/biscuit" } +biscuit = "0.0.8" chrono = "0.4" inth-oauth2 = "0.15" reqwest = "0.8" @@ -19,5 +19,8 @@ serde = "1" serde_derive = "1" serde_json = "1" url_serde = "0.2" -validator = "0.6" -validator_derive = "0.6" +validator = "0.7" +validator_derive = "0.7" + +[patch.crates-io] +biscuit = { git = "https://github.com/Korvox/biscuit" }