Skip to content

Commit

Permalink
fix minimal-versions of dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
teoxoy authored and kvark committed Apr 18, 2022
1 parent 88fff4c commit bddfc34
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,17 +43,21 @@ 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"
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 }
Expand Down

0 comments on commit bddfc34

Please sign in to comment.