mirror of
https://github.com/containers/youki
synced 2024-11-23 09:21:57 +01:00
commit
47e5f74f25
8
Cargo.lock
generated
8
Cargo.lock
generated
@ -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",
|
||||
|
@ -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"
|
||||
|
@ -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"
|
||||
|
@ -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"
|
||||
|
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user