mirror of
https://github.com/edera-dev/krata.git
synced 2025-08-02 21:00:55 +00:00
30 lines
599 B
TOML
30 lines
599 B
TOML
[package]
|
|
name = "kratactl"
|
|
version.workspace = true
|
|
edition = "2021"
|
|
resolver = "2"
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
log = { workspace = true }
|
|
env_logger = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
termion = { workspace = true }
|
|
cli-tables = { workspace = true }
|
|
clap = { workspace = true }
|
|
tokio = { workspace = true }
|
|
tokio-stream = { workspace = true }
|
|
tokio-native-tls = { workspace = true }
|
|
url = { workspace = true }
|
|
|
|
[dependencies.krata]
|
|
path = "../shared"
|
|
|
|
[lib]
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "kratactl"
|
|
path = "bin/control.rs"
|