-
Notifications
You must be signed in to change notification settings - Fork 32
/
Cargo.toml
33 lines (28 loc) · 960 Bytes
/
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
[workspace]
members = ["crates/*"]
# Explicitly set the resolver to version 2, which is the default for packages with edition >= 2021
# https://doc.rust-lang.org/edition-guide/rust-2021/default-cargo-resolver.html
resolver = "2"
[workspace.package]
authors = ["Foundry Maintainers"]
version = "0.9.0"
rust-version = "1.70"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/foundry-rs/block-explorers"
homepage = "https://github.com/foundry-rs/block-explorers"
edition = "2021"
exclude = [".github/", "scripts/", "test-data/"]
[workspace.dependencies]
alloy-chains = "0.1"
alloy-primitives = { version = "0.8", default-features = false, features = [
"std",
"serde",
] }
alloy-rpc-types-eth = "0.4"
alloy-eips = "0.4"
alloy-serde = "0.4"
reqwest = { version = "0.12", default-features = false, features = ["json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.37" }