From 05367327a0de2ab6c34e475b78d905046d350c2b Mon Sep 17 00:00:00 2001 From: John Eckersberg Date: Fri, 21 Jun 2024 14:33:57 -0400 Subject: [PATCH] Fix deprecation warning with rust 1.79.0 (Same as https://github.com/containers/bootc/pull/601) Signed-off-by: John Eckersberg --- lib/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Cargo.toml b/lib/Cargo.toml index 10dcd5a8..1da302f2 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -25,7 +25,7 @@ olpc-cjson = "0.1.1" clap = { version= "4.2", features = ["derive"] } clap_mangen = { version = "0.2", optional = true } cap-std-ext = "4.0" -flate2 = { features = ["zlib"], default_features = false, version = "1.0.20" } +flate2 = { features = ["zlib"], default-features = false, version = "1.0.20" } fn-error-context = "0.2.0" futures-util = "0.3.13" gvariant = "0.5.0"