mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-02-18 04:54:31 +01:00
Fixes: #4390 Fix in cargo cgroups-rs crate - Updated crate version to 0.2.10 Signed-Off-By: Ryan Savino <ryan.savino@amd.com>
43 lines
961 B
TOML
43 lines
961 B
TOML
[package]
|
|
name = "rustjail"
|
|
version = "0.1.0"
|
|
authors = ["The Kata Containers community <kata-dev@lists.katacontainers.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
serde = "1.0.91"
|
|
serde_json = "1.0.39"
|
|
serde_derive = "1.0.91"
|
|
oci = { path = "../../libs/oci" }
|
|
protocols = { path ="../../libs/protocols" }
|
|
caps = "0.5.0"
|
|
nix = "0.23.0"
|
|
scopeguard = "1.0.0"
|
|
capctl = "0.2.0"
|
|
lazy_static = "1.3.0"
|
|
libc = "0.2.58"
|
|
protobuf = "=2.14.0"
|
|
slog = "2.5.2"
|
|
slog-scope = "4.1.2"
|
|
scan_fmt = "0.2.6"
|
|
regex = "1.5.6"
|
|
path-absolutize = "1.2.0"
|
|
anyhow = "1.0.32"
|
|
cgroups = { package = "cgroups-rs", version = "0.2.10" }
|
|
rlimit = "0.5.3"
|
|
cfg-if = "0.1.0"
|
|
|
|
tokio = { version = "1.2.0", features = ["sync", "io-util", "process", "time", "macros"] }
|
|
futures = "0.3.17"
|
|
async-trait = "0.1.31"
|
|
inotify = "0.9.2"
|
|
libseccomp = { version = "0.2.3", optional = true }
|
|
|
|
[dev-dependencies]
|
|
serial_test = "0.5.0"
|
|
tempfile = "3.1.0"
|
|
|
|
[features]
|
|
seccomp = ["libseccomp"]
|
|
standard-oci-runtime = []
|