mirror of
https://github.com/containers/youki
synced 2025-12-30 20:21:42 +01:00
Bumps [netlink-packet-route](https://github.com/rust-netlink/netlink-packet-route) from 0.26.0 to 0.27.0. - [Release notes](https://github.com/rust-netlink/netlink-packet-route/releases) - [Changelog](https://github.com/rust-netlink/netlink-packet-route/blob/main/CHANGELOG) - [Commits](https://github.com/rust-netlink/netlink-packet-route/compare/v0.26.0...v0.27.0) --- updated-dependencies: - dependency-name: netlink-packet-route dependency-version: 0.27.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
74 lines
1.9 KiB
INI
74 lines
1.9 KiB
INI
[package]
|
|
name = "libcontainer"
|
|
version = "0.5.7" # MARK: Version
|
|
description = "Library for container control"
|
|
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"
|
|
keywords = ["youki", "container", "cgroups"]
|
|
|
|
[features]
|
|
default = ["systemd", "v2", "v1", "libseccomp"]
|
|
libseccomp = ["dep:libseccomp"]
|
|
systemd = ["libcgroups/systemd", "v2"]
|
|
v2 = ["libcgroups/v2"]
|
|
v1 = ["libcgroups/v1"]
|
|
cgroupsv2_devices = ["libcgroups/cgroupsv2_devices"]
|
|
|
|
[dependencies]
|
|
caps = "0.5.6"
|
|
chrono = { version = "0.4", default-features = false, features = [
|
|
"clock",
|
|
"serde",
|
|
] }
|
|
fastrand = "^2.3.0"
|
|
libc = "0.2.178"
|
|
nix = { version = "0.29.0", features = [
|
|
"socket",
|
|
"sched",
|
|
"mount",
|
|
"mman",
|
|
"resource",
|
|
"dir",
|
|
"term",
|
|
"hostname",
|
|
"personality",
|
|
] }
|
|
oci-spec = { version = "0.8.4", features = ["runtime"] }
|
|
procfs = "0.17.0"
|
|
prctl = "1.0.0"
|
|
protobuf = "= 3.2.0" # https://github.com/checkpoint-restore/rust-criu/issues/19
|
|
libcgroups = { path = "../libcgroups", default-features = false, version = "0.5.7" } # MARK: Version
|
|
libseccomp = { version = "0.4.0", optional = true }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
rust-criu = "0.4.0"
|
|
regex = { version = "1.12.2", default-features = false, features = [
|
|
"std",
|
|
"unicode-perl",
|
|
] }
|
|
thiserror = "2.0.17"
|
|
tracing = { version = "0.1.44", features = ["attributes"] }
|
|
safe-path = "0.1.0"
|
|
nc = "0.9.7"
|
|
netlink-packet-route = "0.27.0"
|
|
netlink-sys = "0.8.5"
|
|
netlink-packet-core = "0.8.1"
|
|
pathrs = "0.2.2"
|
|
|
|
[dev-dependencies]
|
|
oci-spec = { version = "~0.8.4", features = ["proptests", "runtime"] }
|
|
quickcheck = "1"
|
|
serial_test = "3.1.1"
|
|
tempfile = "3"
|
|
anyhow = "1.0"
|
|
rand = "0.9.2"
|
|
scopeguard = "1"
|
|
|
|
[package.metadata.cargo-machete]
|
|
ignored = ["protobuf"]
|