2024-01-17 16:18:12 +00:00
|
|
|
[package]
|
2024-03-30 06:17:30 +00:00
|
|
|
name = "krata-ctl"
|
2024-03-30 07:11:14 +00:00
|
|
|
description = "Command-line tool to control the krata hypervisor"
|
|
|
|
license.workspace = true
|
2024-04-02 23:50:45 +00:00
|
|
|
version.workspace = true
|
2024-03-30 07:11:14 +00:00
|
|
|
homepage.workspace = true
|
|
|
|
repository.workspace = true
|
2024-01-17 16:18:12 +00:00
|
|
|
edition = "2021"
|
|
|
|
resolver = "2"
|
|
|
|
|
2024-01-29 15:53:35 +00:00
|
|
|
[dependencies]
|
2024-01-30 10:15:03 +00:00
|
|
|
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"] }
|
2024-01-29 15:53:35 +00:00
|
|
|
env_logger = { workspace = true }
|
2024-04-12 07:34:46 +00:00
|
|
|
fancy-duration = { workspace = true }
|
|
|
|
human_bytes = { workspace = true }
|
2024-04-09 11:47:58 +00:00
|
|
|
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"] }
|
2024-04-12 07:34:46 +00:00
|
|
|
prost-types = { workspace = true }
|
2024-03-23 04:07:48 +00:00
|
|
|
serde_json = { workspace = true }
|
|
|
|
serde_yaml = { workspace = true }
|
2024-04-12 07:34:46 +00:00
|
|
|
termtree = { workspace = true }
|
2024-02-23 03:25:06 +00:00
|
|
|
tokio = { workspace = true }
|
2024-03-07 18:04:22 +00:00
|
|
|
tokio-stream = { workspace = true }
|
|
|
|
tonic = { workspace = true }
|
2024-03-06 12:05:01 +00:00
|
|
|
tower = { workspace = true }
|
2024-01-29 15:53:35 +00:00
|
|
|
|
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"
|
2024-02-06 09:07:18 +00:00
|
|
|
path = "bin/control.rs"
|