From 2a77ecf6912b100c09e99404b055b6c4e041849b Mon Sep 17 00:00:00 2001 From: John Eckersberg Date: Thu, 13 Jun 2024 10:51:51 -0400 Subject: [PATCH] Fix deprecation warning with rust 1.79.0 New stable gives warning: `default_features` is deprecated in favor of `default-features` and will not work in the 2024 edition Signed-off-by: John Eckersberg --- xtask/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xtask/Cargo.toml b/xtask/Cargo.toml index 76f40c17..24135181 100644 --- a/xtask/Cargo.toml +++ b/xtask/Cargo.toml @@ -14,7 +14,7 @@ path = "src/xtask.rs" [dependencies] anyhow = "1.0.82" camino = "1.1.6" -chrono = { version = "0.4.38", default_features = false, features = ["std"] } +chrono = { version = "0.4.38", default-features = false, features = ["std"] } fn-error-context = "0.2.1" tempfile = "3.10.1" mandown = "0.1.3"