1
0
mirror of https://github.com/containers/youki synced 2025-12-30 20:21:42 +01:00
youki/crates/libcgroups/Cargo.toml
dependabot[bot] 0f4ff2ff52
chore(deps): bump tracing from 0.1.43 to 0.1.44 in the patch group
Bumps the patch group with 1 update: [tracing](https://github.com/tokio-rs/tracing).


Updates `tracing` from 0.1.43 to 0.1.44
- [Release notes](https://github.com/tokio-rs/tracing/releases)
- [Commits](https://github.com/tokio-rs/tracing/compare/tracing-0.1.43...tracing-0.1.44)

---
updated-dependencies:
- dependency-name: tracing
  dependency-version: 0.1.44
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-12-19 00:06:20 +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.17.0"
pathrs = "0.2.2"
oci-spec = { version = "~0.8.4", 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.178", optional = true }
thiserror = "2.0.17"
tracing = { version = "0.1.44", features = ["attributes"] }
[dev-dependencies]
anyhow = "1.0"
oci-spec = { version = "~0.8.4", features = ["proptests", "runtime"] }
quickcheck = "1"
mockall = { version = "0.14.0", 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"