mirror of
https://github.com/containers/youki
synced 2024-11-23 17:32:15 +01:00
0c0d7efd05
Bumps [libc](https://github.com/rust-lang/libc) from 0.2.138 to 0.2.139. - [Release notes](https://github.com/rust-lang/libc/releases) - [Commits](https://github.com/rust-lang/libc/compare/0.2.138...0.2.139) --- updated-dependencies: - dependency-name: libc dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
57 lines
1.7 KiB
INI
57 lines
1.7 KiB
INI
[package]
|
|
name = "libcontainer"
|
|
version = "0.0.4"
|
|
description = "Library for container control"
|
|
license-file = "../../LICENSE"
|
|
repository = "https://github.com/containers/youki"
|
|
homepage = "https://containers.github.io/youki"
|
|
readme = "README.md"
|
|
authors = ["youki team"]
|
|
edition = "2021"
|
|
rust-version = "1.58.1"
|
|
keywords = ["youki", "container", "cgroups"]
|
|
|
|
[features]
|
|
default = ["systemd", "v2", "v1"]
|
|
wasm-wasmer = ["wasmer", "wasmer-wasi"]
|
|
wasm-wasmedge = ["wasmedge-sdk/standalone"]
|
|
wasm-wasmtime = ["wasmtime", "wasmtime-wasi"]
|
|
systemd = ["libcgroups/systemd", "v2"]
|
|
v2 = ["libcgroups/v2"]
|
|
v1 = ["libcgroups/v1"]
|
|
cgroupsv2_devices = ["libcgroups/cgroupsv2_devices"]
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
bitflags = "1.3.2"
|
|
caps = "0.5.5"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
crossbeam-channel = "0.5"
|
|
fastrand = "1.8.0"
|
|
futures = { version = "0.3", features = ["thread-pool"] }
|
|
libc = "0.2.139"
|
|
log = "0.4"
|
|
mio = { version = "0.8.5", features = ["os-ext", "os-poll"] }
|
|
nix = "0.25.0"
|
|
oci-spec = { version = "0.6.0", features = ["runtime"] }
|
|
path-clean = "0.1.0"
|
|
procfs = "0.14.2"
|
|
prctl = "1.0.0"
|
|
libcgroups = { version = "0.0.4", path = "../libcgroups", default-features = false }
|
|
libseccomp = { version = "0.3.0" }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
syscalls = "0.6.7"
|
|
rust-criu = "0.4.0"
|
|
wasmer = { version = "2.2.0", optional = true }
|
|
wasmer-wasi = { version = "2.3.0", optional = true }
|
|
wasmedge-sdk = { version = "0.7.1", optional = true }
|
|
wasmtime = {version = "4.0.0", optional = true }
|
|
wasmtime-wasi = {version = "4.0.0", optional = true }
|
|
|
|
[dev-dependencies]
|
|
oci-spec = { version = "0.6.0", features = ["proptests", "runtime"] }
|
|
quickcheck = "1"
|
|
serial_test = "1.0.0"
|
|
rand = "0.8.5"
|