Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

V0.27.0 #2

Merged
merged 5 commits into from
Apr 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions .gitmodules

This file was deleted.

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -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]
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ WORKDIR /app
RUN apt-get update && \
apt-get install -y \
build-essential libssl-dev \
libclang-dev cmake
libclang-dev cmake pkg-config

COPY . .
1 change: 0 additions & 1 deletion aztec-packages
Submodule aztec-packages deleted from 124b95
6 changes: 3 additions & 3 deletions crates/noir_rs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading