From cc53cf523ded41c767ece094e73ae01365920b51 Mon Sep 17 00:00:00 2001 From: Samuel Ortiz Date: Wed, 14 Dec 2022 09:57:15 +0100 Subject: [PATCH] AS: Switch to upstream shadow_rs crates.io shadow_rs makes clippy fail, but this is fixed with https://github.com/baoyachi/shadow-rs/pull/123 and https://github.com/baoyachi/shadow-rs/pull/124. Signed-off-by: Samuel Ortiz --- Cargo.toml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 6d0436e3c..431ac3910 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,7 +32,8 @@ redis = "0.21.5" serde = { version = "1.0", features = ["derive"] } serde_json = "*" sha2 = "0.10" -shadow-rs = "0.16.3" +# # TODO replace with shadow-rs 0.18.1 once it's released +shadow-rs = { git = "https://github.com/baoyachi/shadow-rs.git" } sled = "0.34.7" strum = "0.24.0" strum_macros = "0.24.0" @@ -42,7 +43,8 @@ tonic = "0.8.1" uuid = { version = "1.1.2", features = ["v4"] } [build-dependencies] -shadow-rs = "0.16.3" +# TODO replace with shadow-rs 0.18.1 once it's released +shadow-rs = { git = "https://github.com/baoyachi/shadow-rs.git" } tonic-build = "0.8.0" [dev-dependencies]