helios/Cargo.toml

41 lines
638 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" }
[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"