mirror of
https://github.com/kata-containers/cgroups-rs.git
synced 2026-08-05 02:13:23 +00:00
Changes since v0.5.0: *7cd1cdaFix race condition in create_v2_cgroup *0d10296ci: bump Rust toolchain to 1.90.0 *a32f96ebuild: Bump oci-spec to 0.10.0 *3eeab4edocs: improve README formatting and badges Signed-off-by: Xuewei Niu <niuxuewei.nxw@antgroup.com>
32 lines
977 B
TOML
32 lines
977 B
TOML
[package]
|
|
name = "cgroups-rs"
|
|
description = "Native Rust crate for managing control groups on Linux"
|
|
repository = "https://github.com/kata-containers/cgroups-rs"
|
|
keywords = ["linux", "cgroup", "containers", "isolation"]
|
|
categories = ["os", "api-bindings", "os::unix-apis"]
|
|
license = "MIT OR Apache-2.0"
|
|
version = "0.5.1"
|
|
authors = ["The Kata Containers community <kata-dev@lists.katacontainers.io>", "Levente Kurusa <lkurusa@acm.org>", "Sam Wilson <tecywiz121@hotmail.com>"]
|
|
edition = "2018"
|
|
homepage = "https://github.com/kata-containers/cgroups-rs"
|
|
readme = "README.md"
|
|
|
|
[dependencies]
|
|
log = "0.4"
|
|
nix = { version = "0.25.0", default-features = false, features = ["event", "fs", "process"] }
|
|
libc = "0.2"
|
|
serde = { version = "1.0", features = ["derive"], optional = true }
|
|
thiserror = "1"
|
|
oci-spec = { version = "0.10.0", optional = true }
|
|
zbus = "5.8"
|
|
bit-vec = "0.6"
|
|
|
|
[dev-dependencies]
|
|
libc = "0.2.76"
|
|
rand = "0.8"
|
|
nix = "0.25"
|
|
|
|
[features]
|
|
default = []
|
|
oci = ["oci-spec"]
|