helios/Cargo.toml

44 lines
737 B
TOML
Raw Normal View History

[package]
name = "helios"
version = "0.1.1"
edition = "2021"
2022-08-29 17:31:17 +00:00
[workspace]
2022-08-29 17:31:17 +00:00
members = [
"cli",
"client",
"common",
2022-08-29 20:54:58 +00:00
"config",
2022-08-29 17:31:17 +00:00
"consensus",
"execution",
]
[dependencies]
client = { path = "./client" }
config = { path = "./config" }
common = { path = "./common" }
consensus = { path = "./consensus" }
execution = { path = "./execution" }
[patch.crates-io]
2022-11-02 19:26:15 +00:00
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"