diff --git a/.gitmodules b/.gitmodules deleted file mode 100644 index b4d048b..0000000 --- a/.gitmodules +++ /dev/null @@ -1,4 +0,0 @@ -[submodule "aztec-packages"] - path = aztec-packages - url = https://github.com/Okm165/aztec-packages.git - branch = noir_rs diff --git a/Cargo.toml b/Cargo.toml index 51b0bcd..f6dbe97 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [workspace] -members = ["aztec-packages/barretenberg/bb_rs", "crates/nargo", "crates/noir_rs"] +members = ["crates/nargo", "crates/noir_rs"] resolver = "2" [workspace.package] @@ -13,14 +13,14 @@ authors = ["Bartosz Nowak"] acir = "0.41.0" acvm = "0.41.0" acvm_blackbox_solver = "0.41.0" -bn254_blackbox_solver = "0.39.0" base64 = "0.22.0" -bb_rs = { path = "aztec-packages/barretenberg/bb_rs" } -noir_rs = { path = "crates/noir_rs" } -nargo = { path = "crates/nargo" } +bb_rs = {git = "https://github.com/Okm165/aztec-packages.git", branch = "v0.27.0"} bincode = "1.3.3" +bn254_blackbox_solver = "0.39.0" flate2 = "1.0.28" hex = "0.4.3" +nargo = { path = "crates/nargo" } +noir_rs = { path = "crates/noir_rs" } reqwest = { version = "0.12.1", features = ["blocking"] } serde = "1.0.197" thiserror = "1.0.58" diff --git a/aztec-packages b/aztec-packages deleted file mode 160000 index 541c17f..0000000 --- a/aztec-packages +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 541c17f0b71eb0ca9ac838cedb1fb29601fb7008 diff --git a/crates/noir_rs/Cargo.toml b/crates/noir_rs/Cargo.toml index 544b593..87bb238 100644 --- a/crates/noir_rs/Cargo.toml +++ b/crates/noir_rs/Cargo.toml @@ -8,15 +8,15 @@ authors.workspace = true [dependencies] acir.workspace = true -nargo.workspace = true -acvm.workspace = true acvm_blackbox_solver.workspace = true -bn254_blackbox_solver.workspace = true +acvm.workspace = true base64.workspace = true bb_rs.workspace = true bincode.workspace = true +bn254_blackbox_solver.workspace = true flate2.workspace = true hex.workspace = true +nargo.workspace = true reqwest.workspace = true serde.workspace = true thiserror.workspace = true