-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
53 lines (46 loc) · 1.61 KB
/
Cargo.toml
File metadata and controls
53 lines (46 loc) · 1.61 KB
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 = "ark-ldt"
version = "1.1.0"
authors = ["arkworks contributors"]
edition = "2021"
[dependencies]
ark-crypto-primitives = { version = "^0.4.0", default-features = false, features = ["merkle_tree", "sponge"] }
ark-ff = { version = "0.4", default-features = false }
ark-poly = { version = "0.4.2", default-features = false }
ark-std = { version = "^0.4.0", default-features = false }
ark-serialize = { version = "0.4", default-features = false }
ark-test-curves = { version = "0.4", default-features = false, features = ["bls12_381_curve"] }
itertools = { version = "0.13.0", default-features = false }
spin = { version = "0.9.8", default-features = false, features = ["once", "mutex", "spin_mutex"] }
hashbrown = { version = "0.14.5" }
[patch.crates-io]
ark-crypto-primitives = { git = "https://github.com/arkworks-rs/crypto-primitives" }
ark-ec = { git = "https://github.com/arkworks-rs/algebra" }
ark-ff = { git = "https://github.com/arkworks-rs/algebra" }
ark-serialize = { git = "https://github.com/arkworks-rs/algebra" }
ark-std = { git = "https://github.com/arkworks-rs/std" }
ark-test-curves = { git = "https://github.com/arkworks-rs/algebra" }
[features]
default = ["std"]
std = [ "ark-crypto-primitives/std", "ark-ff/std", "ark-poly/std", "ark-serialize/std" ]
[profile.release]
opt-level = 3
lto = "thin"
incremental = true
panic = 'abort'
[profile.bench]
opt-level = 3
debug = false
rpath = false
lto = "thin"
incremental = true
debug-assertions = false
[profile.dev]
opt-level = 0
panic = 'abort'
[profile.test]
opt-level = 3
lto = "thin"
incremental = true
debug-assertions = true
debug = true