forked from EspressoSystems/jellyfish
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
47 lines (44 loc) · 1.91 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
[package]
name = "jf-rescue"
version = "0.1.0"
description = "Rescue hash function implementation."
authors = { workspace = true }
edition = { workspace = true }
license = { workspace = true }
rust-version = { workspace = true }
homepage = { workspace = true }
documentation = { workspace = true }
repository = { workspace = true }
[dependencies]
ark-bls12-377 = { workspace = true }
ark-bls12-381 = { workspace = true }
ark-bn254 = { workspace = true }
ark-bw6-761 = { workspace = true }
ark-crypto-primitives = { version = "0.4.0", default-features = false, features = [
"sponge",
] }
ark-ed-on-bls12-377 = "0.4.0"
ark-ed-on-bls12-381 = "0.4.0"
ark-ed-on-bn254 = "0.4.0"
ark-ff = { workspace = true }
ark-std = { workspace = true }
displaydoc = { workspace = true }
itertools = { workspace = true }
jf-commitment = { version = "0.1.0", git = "https://github.com/EspressoSystems/jellyfish", tag = "0.4.5", default-features = false }
jf-crhf = { version = "0.1.0", git = "https://github.com/EspressoSystems/jellyfish", tag = "0.4.5", default-features = false }
jf-prf = { version = "0.1.0", git = "https://github.com/EspressoSystems/jellyfish", tag = "0.4.5", default-features = false }
jf-relation = { version = "0.4.4", git = "https://github.com/EspressoSystems/jellyfish", tag = "0.4.5", optional = true, default-features = false }
jf-utils = { version = "0.4.4", git = "https://github.com/EspressoSystems/jellyfish", tag = "0.4.5", default-features = false }
[dev-dependencies]
ark-ed-on-bls12-381-bandersnatch = "0.4.0"
[features]
default = ["parallel"]
std = [
"ark-bls12-377/std", "ark-bls12-381/std", "ark-bn254/std",
"ark-bw6-761/std", "ark-std/std", "ark-ff/std",
"ark-crypto-primitives/std", "ark-ed-on-bls12-377/std",
"ark-ed-on-bls12-381/std", "ark-ed-on-bn254/std",
"itertools/use_std", "jf-utils/std", "jf-relation/std",
]
gadgets = ["jf-relation"]
parallel = ["jf-relation/parallel"]