-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
54 lines (46 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[package]
name = "milhouse"
version = "0.3.0"
description = "Persistent binary merkle tree"
edition = "2021"
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/sigp/milhouse"
documentation = "https://docs.rs/milhouse"
keywords = ["ethereum", "functional"]
categories = ["data-structures", "cryptography::cryptocurrencies", ]
[dependencies]
educe = "0.6.0"
ethereum_hashing = "0.7.0"
ethereum_ssz = "0.7.0"
ethereum_ssz_derive = "0.7.0"
itertools = "0.13.0"
parking_lot = "0.12.1"
rayon = "1.5.1"
serde = { version = "1.0.0", features = ["derive"] }
tree_hash = "0.8.0"
triomphe = "0.1.5"
typenum = "1.14.0"
vec_map = "0.8.2"
smallvec = "1.8.0"
arbitrary = { version = "1.2.3", features = ["derive"] }
alloy-primitives = { version = "0.8.0", features = ["arbitrary"] }
[dev-dependencies]
ssz_types = "0.8.0"
proptest = "1.0.0"
tree_hash_derive = "0.8.0"
criterion = "0.5"
[features]
debug = []
[[bench]]
name = "rebase"
harness = false
[[bench]]
name = "tree_hash_root"
harness = false
[[bench]]
name = "ssz"
harness = false
[[bench]]
name = "pop_front"
harness = false