forked from iosis-tech/noir_rs
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
29 lines (26 loc) · 1.28 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[package]
name = "noir_rs"
version = "1.0.0-beta.0"
edition = "2021"
authors = ["Bartosz Nowak", "Theo Madzou"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
acir = { git = "https://github.com/noir-lang/noir.git", rev = "b88db67a4fa92f861329105fb732a7b1309620fe", package = "acir" }
acvm = { git = "https://github.com/noir-lang/noir.git", rev = "b88db67a4fa92f861329105fb732a7b1309620fe", package = "acvm" }
acvm_blackbox_solver = { git = "https://github.com/noir-lang/noir.git", rev = "b88db67a4fa92f861329105fb732a7b1309620fe", package = "acvm_blackbox_solver" }
base64 = "0.22.0"
bb_rs = { git = "https://github.com/zkpassport/aztec-packages.git", branch = "v0.67.0", optional = true }
bincode = "1.3.3"
bn254_blackbox_solver = { git = "https://github.com/noir-lang/noir.git", rev = "b88db67a4fa92f861329105fb732a7b1309620fe", package = "bn254_blackbox_solver" }
flate2 = "1.0.28"
hex = "0.4.3"
nargo = { git = "https://github.com/noir-lang/noir.git", rev = "b88db67a4fa92f861329105fb732a7b1309620fe", package = "nargo" }
reqwest = { version = "0.12.1", features = ["blocking"] }
serde = "1.0.197"
thiserror = "1.0.58"
tracing = "0.1"
tracing-subscriber = "0.3"
serde_json = "1.0.125"
[features]
default = []
barretenberg = ["bb_rs"]