mirror of
https://github.com/edera-dev/krata.git
synced 2025-08-02 21:00:55 +00:00
36 lines
940 B
TOML
36 lines
940 B
TOML
[package]
|
|
name = "krata-guest"
|
|
description = "Guest services for the krata hypervisor."
|
|
license.workspace = true
|
|
version.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
edition = "2021"
|
|
resolver = "2"
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
env_logger = { workspace = true }
|
|
futures = { workspace = true }
|
|
ipnetwork = { workspace = true }
|
|
krata = { path = "../krata", version = "0.0.3" }
|
|
krata-xenstore = { path = "../xen/xenstore", version = "0.0.3" }
|
|
libc = { workspace = true }
|
|
log = { workspace = true }
|
|
nix = { workspace = true, features = ["ioctl", "process", "fs"] }
|
|
oci-spec = { workspace = true }
|
|
path-absolutize = { workspace = true }
|
|
rtnetlink = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
sys-mount = { workspace = true }
|
|
tokio = { workspace = true }
|
|
walkdir = { workspace = true }
|
|
|
|
[lib]
|
|
name = "krataguest"
|
|
|
|
[[bin]]
|
|
name = "krataguest"
|
|
path = "bin/init.rs"
|