1
0
Fork 0
mirror of https://github.com/containers/youki synced 2024-05-05 23:26:32 +02:00
youki/crates/libcgroups/Cargo.toml
dependabot[bot] 750ab0c01e
chore(deps): bump libc from 0.2.126 to 0.2.127
Bumps [libc](https://github.com/rust-lang/libc) from 0.2.126 to 0.2.127.
- [Release notes](https://github.com/rust-lang/libc/releases)
- [Commits](https://github.com/rust-lang/libc/compare/0.2.126...0.2.127)

---
updated-dependencies:
- dependency-name: libc
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-08-09 10:14:58 +00:00

45 lines
1.2 KiB
INI

[package]
name = "libcgroups"
version = "0.0.3"
description = "Library for cgroup"
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"
autoexamples = false
keywords = ["youki", "container", "cgroups"]
[features]
default = ["v1", "v2", "systemd"]
v1 = []
v2 = []
systemd = ["v2", "dbus"]
cgroupsv2_devices = ["rbpf", "libbpf-sys", "errno", "libc"]
[dependencies]
nix = "0.24.2"
procfs = "0.14.0"
log = "0.4"
anyhow = "1.0"
oci-spec = { version = "0.5.7", features = ["runtime"] }
dbus = { version = "0.9.6", optional = true }
fixedbitset = "0.4.2"
serde = { version = "1.0", features = ["derive"] }
rbpf = {version = "0.1.0", optional = true }
libbpf-sys = { version = "0.8.3+v0.7.0", optional = true }
errno = { version = "0.2.8", optional = true }
libc = { version = "0.2.127", optional = true }
[dev-dependencies]
oci-spec = { version = "0.5.7", features = ["proptests", "runtime"] }
quickcheck = "1"
mockall = { version = "0.11.2", features = [] }
clap = "3.2.16"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
env_logger = "0.9"
serial_test = "0.8.0"