1
0
mirror of https://github.com/containers/youki synced 2024-11-23 09:21:57 +01:00

Merge pull request #429 from containers/dependabot/cargo/systemd-0.9.0

Bump systemd from 0.8.2 to 0.9.0
This commit is contained in:
utam0k 2021-10-25 13:32:59 +09:00 committed by GitHub
commit 9d4e6cd107
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 6 deletions

8
Cargo.lock generated

@ -725,9 +725,9 @@ dependencies = [
[[package]] [[package]]
name = "libsystemd-sys" name = "libsystemd-sys"
version = "0.8.0" version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6e03fd580bcecda68dcdcd5297085ade6a3dc552cd8b030d2b94a9b089ef7ab8" checksum = "c68c9b25d61a54754b491e1cb848e644ff90b6c11f6f11f9d2c170b7d2cd83b3"
dependencies = [ dependencies = [
"build-env", "build-env",
"libc", "libc",
@ -1216,9 +1216,9 @@ dependencies = [
[[package]] [[package]]
name = "systemd" name = "systemd"
version = "0.8.2" version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f722cabda922e471742300045f56dbaa53fafbb4520fca304e51258019bfe91d" checksum = "fe03808323f01aefb68591de263b994ffeb671af1fe040858dc820ed7b681996"
dependencies = [ dependencies = [
"cstr-argument", "cstr-argument",
"foreign-types", "foreign-types",

@ -15,7 +15,7 @@ procfs = "0.11.0"
log = "0.4" log = "0.4"
anyhow = "1.0" anyhow = "1.0"
oci-spec = { git = "https://github.com/containers/oci-spec-rs", rev = "d6fb1e91742313cd0d0085937e2d6df5d4669720" } oci-spec = { git = "https://github.com/containers/oci-spec-rs", rev = "d6fb1e91742313cd0d0085937e2d6df5d4669720" }
systemd = { version = "0.8", default-features = false, optional = true } systemd = { version = "0.9", default-features = false, optional = true }
dbus = "0.9.5" dbus = "0.9.5"
serde = { version = "1.0", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }
rbpf = {version = "0.1.0", optional = true } rbpf = {version = "0.1.0", optional = true }

@ -30,7 +30,7 @@ libcgroups = { version = "0.1.0", path = "../libcgroups" }
libseccomp = { version = "0.1.0", path = "../libseccomp" } libseccomp = { version = "0.1.0", path = "../libseccomp" }
serde = { version = "1.0", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0" serde_json = "1.0"
systemd = { version = "0.8", default-features = false, optional = true } systemd = { version = "0.9", default-features = false, optional = true }
[dev-dependencies] [dev-dependencies]
oci-spec = { git = "https://github.com/containers/oci-spec-rs", rev = "d6fb1e91742313cd0d0085937e2d6df5d4669720", features = ["proptests"] } oci-spec = { git = "https://github.com/containers/oci-spec-rs", rev = "d6fb1e91742313cd0d0085937e2d6df5d4669720", features = ["proptests"] }