Skip to content

Commit 93a1abc

Browse files
committed
initial commit
1 parent 94f2cb1 commit 93a1abc

File tree

5 files changed

+1338
-1
lines changed

5 files changed

+1338
-1
lines changed

Cargo.toml

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,30 @@ missing_const_for_fn = "warn"
1919
use_self = "warn"
2020
option_if_let_else = "warn"
2121

22-
[metadata.docs.rs]
22+
[package.metadata.docs.rs]
2323
all-features = true
2424
rustdoc-args = ["--cfg", "docsrs"]
2525

2626
[dependencies]
27+
alloy-primitives = "0.7.3"
28+
alloy-provider = { version = "0.1.2", default-features = false }
29+
alloy-rpc-types = { version = "0.1.2", features = ["eth"] }
30+
alloy-serde = { version = "0.1.2", default-features = false }
31+
alloy-transport = { version = "0.1.2", default-features = false }
32+
33+
eyre = "0.6"
34+
futures = "0.3"
35+
36+
parking_lot = "0.12"
37+
38+
revm = { version = "10.0.0", features = ["std", "serde"] }
39+
rustc-hash = "2.0"
40+
41+
serde = "1.0"
42+
serde_json = "1.0"
43+
44+
thiserror = "1"
45+
tokio = { version = "1", features = ["rt-multi-thread"] }
46+
tracing = "0.1"
47+
48+
url = "2"

0 commit comments

Comments
 (0)