Files
krata/hypha/Cargo.toml

47 lines
670 B
TOML
Raw Normal View History

2024-01-17 08:18:12 -08:00
[package]
name = "hypha"
version = "0.0.1"
edition = "2021"
resolver = "2"
[dependencies.xenclient]
path = "../xenclient"
[dependencies]
log = "0.4.20"
2024-01-17 14:29:05 -08:00
env_logger = "0.10.1"
flate2 = "1.0.28"
tar = "0.4.40"
2024-01-18 00:02:21 -08:00
directories = "5.0.1"
2024-01-17 14:29:05 -08:00
walkdir = "2"
2024-01-18 00:02:21 -08:00
serde = "1.0.195"
serde_json = "1.0.111"
sha256 = "1.5.0"
2024-01-18 10:16:59 -08:00
url = "2.5.0"
ureq = "2.9.1"
2024-01-17 08:18:12 -08:00
2024-01-17 12:36:13 -08:00
[dependencies.clap]
version = "4.4.18"
features = ["derive"]
2024-01-17 14:29:05 -08:00
[dependencies.oci-spec]
2024-01-18 10:16:59 -08:00
version = "0.6.4"
2024-01-17 14:29:05 -08:00
[dependencies.backhand]
version = "0.14.2"
[dependencies.uuid]
version = "1.6.1"
features = ["v4"]
2024-01-17 08:18:12 -08:00
[lib]
path = "src/lib.rs"
[[bin]]
2024-01-17 14:29:05 -08:00
name = "hyphactl"
path = "bin/controller.rs"
2024-01-17 08:18:12 -08:00
[[bin]]
2024-01-17 14:29:05 -08:00
name = "hyphad"
2024-01-17 08:18:12 -08:00
path = "bin/container.rs"