mirror of
https://github.com/edera-dev/krata.git
synced 2025-08-02 12:50:54 +00:00
35 lines
895 B
TOML
35 lines
895 B
TOML
[package]
|
|
name = "krata-ctl"
|
|
description = "Command-line tool to control the krata hypervisor"
|
|
license.workspace = true
|
|
version= "0.0.3"
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
edition = "2021"
|
|
resolver = "2"
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
async-stream = { workspace = true }
|
|
clap = { workspace = true }
|
|
comfy-table = { workspace = true }
|
|
crossterm = { workspace = true }
|
|
ctrlc = { workspace = true, features = ["termination"] }
|
|
env_logger = { workspace = true }
|
|
krata = { path = "../krata", version = "^0.0.3" }
|
|
log = { workspace = true }
|
|
prost-reflect = { workspace = true, features = ["serde"] }
|
|
serde_json = { workspace = true }
|
|
serde_yaml = { workspace = true }
|
|
tokio = { workspace = true }
|
|
tokio-stream = { workspace = true }
|
|
tonic = { workspace = true }
|
|
tower = { workspace = true }
|
|
|
|
[lib]
|
|
name = "kratactl"
|
|
|
|
[[bin]]
|
|
name = "kratactl"
|
|
path = "bin/control.rs"
|