-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
53 lines (46 loc) · 1.29 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
[package]
name = "eth_trie_utils"
description = "Types and utility functions for building/working with partial Ethereum tries."
version = "0.6.0"
authors = ["Polygon Zero <[email protected]>"]
edition = "2021"
readme = "README.md"
license = "MIT OR Apache-2.0"
homepage = "https://github.com/0xPolygonZero/eth-trie-utils"
repository = "https://github.com/0xPolygonZero/eth-trie-utils"
keywords = ["ethereum", "trie"]
categories = ["cryptography::cryptocurrencies", "data-structures"]
exclude = [
"test_data/*"
]
[dependencies]
bytes = "1.4.0"
enum-as-inner = "0.6.0"
ethereum-types = "0.14.1"
hex = "0.4.3"
keccak-hash = "0.10.0"
parking_lot = { version = "0.12.1", features = ["serde"] }
thiserror = "1.0.40"
log = "0.4.17"
num = { version = "0.4.1", optional = true }
num-traits = "0.2.15"
uint = "0.9.5"
rlp = "0.5.2"
serde = { version = "1.0.160", features = ["derive", "rc"] }
[dev-dependencies]
eth_trie = "0.4.0"
pretty_env_logger = "0.5.0"
rand = "0.8.5"
rlp-derive = "0.1.0"
serde = { version = "1.0.160", features = ["derive"] }
serde_json = "1.0.96"
[features]
default = ["trie_debug"]
trie_debug = ["num"]
[lib]
doc-scrape-examples = true
[[example]]
name = "simple"
doc-scrape-examples = true
[package.metadata.docs.rs]
cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"]