From e25c1b5b34a7e251d01b5e9a6e62faf6f05c5825 Mon Sep 17 00:00:00 2001 From: Matthew Scheirer Date: Wed, 1 Aug 2018 23:11:08 -0400 Subject: [PATCH] Update deps, use patch for biscuit --- Cargo.toml | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) 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" }