26 lines
486 B
TOML
26 lines
486 B
TOML
cargo-features = ["different-binary-name"]
|
|
|
|
[package]
|
|
name = "cli"
|
|
version = "0.1.3"
|
|
edition = "2021"
|
|
|
|
[[bin]]
|
|
name = "cli"
|
|
filename = "helios"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
tokio = { version = "1", features = ["full"] }
|
|
clap = { version = "3.2.18", features = ["derive", "env"] }
|
|
eyre = "0.6.8"
|
|
dirs = "4.0.0"
|
|
env_logger = "0.9.0"
|
|
log = "0.4.17"
|
|
ctrlc = "3.2.3"
|
|
futures = "0.3.23"
|
|
|
|
client = { path = "../client" }
|
|
config = { path = "../config" }
|
|
common = { path = "../common" }
|