forked from dusk-network/dusk-poseidon-merkle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (40 loc) · 1.04 KB
/
Copy pathCargo.toml
File metadata and controls
49 lines (40 loc) · 1.04 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
[package]
name = "dusk-poseidon-merkle"
version = "0.1.0"
authors = ["Victor Lopez <victor@dusk.network>"]
edition = "2018"
build = "build.rs"
[features]
big-merkle = ["rocksdb", "bincode", "serde", "num_cpus"]
[dependencies]
lazy_static = "1.4.0"
rocksdb = { version = "0.12", optional = true }
bincode = { version = "1.2", optional = true }
serde = { version = "1.0", features = ["derive"], optional = true }
num_cpus = { version = "1.10", optional = true }
[dependencies.curve25519-dalek]
branch = "feature/compressed-try-from"
git = "https://github.com/dusk-network/curve25519-dalek.git"
features = ["serde"]
[dev-dependencies]
criterion = "0.3"
rand = "0.7.0"
sha2 = "0.8"
tempdir = "0.3"
[build-dependencies.curve25519-dalek]
branch = "feature/compressed-try-from"
git = "https://github.com/dusk-network/curve25519-dalek.git"
[[bench]]
name = "hash"
harness = false
[[bench]]
name = "merkle"
harness = false
[[bench]]
name = "big_merkle"
harness = false
required-features = ["big-merkle"]
[profile.bench]
lto = true
incremental = false
codegen-units = 1