forked from foundry-rs/foundry-fork-db
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
52 lines (41 loc) · 1.22 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
[package]
name = "foundry-fork-db"
description = "Fork database used by Foundry"
version = "0.2.0"
edition = "2021"
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 = "0.7.7"
alloy-provider = { version = "0.2", default-features = false }
alloy-rpc-types = { version = "0.2", features = ["eth"] }
alloy-serde = { version = "0.2", default-features = false }
alloy-transport = { version = "0.2", default-features = false }
eyre = "0.6"
futures = "0.3"
parking_lot = "0.12"
revm = { version = "12.1.0", features = ["std", "serde"] }
rustc-hash = "2.0"
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.2"
alloy-transport-http = "0.2"