diff --git a/Cargo.lock b/Cargo.lock index 9004e42e..f1c5ad8a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,9 +4,9 @@ version = 3 [[package]] name = "acir" -version = "0.7.0" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "193d36487ed35bb7e346437e439cdefb6ae2d61bca65782fb1cc5f8c66e4fe89" +checksum = "1f764b474e341efc3e8ee3d5054840b2fd2ac002f764fc2f4cd3569ce76badd1" dependencies = [ "acir_field", "flate2", @@ -16,9 +16,9 @@ dependencies = [ [[package]] name = "acir_field" -version = "0.7.0" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6c91a65102981758a41cdba45613653835660d8e5ff1020c8a156fad12f94d04" +checksum = "cbca7df5192c7823d4108d2c34cadcfd30dca94506b9e9861f85f0ea747ddedc" dependencies = [ "ark-bn254", "ark-ff", @@ -30,9 +30,9 @@ dependencies = [ [[package]] name = "acvm" -version = "0.7.0" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "94b486b610240761893d8db5e09c69df12b81c3eec8591e9034f270ebe886ec2" +checksum = "92d5df175b6923bf9bb05ba973b017b0fa1356066be8f0ebadd3d2dbbc48bd5b" dependencies = [ "acir", "acvm_stdlib", @@ -48,9 +48,9 @@ dependencies = [ [[package]] name = "acvm_stdlib" -version = "0.7.0" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4b7e6ec98492934096c9b5f17057b8ba0689fec2f628ca38a0bf5f6b0b922223" +checksum = "aa2bbc18fe9732ca3d93a2bf8f1a1ad99a003b565e7bc1ad5c67f69867449e8f" dependencies = [ "acir", ] diff --git a/common/Cargo.toml b/common/Cargo.toml index d8fd702c..9280837b 100644 --- a/common/Cargo.toml +++ b/common/Cargo.toml @@ -10,7 +10,7 @@ publish = false # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -acvm = { version = "0.7.0", features = ["bn254"] } +acvm = { version = "0.8.0", features = ["bn254"] } sled = "0.34.6" blake2 = "0.9.1"