From dc260824605f4e772a7bc5be6c728e06eaf49151 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Wed, 28 Aug 2024 07:44:04 -0400 Subject: [PATCH] build: Use `default-features` with a dash `-` Squashes a build warning. Signed-off-by: Colin Walters --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 9a8229f..013868d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ camino = "1.0.4" chrono = "0.4.19" olpc-cjson = "0.1.1" 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" hex = "0.4.3" openssl = "0.10.33"