mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-02-15 03:24:30 +01:00
change to up-to-date commit ID Fixes: #4543 Signed-off-by: xuejun-xj <jiyunxue@linux.alibaba.com> Signed-off-by: jingshan <jingshan@linux.alibaba.com>
62 lines
2.4 KiB
TOML
62 lines
2.4 KiB
TOML
[package]
|
|
name = "dragonball"
|
|
version = "0.1.0"
|
|
authors = ["The Kata Containers community <kata-dev@lists.katacontainers.io>"]
|
|
description = "A secure sandbox for Kata Containers"
|
|
keywords = ["kata-containers", "sandbox", "vmm", "dragonball"]
|
|
homepage = "https://katacontainers.io/"
|
|
repository = "https://github.com/kata-containers/kata-containers.git"
|
|
license = "Apache-2.0"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
arc-swap = "1.5.0"
|
|
bytes = "1.1.0"
|
|
dbs-address-space = "0.1.0"
|
|
dbs-allocator = "0.1.0"
|
|
dbs-arch = "0.1.0"
|
|
dbs-boot = "0.2.0"
|
|
dbs-device = "0.1.0"
|
|
dbs-interrupt = { version = "0.1.0", features = ["kvm-irq"] }
|
|
dbs-legacy-devices = "0.1.0"
|
|
dbs-upcall = { version = "0.1.0", optional = true }
|
|
dbs-utils = "0.1.0"
|
|
dbs-virtio-devices = { version = "0.1.0", optional = true, features = ["virtio-mmio"] }
|
|
kvm-bindings = "0.5.0"
|
|
kvm-ioctls = "0.11.0"
|
|
lazy_static = "1.2"
|
|
libc = "0.2.39"
|
|
linux-loader = "0.4.0"
|
|
log = "0.4.14"
|
|
nix = "0.23.1"
|
|
seccompiler = "0.2.0"
|
|
serde = "1.0.27"
|
|
serde_derive = "1.0.27"
|
|
serde_json = "1.0.9"
|
|
slog = "2.5.2"
|
|
slog-scope = "4.4.0"
|
|
thiserror = "1"
|
|
vmm-sys-util = "0.9.0"
|
|
virtio-queue = { version = "0.1.0", optional = true }
|
|
vm-memory = { version = "0.7.0", features = ["backend-mmap"] }
|
|
|
|
[dev-dependencies]
|
|
slog-term = "2.9.0"
|
|
slog-async = "2.7.0"
|
|
|
|
[features]
|
|
acpi = []
|
|
atomic-guest-memory = []
|
|
hotplug = ["virtio-vsock"]
|
|
virtio-vsock = ["dbs-virtio-devices/virtio-vsock", "virtio-queue"]
|
|
|
|
[patch.'crates-io']
|
|
dbs-device = { git = "https://github.com/openanolis/dragonball-sandbox.git", rev = "7a8e832b53d66994d6a16f0513d69f540583dcd0" }
|
|
dbs-interrupt = { git = "https://github.com/openanolis/dragonball-sandbox.git", rev = "7a8e832b53d66994d6a16f0513d69f540583dcd0" }
|
|
dbs-legacy-devices = { git = "https://github.com/openanolis/dragonball-sandbox.git", rev = "7a8e832b53d66994d6a16f0513d69f540583dcd0" }
|
|
dbs-upcall = { git = "https://github.com/openanolis/dragonball-sandbox.git", rev = "7a8e832b53d66994d6a16f0513d69f540583dcd0" }
|
|
dbs-utils = { git = "https://github.com/openanolis/dragonball-sandbox.git", rev = "7a8e832b53d66994d6a16f0513d69f540583dcd0" }
|
|
dbs-virtio-devices = { git = "https://github.com/openanolis/dragonball-sandbox.git", rev = "7a8e832b53d66994d6a16f0513d69f540583dcd0" }
|
|
dbs-boot = { git = "https://github.com/openanolis/dragonball-sandbox.git", rev = "7a8e832b53d66994d6a16f0513d69f540583dcd0" }
|
|
dbs-arch = { git = "https://github.com/openanolis/dragonball-sandbox.git", rev = "7a8e832b53d66994d6a16f0513d69f540583dcd0" }
|