1
0
mirror of https://github.com/containers/youki synced 2025-11-10 10:58:41 +01:00
youki/crates/libcgroups/Cargo.toml
dependabot[bot] 1a016d7325
chore(deps): bump procfs from 0.17.0 to 0.18.0
Bumps [procfs](https://github.com/eminence/procfs) from 0.17.0 to 0.18.0.
- [Release notes](https://github.com/eminence/procfs/releases)
- [Commits](https://github.com/eminence/procfs/compare/v0.17.0...v0.18.0)

---
updated-dependencies:
- dependency-name: procfs
  dependency-version: 0.18.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-11-06 00:08:06 +00:00

47 lines
1.4 KiB
INI

[package]
name = "libcgroups"
version = "0.5.7" # MARK: Version
description = "Library for cgroup"
license = "Apache-2.0"
repository = "https://github.com/youki-dev/youki"
homepage = "https://youki-dev.github.io/youki/"
readme = "README.md"
authors = ["youki team"]
edition = "2024"
rust-version = "1.85.0"
autoexamples = true
keywords = ["youki", "container", "cgroups"]
[features]
default = ["v1", "v2", "systemd"]
v1 = []
v2 = []
systemd = ["v2", "nix/socket", "nix/uio"]
cgroupsv2_devices = ["rbpf", "libbpf-sys", "errno", "libc", "nix/dir"]
[dependencies]
nix = { version = "0.29.0", features = ["signal", "user", "fs"] }
procfs = "0.18.0"
pathrs = "0.2.1"
oci-spec = { version = "~0.8.3", features = ["runtime"] }
fixedbitset = "0.5.7"
serde = { version = "1.0", features = ["derive"] }
rbpf = { version = "0.3.0", optional = true }
libbpf-sys = { version = "1.6.2", optional = true }
errno = { version = "0.3.14", optional = true }
libc = { version = "0.2.177", optional = true }
thiserror = "2.0.17"
tracing = { version = "0.1.41", features = ["attributes"] }
[dev-dependencies]
anyhow = "1.0"
oci-spec = { version = "~0.8.3", features = ["proptests", "runtime"] }
quickcheck = "1"
mockall = { version = "0.13.1", features = [] }
clap = "4.5.13"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
env_logger = "0.11"
serial_test = "3.1.1"
tempfile = "3"