mirror of
https://github.com/edera-dev/krata.git
synced 2025-08-02 21:00:55 +00:00
Co-authored-by: edera-cultivation[bot] <165992271+edera-cultivation[bot]@users.noreply.github.com>
38 lines
1020 B
TOML
38 lines
1020 B
TOML
[package]
|
|
name = "krata-guest"
|
|
description = "Guest services for the krata isolation engine"
|
|
license.workspace = true
|
|
version.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
edition = "2021"
|
|
resolver = "2"
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
cgroups-rs = { workspace = true }
|
|
env_logger = { workspace = true }
|
|
futures = { workspace = true }
|
|
ipnetwork = { workspace = true }
|
|
krata = { path = "../krata", version = "^0.0.11" }
|
|
krata-xenstore = { path = "../xen/xenstore", version = "^0.0.11" }
|
|
libc = { workspace = true }
|
|
log = { workspace = true }
|
|
nix = { workspace = true, features = ["ioctl", "process", "fs"] }
|
|
oci-spec = { workspace = true }
|
|
path-absolutize = { workspace = true }
|
|
platform-info = { workspace = true }
|
|
rtnetlink = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
sys-mount = { workspace = true }
|
|
sysinfo = { workspace = true }
|
|
tokio = { workspace = true }
|
|
|
|
[lib]
|
|
name = "krataguest"
|
|
|
|
[[bin]]
|
|
name = "krataguest"
|
|
path = "bin/init.rs"
|