helios/cli/Cargo.toml

26 lines
486 B
TOML
Raw Permalink Normal View History

cargo-features = ["different-binary-name"]
2022-08-29 17:31:17 +00:00
[package]
name = "cli"
2023-03-15 19:40:01 +00:00
version = "0.3.0"
2022-08-29 17:31:17 +00:00
edition = "2021"
[[bin]]
name = "cli"
filename = "helios"
path = "src/main.rs"
2022-08-29 17:31:17 +00:00
[dependencies]
tokio = { version = "1", features = ["full"] }
clap = { version = "3.2.18", features = ["derive", "env"] }
2022-08-29 17:31:17 +00:00
eyre = "0.6.8"
2022-08-29 20:54:58 +00:00
dirs = "4.0.0"
env_logger = "0.9.0"
log = "0.4.17"
ctrlc = "3.2.3"
futures = "0.3.23"
2022-08-29 17:31:17 +00:00
client = { path = "../client" }
2022-08-29 20:54:58 +00:00
config = { path = "../config" }
common = { path = "../common" }