mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-05 23:44:21 +01:00
Enable seccomp support in `runk` by default. Due to this, `runk` is built with `gnu libc` by default because the building `runk` with statically linked the `libseccomp` and `musl` requires additional configurations. Also, general container runtimes are built with `gnu libc` as dynamically linked binaries by default. The user can disable seccomp by `make SECCOMP=no`. Fixes: #4896 Signed-off-by: Manabu Sugimoto <Manabu.Sugimoto@sony.com>
38 lines
963 B
TOML
38 lines
963 B
TOML
[package]
|
|
name = "runk"
|
|
version = "0.0.1"
|
|
authors = ["The Kata Containers community <kata-dev@lists.katacontainers.io>"]
|
|
description = "runk: Kata OCI container runtime based on Kata agent"
|
|
license = "Apache-2.0"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
libcontainer = { path = "./libcontainer" }
|
|
rustjail = { path = "../../agent/rustjail", features = ["standard-oci-runtime"] }
|
|
oci = { path = "../../libs/oci" }
|
|
logging = { path = "../../libs/logging" }
|
|
liboci-cli = "0.0.3"
|
|
clap = { version = "3.0.6", features = ["derive", "cargo"] }
|
|
libc = "0.2.108"
|
|
nix = "0.23.0"
|
|
anyhow = "1.0.52"
|
|
slog = "2.7.0"
|
|
chrono = { version = "0.4.19", features = ["serde"] }
|
|
slog-async = "2.7.0"
|
|
tokio = { version = "1.15.0", features = ["full"] }
|
|
serde = { version = "1.0.133", features = ["derive"] }
|
|
serde_json = "1.0.74"
|
|
users = "0.11.0"
|
|
tabwriter = "1.2.1"
|
|
|
|
[features]
|
|
seccomp = ["rustjail/seccomp"]
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3.3.0"
|
|
|
|
[workspace]
|
|
members = [
|
|
"libcontainer"
|
|
]
|