-
Notifications
You must be signed in to change notification settings - Fork 10
/
Cargo.toml
56 lines (45 loc) · 1.37 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
55
56
[package]
name = "foundry-fork-db"
description = "Fork database used by Foundry"
version = "0.7.1"
edition = "2021"
# Remember to update clippy.toml as well
rust-version = "1.79"
authors = ["Foundry Contributors"]
license = "MIT OR Apache-2.0"
homepage = "https://github.com/foundry-rs/foundry-fork-db"
repository = "https://github.com/foundry-rs/foundry-fork-db"
[lints]
rust.unused_must_use = "deny"
rust.rust_2018_idioms = { level = "deny", priority = -1 }
rustdoc.all = "warn"
[lints.clippy]
missing_const_for_fn = "warn"
use_self = "warn"
option_if_let_else = "warn"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
alloy-primitives = { version = "0.8.5", features = ["map"] }
alloy-provider = { version = "0.6", default-features = false }
alloy-rpc-types = { version = "0.6", features = ["eth"] }
alloy-serde = { version = "0.6", default-features = false }
alloy-transport = { version = "0.6", default-features = false }
alloy-consensus = { version = "0.6", default-features = false }
eyre = "0.6"
futures = "0.3"
parking_lot = "0.12"
revm = { version = "18.0.0", default-features = false, features = [
"std",
"serde",
] }
serde = "1.0"
serde_json = "1.0"
thiserror = "1"
tokio = { version = "1", features = ["rt-multi-thread"] }
tracing = "0.1"
url = "2"
[dev-dependencies]
alloy-rpc-client = "0.6"
alloy-transport-http = "0.6"