From 648bce2112236e4003c5bb94ac537c7c81279d11 Mon Sep 17 00:00:00 2001 From: SnoozeTime Date: Sat, 24 Aug 2019 15:38:21 +0900 Subject: [PATCH 1/2] Remove exact version dependency on chrono --- vm/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vm/Cargo.toml b/vm/Cargo.toml index c83de6eb766..e7e533c6d0e 100644 --- a/vm/Cargo.toml +++ b/vm/Cargo.toml @@ -43,7 +43,7 @@ regex = "1" rustc_version_runtime = "0.1.*" statrs = "0.10.0" caseless = "0.2.1" -chrono = "=0.4.6" +chrono = "0.4.6" unicode-segmentation = "1.2.1" unicode-xid = "0.1.0" lazy_static = "^1.0.1" From 1ba2ca87b1dae1386c8eeac033b3c5120e4fb6ee Mon Sep 17 00:00:00 2001 From: SnoozeTime Date: Sat, 24 Aug 2019 15:39:13 +0900 Subject: [PATCH 2/2] Remove exact version dependencies... --- vm/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vm/Cargo.toml b/vm/Cargo.toml index e7e533c6d0e..a8b43923386 100644 --- a/vm/Cargo.toml +++ b/vm/Cargo.toml @@ -26,8 +26,8 @@ blake2 = "0.8" num-complex = { version = "0.2", features = ["serde"] } num-bigint = { version = "0.2", features = ["serde"] } -num-traits = "=0.2.6" -num-integer = "=0.1.39" +num-traits = "0.2.6" +num-integer = "0.1.39" num-rational = "0.2.1" num-iter = "0.1" rand = "0.5"