1
0
Fork 0
mirror of https://github.com/containers/youki synced 2024-05-18 21:46:13 +02:00
Signed-off-by: utam0k <k0ma@utam0k.jp>
This commit is contained in:
utam0k 2023-06-18 12:21:23 +00:00
parent d1db6d9e36
commit 60ed236ca5
No known key found for this signature in database
GPG Key ID: 2DB29D2A21B41E0E
5 changed files with 12 additions and 12 deletions

8
Cargo.lock generated
View File

@ -1920,7 +1920,7 @@ checksum = "f92be4933c13fd498862a9e02a3055f8a8d9c039ce33db97306fd5a6caa7f29b"
[[package]]
name = "libcgroups"
version = "0.0.5"
version = "0.1.0"
dependencies = [
"anyhow",
"clap",
@ -1946,7 +1946,7 @@ dependencies = [
[[package]]
name = "libcontainer"
version = "0.0.5"
version = "0.1.0"
dependencies = [
"anyhow",
"bitflags 2.3.2",
@ -1997,7 +1997,7 @@ dependencies = [
[[package]]
name = "liboci-cli"
version = "0.0.5"
version = "0.1.0"
dependencies = [
"clap",
]
@ -5429,7 +5429,7 @@ dependencies = [
[[package]]
name = "youki"
version = "0.0.5"
version = "0.1.0"
dependencies = [
"anyhow",
"caps",

View File

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

View File

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

View File

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

View File

@ -1,6 +1,6 @@
[package]
name = "youki"
version = "0.0.5"
version = "0.1.0"
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.71"
chrono = { version = "0.4", default-features = false, features = ["clock", "serde"] }
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" }
libcgroups = { version = "0.1.0", path = "../libcgroups", default-features = false }
libcontainer = { version = "0.1.0", path = "../libcontainer", default-features = false }
liboci-cli = { version = "0.1.0", path = "../liboci-cli" }
nix = "0.26.2"
oci-spec = { version = "^0.6.1", features = ["runtime"] }
once_cell = "1.18.0"