mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-16 04:44:21 +01:00
Update cgroups crate to fix the building issue on Aarch64. Fixes: #770 Signed-off-by: fupan.lfp <fupan.lfp@antfin.com>
44 lines
1.2 KiB
TOML
44 lines
1.2 KiB
TOML
[package]
|
|
name = "kata-agent"
|
|
version = "0.1.0"
|
|
authors = ["The Kata Containers community <kata-dev@lists.katacontainers.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
oci = { path = "oci" }
|
|
logging = { path = "../../pkg/logging" }
|
|
rustjail = { path = "rustjail" }
|
|
protocols = { path = "protocols" }
|
|
netlink = { path = "netlink", features = ["with-log", "with-agent-handler"] }
|
|
lazy_static = "1.3.0"
|
|
ttrpc = { git = "https://github.com/containerd/ttrpc-rust.git", branch="0.3.0" }
|
|
protobuf = "=2.14.0"
|
|
libc = "0.2.58"
|
|
nix = "0.17.0"
|
|
prctl = "1.0.0"
|
|
serde_json = "1.0.39"
|
|
signal-hook = "0.1.9"
|
|
scan_fmt = "0.2.3"
|
|
scopeguard = "1.0.0"
|
|
regex = "1"
|
|
# slog:
|
|
# - Dynamic keys required to allow HashMap keys to be slog::Serialized.
|
|
# - The 'max_*' features allow changing the log level at runtime
|
|
# (by stopping the compiler from removing log calls).
|
|
slog = { version = "2.5.2", features = ["dynamic-keys", "max_level_trace", "release_max_level_info"] }
|
|
slog-scope = "4.1.2"
|
|
# for testing
|
|
tempfile = "3.1.0"
|
|
prometheus = { version = "0.9.0", features = ["process"] }
|
|
procfs = "0.7.9"
|
|
anyhow = "1.0.32"
|
|
cgroups = { git = "https://github.com/kata-containers/cgroups-rs", branch = "stable-0.1.1"}
|
|
|
|
[workspace]
|
|
members = [
|
|
"netlink",
|
|
"oci",
|
|
"protocols",
|
|
"rustjail",
|
|
]
|