forked from paradigmxyz/alphanet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
80 lines (67 loc) · 2.42 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[workspace]
members = ["bin/alphanet/", "crates/node", "crates/precompile", "crates/testing"]
default-members = ["bin/alphanet/"]
resolver = "2"
[workspace.package]
version = "0.0.0"
edition = "2021"
rust-version = "1.76"
authors = []
license = "MIT OR Apache-2.0"
repository = "https://github.com/paradigmxyz/alphanet"
keywords = ["ethereum", "crypto"]
categories = ["cryptography", "cryptography::cryptocurrencies"]
[workspace.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[workspace.lints.clippy]
dbg-macro = "warn"
manual-string-new = "warn"
uninlined-format-args = "warn"
use-self = "warn"
[workspace.lints.rust]
rust-2018-idioms = "deny"
unreachable-pub = "warn"
unused-must-use = "deny"
missing_docs = "warn"
[workspace.lints.rustdoc]
all = "warn"
[profile.release]
strip = "debuginfo"
lto = "thin"
panic = "unwind"
codegen-units = 1
incremental = false
[workspace.dependencies]
# alphanet
alphanet-node = { path = "crates/node" }
alphanet-precompile = { path = "crates/precompile" }
alloy = { git = "https://github.com/alloy-rs/alloy", rev = "64feb9b", features = [
"contract",
"providers",
"provider-http",
"signers",
] }
alloy-network = { git = "https://github.com/alloy-rs/alloy", rev = "64feb9b" }
alloy-signer-wallet = { git = "https://github.com/alloy-rs/alloy", rev = "64feb9b" }
# tokio
tokio = { version = "1.21", default-features = false }
# reth
reth = { git = "https://github.com/paradigmxyz/reth.git", rev = "76b32c8", features = ["optimism"] }
reth-node-api = { git = "https://github.com/paradigmxyz/reth.git", rev = "76b32c8" }
reth-node-core = { git = "https://github.com/paradigmxyz/reth.git", rev = "76b32c8" }
reth-node-optimism = { git = "https://github.com/paradigmxyz/reth.git", rev = "76b32c8" }
reth-primitives = { git = "https://github.com/paradigmxyz/reth.git", rev = "76b32c8" }
reth-tracing = { git = "https://github.com/paradigmxyz/reth.git", rev = "76b32c8" }
# misc
clap = "4"
eyre = "0.6.12"
tracing = "0.1.0"
eip3074-instructions = { git = "https://github.com/paradigmxyz/eip3074-instructions.git", rev = "a9022e4" }
# misc-testing
rstest = "0.18.2"
[patch.crates-io]
revm = { git = "https://github.com/bluealloy/revm", rev = "a28a543" }
revm-interpreter = { git = "https://github.com/bluealloy/revm", rev = "a28a543" }
revm-precompile = { git = "https://github.com/bluealloy/revm", rev = "a28a543" }
revm-primitives = { git = "https://github.com/bluealloy/revm", rev = "a28a543" }