From 4ca4dc124b7dd170918f9659fc458f3cbd359881 Mon Sep 17 00:00:00 2001 From: Nadja Reitzenstein Date: Wed, 27 Apr 2022 17:21:07 +0200 Subject: [PATCH] Pinning rsasl version to commit --- Cargo.toml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 49d6460..edd5c62 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -74,8 +74,6 @@ capnp = "0.14" capnp-rpc = "0.14.1" # API Authentication -#rsasl = "2.0.0-preview3" -rsasl = { git = "https://github.com/dequbed/rsasl.git", branch = "main", default_features = false, features = ["unstable_custom_mechanism", "provider", "registry_static", "plain"] } desfire = "0.2.0-alpha1" hex = { version = "0.4.3", features = ["serde"] } @@ -101,6 +99,12 @@ async-compat = "0.2.1" url = "2.2.2" rustls-native-certs = "0.6.1" +[dependencies.rsasl] +git = "https://github.com/dequbed/rsasl.git" +rev = "0b5012d0" +default_features = false +features = ["unstable_custom_mechanism", "provider", "registry_static", "plain"] + [dev-dependencies] futures-test = "0.3.16" tempfile = "3.2"