-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (31 loc) · 1.02 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
[package]
name = "sapir"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
web-sys = { version = "0.3.64", features = ["console"] }
ark-std = "0.4.0"
rand = "0.8.5"
getrandom = { version = "0.2.8", features = ["js"] }
ark-ff = { version = "0.4.2", features = ["std", "asm"] }
ark-serialize = "0.4.2"
rayon = { version = "1.7.0", optional = true }
ark-ec = { version = "0.4.2", features = ["rayon"] }
wasm-bindgen = "0.2.87"
console_error_panic_hook = "0.1.7"
hex = "0.4.3"
num-bigint = "0.4.4"
poseidon = { git = "https://github.com/personaelabs/poseidon.git", branch = "main" }
merkle-tree = { git = "https://github.com/personaelabs/merkle-tree.git", branch = "main" }
merlin = "3.0.0"
num-traits = "0.2.17"
[dev-dependencies]
ark-secq256k1 = "0.4.0"
ark-secp256k1 = "0.4.0"
ark-ed25519 = "0.4.0"
eddy255 = { git = "https://github.com/nalinbhardwaj/eddy255" }
[features]
default = ["ark-std/print-trace"]
parallel = ["rayon"]
profiler = []