From bddfc34299fb47ebaeda40549892ffa70f9ed3e3 Mon Sep 17 00:00:00 2001 From: teoxoy <28601907+teoxoy@users.noreply.github.com> Date: Sat, 16 Apr 2022 15:09:56 +0200 Subject: [PATCH] fix minimal-versions of dependencies --- Cargo.toml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index abeee9fb57..39e51cf682 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -43,9 +43,13 @@ name = "criterion" harness = false [dependencies] -arbitrary = { version = "1", features = ["derive"], optional = true } -bitflags = "1" +arbitrary = { version = "1.0.2", features = ["derive"], optional = true } +bitflags = "1.0.4" bit-set = "0.5" +termcolor = "1.0.4" +# remove termcolor dep when updating to the next version of codespan-reporting +# termcolor minimum version was wrong and was fixed in +# https://github.com/brendanzab/codespan/commit/e99c867339a877731437e7ee6a903a3d03b5439e codespan-reporting = { version = "0.11.0", optional = true } rustc-hash = "1.1.0" indexmap = "1.6" @@ -53,7 +57,7 @@ log = "0.4" num-traits = "0.2" spirv = { version = "0.2", optional = true } thiserror = "1.0.21" -serde = { version = "1.0", features = ["derive"], optional = true } +serde = { version = "1.0.103", features = ["derive"], optional = true } petgraph = { version ="0.6", optional = true } pp-rs = { version = "0.2.1", optional = true } hexf-parse = { version = "0.2.1", optional = true }