1
0
mirror of https://github.com/containers/youki synced 2024-11-23 01:11:58 +01:00
Signed-off-by: utam0k <k0ma@utam0k.jp>
This commit is contained in:
utam0k 2023-03-29 11:12:36 +00:00
parent f3a16fae3f
commit dcffd57015
No known key found for this signature in database
GPG Key ID: 2DB29D2A21B41E0E
4 changed files with 8 additions and 8 deletions

@ -1,6 +1,6 @@
[package]
name = "libcgroups"
version = "0.0.4"
version = "0.0.5"
description = "Library for cgroup"
license-file = "../../LICENSE"
repository = "https://github.com/containers/youki"

@ -1,6 +1,6 @@
[package]
name = "libcontainer"
version = "0.0.4"
version = "0.0.5"
description = "Library for container control"
license-file = "../../LICENSE"
repository = "https://github.com/containers/youki"
@ -35,7 +35,7 @@ path-clean = "1.0.1"
oci-spec = { version = "^0.6.0", features = ["runtime"] }
procfs = "0.15.1"
prctl = "1.0.0"
libcgroups = { version = "0.0.4", path = "../libcgroups", default-features = false }
libcgroups = { version = "0.0.5", path = "../libcgroups", default-features = false }
libseccomp = { version = "0.3.0", optional=true }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"

@ -1,6 +1,6 @@
[package]
name = "liboci-cli"
version = "0.0.4"
version = "0.0.5"
description = "Parse command line arguments for OCI container runtimes"
license-file = "../../LICENSE"
repository = "https://github.com/containers/youki"

@ -1,6 +1,6 @@
[package]
name = "youki"
version = "0.0.4"
version = "0.0.5"
description = "A container runtime written in Rust"
license-file = "../../LICENSE"
repository = "https://github.com/containers/youki"
@ -28,9 +28,9 @@ features = ["std", "suggestions", "derive", "cargo", "help", "usage", "error-con
[dependencies]
anyhow = "1.0.70"
chrono = { version = "0.4", features = ["serde"] }
libcgroups = { version = "0.0.4", path = "../libcgroups", default-features = false }
libcontainer = { version = "0.0.4", path = "../libcontainer", default-features = false }
liboci-cli = { version = "0.0.4", path = "../liboci-cli" }
libcgroups = { version = "0.0.5", path = "../libcgroups", default-features = false }
libcontainer = { version = "0.0.5", path = "../libcontainer", default-features = false }
liboci-cli = { version = "0.0.5", path = "../liboci-cli" }
log = { version = "0.4", features = ["std"] }
nix = "0.26.2"
oci-spec = { version = "^0.6.0", features = ["runtime"] }