-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
54 lines (45 loc) · 1.45 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
[package]
name = "circom-scotia"
version = "0.2.0"
edition = "2021"
authors = ["Hanting Zhang <[email protected]>"]
description = "Middleware to compile Circom circuits to Bellperson"
documentation = "https://github.com/lurk-lab/circom-scotia/blob/main/README.md"
readme = "README.md"
repository = "https://github.com/lurk-lab/circom-scotia"
license = "MIT OR Apache-2.0"
keywords = ["zkSNARKs", "cryptography", "proofs"]
rust-version="1.70.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.65"
bellpepper-core = { version = "0.4.0" }
byteorder = "1.4.3"
cfg-if = "1.0.0"
ruint = { version = "1.12.0", features = ["serde", "rand"] }
ff = { version = "0.13", features = ["derive"] }
fnv = "1.0.7"
itertools = "0.9.0"
log = { version = "0.4.20", features = [] }
serde = "1.0"
serde_json = "1.0.85"
thiserror = "1.0.43"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
wasmer = "4.0.0"
wasmer-compiler-llvm = { version = "4.1.1", optional = true }
[target.'cfg(target_arch = "wasm32")'.dependencies]
wasmer = { version = "4.0.0", features = ["std", "js"], default-features = false }
getrandom = { version = "0.2.10", features = ["js"] }
[dev-dependencies]
pasta_curves = { version = "0.5.1" }
criterion = { version = "0.5" }
rand = "0.8.5"
[features]
default = []
llvm = ["dep:wasmer-compiler-llvm"]
[[bench]]
name = "sha256"
harness = false
[[bench]]
name = "keccak"
harness = false