-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
57 lines (46 loc) · 1.49 KB
/
Cargo.toml
File metadata and controls
57 lines (46 loc) · 1.49 KB
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
[package]
name = "signet"
version = "0.4.0"
edition = "2024"
rust-version = "1.88"
authors = ["init4"]
license = "UNLICENSED"
homepage = "https://github.com/init4tech/signet-node"
repository = "https://github.com/init4tech/signet-node"
[dependencies]
init4-bin-base = { version = "0.17.0", features = ["alloy"], default-features = false }
# Node Components
signet-node = { git = "https://github.com/init4tech/node-components", tag = "v0.14.0" }
signet-node-config = { git = "https://github.com/init4tech/node-components", tag = "v0.14.0" }
reth = { git = "https://github.com/paradigmxyz/reth", tag = "v1.9.0" }
reth-db = { git = "https://github.com/paradigmxyz/reth", tag = "v1.9.0" }
reth-node-ethereum = { git = "https://github.com/paradigmxyz/reth", tag = "v1.9.0" }
eyre = "0.6.12"
openssl = { version = "0.10", features = ["vendored"] }
reqwest = { version = "0.12.24", features = ["rustls-tls-native-roots", "json"]}
tracing = "0.1.41"
[profile.release]
opt-level = 3
lto = "thin"
debug = "line-tables-only"
strip = true
panic = "unwind"
codegen-units = 16
[profile.profiling]
inherits = "release"
debug = 2
strip = false
[profile.ci-rust]
inherits = "dev"
strip = true
debug = false
incremental = false
[[bin]]
name = "signet"
path = "src/signet.rs"
test = false
# [patch.crates-io]
# init4-bin-base = { path = "../shared" }
# [patch.'https://github.com/init4tech/node-components']
# signet-node = { path = "../components/crates/node" }
# signet-node-config = { path = "../components/crates/node-config" }