krata/crates/ctl/Cargo.toml

39 lines
1.0 KiB
TOML
Raw Normal View History

2024-01-17 16:18:12 +00:00
[package]
name = "krata-ctl"
description = "Command-line tool to control the krata hypervisor"
license.workspace = true
2024-04-02 23:50:45 +00:00
version.workspace = true
homepage.workspace = true
repository.workspace = true
2024-01-17 16:18:12 +00:00
edition = "2021"
resolver = "2"
[dependencies]
anyhow = { workspace = true }
2024-03-07 18:04:22 +00:00
async-stream = { workspace = true }
clap = { workspace = true }
2024-04-02 00:56:18 +00:00
comfy-table = { workspace = true }
2024-03-22 05:49:37 +00:00
crossterm = { workspace = true }
ctrlc = { workspace = true, features = ["termination"] }
env_logger = { workspace = true }
fancy-duration = { workspace = true }
human_bytes = { workspace = true }
krata = { path = "../krata", version = "^0.0.8" }
2024-03-07 18:04:22 +00:00
log = { workspace = true }
2024-03-23 04:07:48 +00:00
prost-reflect = { workspace = true, features = ["serde"] }
prost-types = { workspace = true }
2024-03-23 04:07:48 +00:00
serde_json = { workspace = true }
serde_yaml = { workspace = true }
termtree = { workspace = true }
tokio = { workspace = true }
2024-03-07 18:04:22 +00:00
tokio-stream = { workspace = true }
tonic = { workspace = true }
tower = { workspace = true }
2024-01-17 16:18:12 +00:00
[lib]
2024-03-07 18:04:22 +00:00
name = "kratactl"
2024-01-17 16:18:12 +00:00
[[bin]]
2024-02-21 20:57:46 +00:00
name = "kratactl"
path = "bin/control.rs"