-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathCargo.toml
96 lines (93 loc) · 2.83 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
[workspace]
members = [
"co-circom/circom-mpc-compiler",
"co-circom/circom-mpc-vm",
"co-circom/circom-types",
"co-circom/co-circom-snarks",
"co-circom/co-circom",
"co-circom/co-groth16",
"co-circom/co-plonk",
"co-noir/co-acvm",
"co-noir/co-brillig",
"co-noir/co-builder",
"co-noir/ultrahonk",
"co-noir/co-ultrahonk",
"co-noir/co-noir",
"mpc-core",
"mpc-net",
"tests",
]
resolver = "2"
[workspace.package]
edition = "2021"
rust-version = "1.80"
authors = ["TACEO GmbH <[email protected]>"]
homepage = "https://www.taceo.io"
repository = "https:://github.com/TaceoLabs/collaborative-circom"
license = "MIT OR Apache-2.0"
publish = false
readme = "./README.md"
[workspace.dependencies]
acir = { version = "1.0.0-beta.1", git = "https://github.com/noir-lang/noir/", tag = "v1.0.0-beta.1", package = "acir" }
acvm = { version = "1.0.0-beta.1", git = "https://github.com/noir-lang/noir/", tag = "v1.0.0-beta.1", package = "acvm" }
ark-bls12-381 = "0.4.0"
ark-bn254 = "0.4.0"
ark-ec = { version = "0.4.2", default-features = false }
ark-ff = "0.4.2"
ark-poly = "0.4.2"
ark-serialize = { version = "0.4", features = ["derive", "std"] }
ark-std = { version = "0.4.0", features = ["std"] }
bincode = "1.3.3"
brillig = { version = "1.0.0-beta.1", git = "https://github.com/noir-lang/noir/", tag = "v1.0.0-beta.1", package = "brillig" }
bytemuck = { version = "1.15", features = ["derive"] }
byteorder = "1.5.0"
bytes = "1.5.0"
clap = { version = "4.4.8", features = ["derive"] }
color-eyre = "0.6.3"
criterion = { version = "0.5", features = ["async_tokio"] }
eyre = "0.6"
figment = { version = "0.10.19", features = ["toml", "env"] }
futures = "0.3.30"
hex-literal = "0.4.1"
intmap = "2.0.0"
itertools = "0.13.0"
noirc-abi = { version = "1.0.0-beta.1", git = "https://github.com/noir-lang/noir/", tag = "v1.0.0-beta.1", package = "noirc_abi" }
noirc-artifacts = { version = "1.0.0-beta.1", git = "https://github.com/noir-lang/noir/", tag = "v1.0.0-beta.1", package = "noirc_artifacts" }
num-bigint = { version = "0.4.5" }
num-traits = { version = "0.2.18", default-features = false }
paste = "1.0.15"
quinn = "0.11"
rand = "0.8.5"
rand_chacha = "0.3"
rayon = "1.8.1"
rcgen = "0.13"
rustls = "0.23.15"
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9.27"
sha2 = "0.10"
sha3 = "0.10.8"
subtle = "2.6"
thiserror = "1.0.59"
tokio = { version = "1.34.0", features = [
"rt",
"rt-multi-thread",
"net",
"sync",
"time",
"io-util",
"macros",
] }
tokio-util = { version = "0.7.10", features = ["codec"] }
toml = "0.8.13"
tracing = { version = "0.1.40" }
tracing-subscriber = "0.3"
# This profile can be used for CI in pull requests.
[profile.ci-dev]
opt-level = 1
inherits = "dev"
incremental = false
debug = true
overflow-checks = false
# [profile.ci-dev.build-override]
# opt-level = 3