From 25b3089256ebba3710af19d6a4f71bdc7b791fb9 Mon Sep 17 00:00:00 2001 From: Conrad Ludgate Date: Sun, 14 Nov 2021 09:34:02 +0000 Subject: [PATCH] Fix: Pin the version of warp in dev dependencies Because newest version updates one of its dependencies which then uses const generics, which we do not support on our MSRV. Signed-off-by: Matthias Beyer --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 30d161be..1ba8c576 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -41,6 +41,6 @@ serde_derive = "1.0.8" float-cmp = "0.8" chrono = { version = "0.4", features = ["serde"] } tokio = { version = "1", features = ["rt-multi-thread", "macros", "fs", "io-util", "time"]} -warp = "0.3.1" +warp = "=0.3.1" futures = "0.3.15" reqwest = "=0.11.3" # version is forced to allow examples compile on rust 1.46, remove "=" as soon as possible