forked from shramee/starklings-cairo1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
54 lines (49 loc) · 1.52 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[package]
name = "noirlings"
version = "0.1.0"
authors = []
edition = "2021"
[dependencies]
argh = "0.1"
indicatif = "0.16"
console = "0.15"
notify = "4.0"
toml = "0.5"
regex = "1.5"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.81"
home = "0.5.3"
glob = "0.3.0"
# Noir runner dependencies
nargo = { git = "https://github.com/noir-lang/noir.git", tag= "v0.34.0" }
bn254_blackbox_solver = { git = "https://github.com/noir-lang/noir.git", tag= "v0.34.0" }
nargo_toml = { git = "https://github.com/noir-lang/noir.git", tag= "v0.34.0" }
noirc_abi = { git = "https://github.com/noir-lang/noir.git", tag= "v0.34.0" }
noirc_driver = { git = "https://github.com/noir-lang/noir.git", tag= "v0.34.0" }
noirc_errors = { git = "https://github.com/noir-lang/noir.git", tag= "v0.34.0" }
noirc_frontend = { git = "https://github.com/noir-lang/noir.git", tag= "v0.34.0"}
acvm = { git = "https://github.com/noir-lang/noir.git", tag= "v0.34.0" }
fm = { git = "https://github.com/noir-lang/noir.git", tag= "v0.34.0" }
noirc_artifacts = {git = "https://github.com/noir-lang/noir.git", tag= "v0.34.0" }
termcolor = "1.4.1"
rayon = "1.10.0"
anyhow = "1.0.66"
ark-ff = "0.4.0-alpha.7"
ark-std = "0.3.0"
clap = { version = "4.0", features = ["derive"] }
itertools = "0.10.3"
num-bigint = "0.4"
num-traits = "0.2"
salsa = "0.16.1"
thiserror = "1.0.32"
colored = "2"
unescaper = "0.1.1"
camino = "1.1.6"
[dev-dependencies]
assert_cmd = "0.11.0"
predicates = "1.0.1"
glob = "0.3.0"
serial_test = "2.0.0"
[[bin]]
name = "noirlings"
path = "src/main.rs"