-
Notifications
You must be signed in to change notification settings - Fork 17
/
Cargo.toml
31 lines (28 loc) · 866 Bytes
/
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
[package]
name = "eth_trie"
version = "0.5.0"
authors = ["https://github.com/ethereum/eth-trie.rs/graphs/contributors"]
description = "Ethereum-compatible Merkle-Patricia Trie."
license = "Apache-2.0"
rust-version = "1.81.0"
edition = "2021"
readme = "README.md"
keywords = ["patricia", "mpt", "evm", "trie", "ethereum"]
repository = "https://github.com/ethereum/eth-trie.rs"
homepage = "https://github.com/ethereum/eth-trie.rs"
documentation = "https://docs.rs/eth_trie"
[dependencies]
alloy-primitives = { version = "0.8.0", features = ["getrandom", "rlp"] }
alloy-rlp = { version = "0.3.8", features = ["derive"] }
hashbrown = "0.14.0"
keccak-hash = "0.10.0"
log = "0.4.16"
parking_lot = "0.12"
[dev-dependencies]
rand = "0.8.3"
hex = "0.4.2"
criterion = "0.5.1"
uuid = { version = "1.4.1", features = ["serde", "v4"] }
[[bench]]
name = "trie"
harness = false