From cc15b183e092635049b0137123cc156f288f590e Mon Sep 17 00:00:00 2001 From: Simon Shine Date: Thu, 17 Nov 2022 23:11:03 +0100 Subject: [PATCH] Update dependencies, pin to breaking Since x.y.* where x > 0, as well as 0.x.y, are breaking, pin each 3rd-party dependency to versions with a granularity that we expect not to break. --- triton-vm/Cargo.toml | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/triton-vm/Cargo.toml b/triton-vm/Cargo.toml index 0177b01d8..e9c61f80c 100644 --- a/triton-vm/Cargo.toml +++ b/triton-vm/Cargo.toml @@ -32,30 +32,30 @@ anyhow = "1.0" bincode = "1.3" blake3 = "1.2" byteorder = "1.4" -console = "0" +console = "0.15.2" colored = "2.0" -hashbrown = "0.12" -itertools = "0.10" +hashbrown = "0.13.1" +itertools = "0.10.5" nom = "7.1" num-bigint = { version = "0.4", features = ["serde"] } num-traits = "0.2" parity-scale-codec = "3" paw = "1.0" -phf = { version = "0.10", features = ["macros"] } -primitive-types = { version = "0.11", features = ["serde"] } -rand = "0.8" -rand_chacha = "0" -rand_core = "0" -rand_distr = "0.4" -rand_pcg = "0.3" +phf = { version = "0.11.1", features = ["macros"] } +primitive-types = { version = "0.12.1", features = ["serde"] } +rand = "0.8.5" +rand_chacha = "0.3.1" +rand_core = "0.6.4" +rand_distr = "0.4.3" +rand_pcg = "0.3.1" rayon = "1.5" -ring = "0.16" -rusty-leveldb = "1" +ring = "0.16.20" +rusty-leveldb = "1.0" serde = { version = "1.0", features = ["derive"] } -serde-big-array = "0" -serde_derive = "1" +serde-big-array = "0.4.1" +serde_derive = "1.0" serde_json = "1.0" -serde_with = "1" +serde_with = "2.1" structopt = { version = "0.3", features = ["paw"] } strum = "0.24" strum_macros = "0.24"