mirror of
https://github.com/kata-containers/cgroups-rs.git
synced 2026-08-05 02:13:23 +00:00
27 lines
867 B
TOML
27 lines
867 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.2.12"
|
|
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"
|
|
regex = "1.1"
|
|
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"
|
|
|
|
[dev-dependencies]
|
|
libc = "0.2.76"
|
|
|
|
[features]
|
|
default = []
|