krata/hypha/Cargo.toml

61 lines
907 B
TOML
Raw Normal View History

2024-01-17 16:18:12 +00:00
[package]
name = "hypha"
version = "0.0.1"
edition = "2021"
resolver = "2"
[dependencies.xenclient]
path = "../xenclient"
[dependencies.loopdev]
path = "../loopdev"
2024-01-17 16:18:12 +00:00
[dependencies]
log = "0.4.20"
2024-01-20 10:41:49 +00:00
env_logger = "0.11.0"
zstd = "0.13.0"
2024-01-17 22:29:05 +00:00
flate2 = "1.0.28"
tar = "0.4.40"
2024-01-18 08:02:21 +00:00
directories = "5.0.1"
2024-01-17 22:29:05 +00:00
walkdir = "2"
2024-01-18 08:02:21 +00:00
serde = "1.0.195"
serde_json = "1.0.111"
sha256 = "1.5.0"
2024-01-18 18:16:59 +00:00
url = "2.5.0"
ureq = "2.9.1"
2024-01-20 10:41:49 +00:00
path-clean = "1.0.1"
2024-01-21 12:49:31 +00:00
termion = "3.0.0"
2024-01-22 01:21:19 +00:00
cli-tables = "0.2.1"
2024-01-17 16:18:12 +00:00
[dependencies.xenstore]
path = "../xenstore"
2024-01-17 20:36:13 +00:00
[dependencies.clap]
version = "4.4.18"
features = ["derive"]
2024-01-17 22:29:05 +00:00
[dependencies.oci-spec]
2024-01-18 18:16:59 +00:00
version = "0.6.4"
2024-01-17 22:29:05 +00:00
[dependencies.backhand]
version = "0.14.2"
[dependencies.uuid]
version = "1.6.1"
features = ["v4"]
2024-01-22 10:15:53 +00:00
[dependencies.sys-mount]
default-features = false
version = "2.1.1"
2024-01-17 16:18:12 +00:00
[lib]
path = "src/lib.rs"
[[bin]]
2024-01-17 22:29:05 +00:00
name = "hyphactl"
path = "bin/controller.rs"
2024-01-17 16:18:12 +00:00
[[bin]]
2024-01-22 10:15:53 +00:00
name = "hyphactr"
2024-01-17 16:18:12 +00:00
path = "bin/container.rs"