forked from worldcoin/kzg-ceremony-participant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
30 lines (26 loc) · 816 Bytes
/
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
[package]
name = "kate-ptau-rs"
version = "0.1.0"
edition = "2021"
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
ark-std = { version = "0.3", features = ["parallel"] }
ark-ff = { version = "0.3" }
ark-ec = { version = "0.3" }
ark-serialize = { version = "0.3" }
ark-bls12-381 = { version = "0.3", features = ["curve"] }
rand = "0.8.4"
eyre = "0.6.8"
serde = { version = "1.0.104", features = ["derive"] }
serde_json = "1.0.48"
ruint = { version = "1.3.0", features = ["serde", "ark-ff"] }
tracing = "0.1"
hex = "0.4.3"
rayon = "1.5.3"
getrandom = { version = "0.2.7", features = ["js"] }
console_error_panic_hook = "0.1.7"
[target."wasm32-unknown-unknown".dependencies]
js-sys = { version = "0.3.58"}
wasm-bindgen = { version = "0.2.74"}
wasm-bindgen-rayon = { version = "1.0", features = ["no-bundler"]}