-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
33 lines (30 loc) · 1.08 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
[package]
name = "aes-proof"
version = "0.1.0"
edition = "2021"
[dependencies]
tokio = { version = "1", features = ["full"] }
hex = "0.4"
aes = "0.8.4"
ctr = "0.9.2"
aes-gcm = "0.9"
aes-gcm-siv = "0.11.1"
ghash = "0.5.1"
cipher = "=0.5.0-pre.4"
ark-circom = { git = "https://github.com/vivianjeng/circom-compat-wasm3.git", version = "0.1.0" }
ark-crypto-primitives = { version = "=0.4.0" }
ark-ec = { version = "0.4.1", default-features = false, features = ["parallel"] }
ark-ff = { version = "=0.4.1", default-features = false, features = ["parallel", "asm"] }
ark-std = { version = "=0.4.0", default-features = false, features = ["parallel"] }
ark-bn254 = { version = "=0.4.0" }
ark-groth16 = { version = "=0.4.0", default-features = false, features = ["parallel"] }
ark-poly = { version = "0.4.1", default-features = false, features = ["parallel"] }
ark-relations = { version = "=0.4.0", default-features = false }
ark-serialize = { version = "0.4.1", default-features = false }
anyhow = "1.0.86"
serde = "1.0.204"
serde_json = "1.0.122"
hex-literal = "0.4.1"
[profile.release]
lto = true
opt-level = "z"