Skip to content

Commit

Permalink
tweak: Change dependency versions
Browse files Browse the repository at this point in the history
  • Loading branch information
dhedey committed Jan 14, 2025
1 parent fc64d1e commit e35c0ca
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -89,14 +89,16 @@ ethnum = {version = "1.3.2", default-features = false }
fixedstr = { version = "0.2.9" }
flate2 = { version = "1.0.27" } # Used in radix-clis for GzDecoder
flume = { version = "0.11.0" } # Used in radix-clis for multi-threaded channels
fslock = { version = "0.2.1" }
hashbrown = { version = "0.13.2" }
hex = { version = "0.4.3", default-features = false }
indexmap = { version = "2.2.5", default-features = false }
inferno = { version = "0.11.19" }
itertools = { version = "0.10.3" }
lazy_static = { version = "1.4.0" }
linreg = { version = "0.2.0" }
lru = { version = "0.8.1", default-features = false }
minicov = { version = "=0.3.5" }
minicov = { version = "=0.3.5" } # Used for scrypto coverage. Has to be fixed for compatibility with the rust version we use.
moka = { version = "0.9.9", features = ["sync"], default-features = false }
num-bigint = { version = "0.4.3", default-features = false }
num-integer = { version = "0.1.45", default-features = false }
Expand All @@ -111,7 +113,7 @@ radix-wasm-instrument = { version = "1.0.0", default-features = false, features
rand = { version = "0.8.5" }
rand_chacha = { version = "0.3.1" }
rayon = { version = "1.5.3" }
regex = { version = "=1.9.3", default-features = false, features = [] }
regex = { version = "1.9.3", default-features = false, features = [] }
rocksdb = { version = "0.21.0" }
rug = { version = "1.18" }
secp256k1 = { version = "0.28.0", default-features = false, features = ["recovery"] }
Expand All @@ -127,14 +129,12 @@ temp-env = { version = "0.2.0" } # Used in radix-clis
trybuild = { version = "1.0.85" }
wabt = { version = "0.10.0" }
walkdir = { version = "2.3.3", default-features = false }
wasmi = { version = "=0.39.1" }
wasmi = { version = "=0.39.1" } # Used for WASM Execution in the Engine. Requires explicit upgrades for testing non-determinism.
wasm-opt = { version = "0.114.1" }
wasmparser = { version = "0.107.0", default-features = false }
extend = { version = "1.2.0" }
zeroize = { version = "1.3.0" }
inferno = { version = "0.11.19" }
tempfile = { version = "3.8.0" }
fslock = { version = "0.2.1" }

# Both the release and test profiles use `panic = "unwind"` to allow certain parts of the Radix
# Engine to be able to catch panics. As an example, the native-vm has a `catch_unwind` to catch
Expand Down

0 comments on commit e35c0ca

Please sign in to comment.