diff --git a/Cargo.lock b/Cargo.lock index 21b0fa698..1c3b941ce 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -672,9 +672,9 @@ dependencies = [ [[package]] name = "clvmr" -version = "0.6.1" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "deb235bb5ce94e1e64e54cede97ca5a4766590d3584dea1b4285499d8e7f56f6" +checksum = "b4b05784a842671ccedbefb0e3dabab7d0eb3411395f5182a4c68722a5284591" dependencies = [ "chia-bls 0.4.0", "hex-literal", diff --git a/crates/chia-consensus/Cargo.toml b/crates/chia-consensus/Cargo.toml index e2536cb70..66fd1f078 100644 --- a/crates/chia-consensus/Cargo.toml +++ b/crates/chia-consensus/Cargo.toml @@ -12,7 +12,7 @@ repository = "https://github.com/Chia-Network/chia_rs" py-bindings = ["dep:pyo3", "dep:chia_py_streamable_macro"] [dependencies] -clvmr = "0.6.1" +clvmr = "0.7.0" hex = "0.4.3" pyo3 = { version = ">=0.19.0", optional = true } sha2 = "0.10.8" diff --git a/crates/chia-consensus/fuzz/Cargo.toml b/crates/chia-consensus/fuzz/Cargo.toml index cc57c4b4d..9483b0a2a 100644 --- a/crates/chia-consensus/fuzz/Cargo.toml +++ b/crates/chia-consensus/fuzz/Cargo.toml @@ -10,7 +10,7 @@ cargo-fuzz = true [dependencies] libfuzzer-sys = "0.4" -clvmr = "0.6.1" +clvmr = "0.7.0" clvm-utils = { path = "../../clvm-utils" } clvm-traits = { path = "../../clvm-traits" } chia-protocol = { path = "../../chia-protocol" } diff --git a/crates/chia-protocol/Cargo.toml b/crates/chia-protocol/Cargo.toml index 511058443..865f301df 100644 --- a/crates/chia-protocol/Cargo.toml +++ b/crates/chia-protocol/Cargo.toml @@ -18,7 +18,7 @@ sha2 = "0.10.8" hex = "0.4.3" chia_streamable_macro = { version = "0.8.0", path = "../chia_streamable_macro" } chia_py_streamable_macro = { version = "0.7.0", path = "../chia_py_streamable_macro", optional = true } -clvmr = "0.6.1" +clvmr = "0.7.0" chia-traits = { version = "0.8.0", path = "../chia-traits" } clvm-traits = { version = "0.8.0", path = "../clvm-traits", features = ["derive"] } clvm-utils = { version = "0.8.0", path = "../clvm-utils" } diff --git a/crates/chia-protocol/fuzz/Cargo.toml b/crates/chia-protocol/fuzz/Cargo.toml index abe2e2b58..97f5e3f0d 100644 --- a/crates/chia-protocol/fuzz/Cargo.toml +++ b/crates/chia-protocol/fuzz/Cargo.toml @@ -10,7 +10,7 @@ cargo-fuzz = true [dependencies] libfuzzer-sys = "0.4" -clvmr = "0.6.1" +clvmr = "0.7.0" chia-traits = { path = "../../chia-traits" } clvm-traits = { path = "../../clvm-traits" } chia-protocol = { path = "..", features = ["arbitrary"] } diff --git a/crates/chia-puzzles/Cargo.toml b/crates/chia-puzzles/Cargo.toml index 48af6de44..a8884938c 100644 --- a/crates/chia-puzzles/Cargo.toml +++ b/crates/chia-puzzles/Cargo.toml @@ -12,7 +12,7 @@ repository = "https://github.com/Chia-Network/chia_rs" arbitrary = ["dep:arbitrary", "chia-protocol/arbitrary"] [dependencies] -clvmr = "0.6.1" +clvmr = "0.7.0" sha2 = "0.10.8" num-bigint = "0.4.3" hex-literal = "0.4.1" diff --git a/crates/chia-puzzles/fuzz/Cargo.toml b/crates/chia-puzzles/fuzz/Cargo.toml index 9e4721aa7..fa997c2a2 100644 --- a/crates/chia-puzzles/fuzz/Cargo.toml +++ b/crates/chia-puzzles/fuzz/Cargo.toml @@ -10,7 +10,7 @@ cargo-fuzz = true [dependencies] libfuzzer-sys = "0.4" -clvmr = "0.6.1" +clvmr = "0.7.0" pyo3 = { version = ">=0.19.0", features = ["auto-initialize"]} chia-puzzles = { path = "..", features = ["arbitrary"] } clvm-traits = { version = "0.8.0", path = "../../clvm-traits" } diff --git a/crates/chia-tools/Cargo.toml b/crates/chia-tools/Cargo.toml index bccb0f89c..b38afa464 100644 --- a/crates/chia-tools/Cargo.toml +++ b/crates/chia-tools/Cargo.toml @@ -16,7 +16,7 @@ clvm-traits = { version = "0.8.0", path = "../clvm-traits" } chia-puzzles = { version = "0.8.0", path = "../chia-puzzles" } chia-bls = { version = "0.8.0", path = "../chia-bls" } chia-consensus = { version = "0.8.0", path = "../chia-consensus" } -clvmr = { version = "0.6.0", features = ["counters"] } +clvmr = { version = "0.7.0", features = ["counters"] } rusqlite = { version = "0.30.0", features = ["bundled"] } clap = { version = "4.3.9", features = ["derive"] } zstd = "0.12.3" diff --git a/crates/clvm-traits/Cargo.toml b/crates/clvm-traits/Cargo.toml index fb1450131..687020453 100644 --- a/crates/clvm-traits/Cargo.toml +++ b/crates/clvm-traits/Cargo.toml @@ -18,7 +18,7 @@ py-bindings = ["dep:pyo3"] [dependencies] pyo3 = { version = ">=0.19.0", optional = true } -clvmr = "0.6.1" +clvmr = "0.7.0" clvm-derive = { version = "0.6.0", path = "../clvm-derive", optional = true } chia-bls = { version = "0.8.0", path = "../chia-bls", optional = true } num-bigint = "0.4.3" diff --git a/crates/clvm-utils/Cargo.toml b/crates/clvm-utils/Cargo.toml index 27e767e38..927e71b70 100644 --- a/crates/clvm-utils/Cargo.toml +++ b/crates/clvm-utils/Cargo.toml @@ -9,7 +9,7 @@ homepage = "https://github.com/Chia-Network/chia_rs" repository = "https://github.com/Chia-Network/chia_rs" [dependencies] -clvmr = "0.6.1" +clvmr = "0.7.0" clvm-traits = { version = "0.8.0", path = "../clvm-traits" } hex = "0.4.3" diff --git a/crates/clvm-utils/fuzz/Cargo.toml b/crates/clvm-utils/fuzz/Cargo.toml index 512b22342..cd9ac42ef 100644 --- a/crates/clvm-utils/fuzz/Cargo.toml +++ b/crates/clvm-utils/fuzz/Cargo.toml @@ -10,7 +10,7 @@ cargo-fuzz = true [dependencies] libfuzzer-sys = "0.4" -clvmr = "0.6.1" +clvmr = "0.7.0" chia-fuzz = { path = "../../chia-consensus/fuzz" } clvm-utils = { path = ".." } clvm-traits = { path = "../../clvm-traits" } diff --git a/wheel/Cargo.toml b/wheel/Cargo.toml index 53c545775..78a82a9c8 100644 --- a/wheel/Cargo.toml +++ b/wheel/Cargo.toml @@ -15,7 +15,7 @@ crate-type = ["cdylib"] path = "src/lib.rs" [dependencies] -clvmr = "0.6.1" +clvmr = "0.7.0" hex = "0.4.3" sha2 = "0.10.8" pyo3 = { version = "=0.19.0", features = ["multiple-pymethods"] }