44 lines
737 B
TOML
44 lines
737 B
TOML
[package]
|
|
name = "helios"
|
|
version = "0.1.1"
|
|
edition = "2021"
|
|
|
|
[workspace]
|
|
|
|
members = [
|
|
"cli",
|
|
"client",
|
|
"common",
|
|
"config",
|
|
"consensus",
|
|
"execution",
|
|
]
|
|
|
|
[dependencies]
|
|
client = { path = "./client" }
|
|
config = { path = "./config" }
|
|
common = { path = "./common" }
|
|
consensus = { path = "./consensus" }
|
|
execution = { path = "./execution" }
|
|
|
|
[patch.crates-io]
|
|
ethers = { git = "https://github.com/ncitron/ethers-rs", branch = "fix-retry" }
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "1", features = ["full"] }
|
|
eyre = "0.6.8"
|
|
home = "0.5.4"
|
|
|
|
[[example]]
|
|
name = "checkpoints"
|
|
path = "examples/checkpoints.rs"
|
|
|
|
[[example]]
|
|
name = "client"
|
|
path = "examples/client.rs"
|
|
|
|
[[example]]
|
|
name = "config"
|
|
path = "examples/config.rs"
|
|
|