1
0
Fork 0
mirror of https://github.com/containers/youki synced 2024-05-05 07:06:14 +02:00
youki/crates/libcgroups/Cargo.toml
dependabot[bot] fb6ee4c25f
chore(deps): bump libbpf-sys from 0.6.0-1 to 0.6.1-1
Bumps [libbpf-sys](https://github.com/libbpf/libbpf-sys) from 0.6.0-1 to 0.6.1-1.
- [Release notes](https://github.com/libbpf/libbpf-sys/releases)
- [Commits](https://github.com/libbpf/libbpf-sys/compare/0.6.0-1...0.6.1-1)

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

Signed-off-by: dependabot[bot] <support@github.com>
2022-01-07 00:36:48 +00:00

35 lines
848 B
INI

[package]
name = "libcgroups"
version = "0.0.1"
edition = "2021"
autoexamples = false
[features]
default = ["v1", "v2", "systemd"]
v1 = []
v2 = []
systemd = ["v2", "dbus"]
cgroupsv2_devices = ["rbpf", "libbpf-sys", "errno", "libc"]
[dependencies]
nix = "0.23.1"
procfs = "0.12.0"
log = "0.4"
anyhow = "1.0"
oci-spec = "0.5.3"
dbus = { version = "0.9.5", optional = true }
fixedbitset = "0.4.1"
serde = { version = "1.0", features = ["derive"] }
rbpf = {version = "0.1.0", optional = true }
libbpf-sys = { version = "0.6.1-1", optional = true }
errno = { version = "0.2.8", optional = true }
libc = { version = "0.2.112", optional = true }
[dev-dependencies]
oci-spec = { version = "0.5.3", features = ["proptests"] }
quickcheck = "1"
clap = "3.0.0-beta.5"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
env_logger = "0.9"