From f22e67bcdce56fc2c6af708657b87cb3281d920d Mon Sep 17 00:00:00 2001 From: stavros Date: Tue, 26 May 2020 10:50:52 +0200 Subject: [PATCH 1/3] lock minor version of enumflags2 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index cf020a6..4267877 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,7 +15,7 @@ libc = "0.2" thiserror = "1.0" num-traits = "0.2" num-derive = "0.3" -enumflags2 = "0.6" +enumflags2 = "0.6.2" bytes = "0.5" bitvec = "0.17" futures = "0.3" From 7a74499985eb1621aebe09f17264275b2d5974f3 Mon Sep 17 00:00:00 2001 From: stavros Date: Tue, 26 May 2020 11:12:50 +0200 Subject: [PATCH 2/3] <= version --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 4267877..5d4f2f5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,7 +15,7 @@ libc = "0.2" thiserror = "1.0" num-traits = "0.2" num-derive = "0.3" -enumflags2 = "0.6.2" +enumflags2 = "<= 0.6.2" bytes = "0.5" bitvec = "0.17" futures = "0.3" From 864b81c252ca7bddd200c1b0148a290a32918a02 Mon Sep 17 00:00:00 2001 From: stavros Date: Tue, 26 May 2020 11:17:40 +0200 Subject: [PATCH 3/3] force enumflags2_derive also --- Cargo.lock | 1 + Cargo.toml | 1 + 2 files changed, 2 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index 56dbc4d..d7807d4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -70,6 +70,7 @@ dependencies = [ "bitvec 0.17.4 (registry+https://github.com/rust-lang/crates.io-index)", "bytes 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)", "enumflags2 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", + "enumflags2_derive 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", "num-derive 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index 5d4f2f5..7ca9a2f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,6 +16,7 @@ thiserror = "1.0" num-traits = "0.2" num-derive = "0.3" enumflags2 = "<= 0.6.2" +enumflags2_derive = "<= 0.6.2" bytes = "0.5" bitvec = "0.17" futures = "0.3"