-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (40 loc) · 956 Bytes
/
Cargo.toml
File metadata and controls
46 lines (40 loc) · 956 Bytes
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
[package]
name = "reth-storage-errors"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
[lints]
workspace = true
[dependencies]
# reth
reth-codecs.workspace = true
reth-primitives-traits.workspace = true
reth-prune-types.workspace = true
reth-static-file-types.workspace = true
# ethereum
alloy-eips.workspace = true
alloy-primitives.workspace = true
alloy-rlp.workspace = true
# misc
derive_more.workspace = true
thiserror.workspace = true
revm-database-interface.workspace = true
revm-state.workspace = true
[features]
default = ["std"]
std = [
"alloy-eips/std",
"alloy-primitives/std",
"alloy-rlp/std",
"derive_more/std",
"reth-primitives-traits/std",
"thiserror/std",
"revm-database-interface/std",
"reth-prune-types/std",
"reth-static-file-types/std",
"revm-state/std",
"reth-codecs/std",
]