Skip to content

Commit

Permalink
bindings/rust/Cargo.toml: pin dependencies for Rust 1.56.
Browse files Browse the repository at this point in the history
  • Loading branch information
dot-asm committed May 31, 2024
1 parent e99f7db commit 39d1164
Showing 1 changed file with 14 additions and 8 deletions.
22 changes: 14 additions & 8 deletions bindings/rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@ no-threads = []
serde-secret = ["serde"]

[build-dependencies]
cc = "1.0"
cc = "=1.0.79"
[target.'cfg(target_env = "msvc")'.build-dependencies]
glob = "0.3"

[dependencies]
zeroize = { version = "^1.1", features = ["zeroize_derive"] }
zeroize = { version = "=1.6.0", features = ["zeroize_derive"] }
serde = { version = "1.0.152", optional = true }

[target.'cfg(not(any(target_arch="wasm32", target_os="none", target_os="unknown", target_os="uefi")))'.dependencies]
Expand All @@ -54,13 +54,19 @@ threadpool = "^1.8.1"
[dev-dependencies]
rand = "0.8"
rand_chacha = "0.3"
rmp-serde = "1.1.1"
rmp-serde = "=1.1.2"
# Uncomment if you want to execute the test suite with Rust 1.56 through 1.64.
#csv = "=1.1.6"
#byteorder = "=1.4.3"
#regex = "=1.7.3"
#rayon = "=1.6.1"
#rayon-core = "=1.10.1"
csv = "=1.1.6"
byteorder = "=1.4.3"
regex = "=1.7.3"
rayon = "=1.6.1"
rayon-core = "=1.10.1"
memchr = "=2.6.0"
crossbeam-deque = "=0.8.3"
crossbeam-epoch = "=0.9.15"
crossbeam-utils = "=0.8.16"
plotters-backend = "=0.3.5"
rmp = "=0.8.12"

[target.'cfg(any(unix, windows))'.dev-dependencies]
criterion = "0.3"
Expand Down

0 comments on commit 39d1164

Please sign in to comment.