-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathCargo.toml
More file actions
61 lines (54 loc) · 1.63 KB
/
Copy pathCargo.toml
File metadata and controls
61 lines (54 loc) · 1.63 KB
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
[package]
name = "circom-witnesscalc"
version = "0.3.0"
edition = "2021"
repository = "https://github.com/iden3/circom-witnesscalc"
authors = ["Oleh Lomaka <oleg.lomaka@gmail.com>"]
description = "Witness calculator for Circom circuits"
license = "MIT OR Apache-2.0"
[features]
default = []
print_opcode = []
debug_vm2 = []
parallel_components = []
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ark-bn254 = { version = "0.5.0", features = ["std"] }
ark-ff = { version = "0.5.0", features = ["std", "asm"] }
ark-serialize = { version = "0.5.0", features = ["derive"] }
byteorder = "1.4.3"
rand = "0.8.5"
ruint = { version = "1.13.1", features = ["rand", "serde", "num-traits"] }
serde = { version = "1.0.190", features = ["derive"] }
serde_json = "1.0.64"
wtns-file = "0.1.5"
libc = "0.2.155"
# circom dependencies
#compiler = { path = "../circom/compiler" }
#code_producers = { path = "../circom/code_producers" }
#program_structure = { path = "../circom/program_structure" }
#parser = { path = "../circom/parser" }
#type_analysis = { path = "../circom/type_analysis" }
#constraint_generation = { path = "../circom/constraint_generation" }
prost = "0.13.1"
num-bigint = "0.4.6"
num-traits = "0.2.19"
anyhow = "1.0.97"
indicatif = "0.17.11"
memmap2 = "0.9.5"
tempfile = "3.19.1"
winnow = "0.7.7"
thiserror = "2.0.12"
bitvec = "1.0.1"
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
#debug = true
[lib]
crate-type = ["lib", "staticlib", "cdylib"]
[build-dependencies]
bindgen = "0.72.0"
prost-build = "0.13.3"
[workspace]
members = ["extensions/build-circuit", "extensions/compiler"]