From 03b07a2fb99ad70f3b47029016833775b8b981f7 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Tue, 28 Nov 2023 08:29:05 -0500 Subject: [PATCH 1/6] lib: Update to libsystemd 0.7 Just keeping up with things. --- lib/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Cargo.toml b/lib/Cargo.toml index 89637477f..8728d929b 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -29,7 +29,7 @@ io-lifetimes = "1.0" indicatif = "0.17.0" once_cell = "1.9" libc = "0.2.92" -libsystemd = "0.6.0" +libsystemd = "0.7.0" openssl = "0.10.33" ostree = { features = ["v2022_6"], version = "0.19.0" } pin-project = "1.0" From 50c2ac1c40eaa6f14714935435c30d8abd892a6c Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Tue, 28 Nov 2023 08:30:00 -0500 Subject: [PATCH 2/6] lib: Update to async-compression 0.4 Just keeping up with things. --- lib/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Cargo.toml b/lib/Cargo.toml index 8728d929b..c1afe0039 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -12,7 +12,7 @@ rust-version = "1.70.0" [dependencies] anyhow = "1.0" containers-image-proxy = "0.5.5" -async-compression = { version = "0.3", features = ["gzip", "tokio"] } +async-compression = { version = "0.4", features = ["gzip", "tokio"] } bitflags = "1" camino = "1.0.4" chrono = "0.4.19" From d7c2524bcbae283fedf18e8055a307f613a34771 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Tue, 28 Nov 2023 09:03:30 -0500 Subject: [PATCH 3/6] lib: Update indoc to 2 Just keeping up with things. --- lib/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Cargo.toml b/lib/Cargo.toml index c1afe0039..5ac82aa22 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -45,7 +45,7 @@ tokio-util = { features = ["io-util"], version = "0.7" } tokio-stream = { features = ["sync"], version = "0.1.8" } tracing = "0.1" -indoc = { version = "1.0.3", optional = true } +indoc = { version = "2", optional = true } xshell = { version = "0.2", optional = true } [dev-dependencies] From 55b1affcd1e1292c7a2c32cf12d5715e3a1de8c1 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Tue, 28 Nov 2023 09:03:30 -0500 Subject: [PATCH 4/6] lib: Update io-lifetimes to 2 Just keeping up with things. --- lib/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Cargo.toml b/lib/Cargo.toml index 5ac82aa22..4b27cf896 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -25,7 +25,7 @@ fn-error-context = "0.2.0" futures-util = "0.3.13" gvariant = "0.4.0" hex = "0.4.3" -io-lifetimes = "1.0" +io-lifetimes = "2" indicatif = "0.17.0" once_cell = "1.9" libc = "0.2.92" From 45d5534120345f1e5fef773ea0dbf08615359418 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Tue, 28 Nov 2023 09:10:35 -0500 Subject: [PATCH 5/6] lib: Drop unused bitflags dependency We weren't using this. --- lib/Cargo.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/Cargo.toml b/lib/Cargo.toml index 4b27cf896..26ebf7e00 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -13,7 +13,6 @@ rust-version = "1.70.0" anyhow = "1.0" containers-image-proxy = "0.5.5" async-compression = { version = "0.4", features = ["gzip", "tokio"] } -bitflags = "1" camino = "1.0.4" chrono = "0.4.19" olpc-cjson = "0.1.1" From de85e76af04474702ae07d5665a40ccffbd4ce0b Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Tue, 28 Nov 2023 09:13:00 -0500 Subject: [PATCH 6/6] lib: Release 0.12.7 One API improvement, plus various dependency bumps. --- lib/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Cargo.toml b/lib/Cargo.toml index 26ebf7e00..ebebec69d 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -6,7 +6,7 @@ license = "MIT OR Apache-2.0" name = "ostree-ext" readme = "README.md" repository = "https://github.com/ostreedev/ostree-rs-ext" -version = "0.12.6" +version = "0.12.7" rust-version = "1.70.0" [dependencies]