mirror of
https://github.com/containers/youki
synced 2024-11-23 01:11:58 +01:00
e6093bf46d
Bumps the patch group with 3 updates: [serde](https://github.com/serde-rs/serde), [thiserror](https://github.com/dtolnay/thiserror) and [anyhow](https://github.com/dtolnay/anyhow). Updates `serde` from 1.0.210 to 1.0.213 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.210...v1.0.213) Updates `thiserror` from 1.0.64 to 1.0.65 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.64...1.0.65) Updates `anyhow` from 1.0.90 to 1.0.91 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.90...1.0.91) --- updated-dependencies: - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch ... Signed-off-by: dependabot[bot] <support@github.com>
46 lines
1.3 KiB
INI
46 lines
1.3 KiB
INI
[package]
|
|
name = "libcgroups"
|
|
version = "0.4.1" # MARK: Version
|
|
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 = 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.28.0", features = ["signal", "user", "fs"] }
|
|
procfs = "0.16.0"
|
|
oci-spec = { version = "~0.7.0", features = ["runtime"] }
|
|
fixedbitset = "0.5.7"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
rbpf = { version = "0.3.0", optional = true }
|
|
libbpf-sys = { version = "1.4.5", optional = true }
|
|
errno = { version = "0.3.9", optional = true }
|
|
libc = { version = "0.2.161", optional = true }
|
|
thiserror = "1.0.65"
|
|
tracing = { version = "0.1.40", features = ["attributes"] }
|
|
|
|
[dev-dependencies]
|
|
anyhow = "1.0"
|
|
oci-spec = { version = "~0.7.0", features = ["proptests", "runtime"] }
|
|
quickcheck = "1"
|
|
mockall = { version = "0.13.0", features = [] }
|
|
clap = "4.1.6"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
env_logger = "0.11"
|
|
serial_test = "3.1.1"
|
|
tempfile = "3"
|