From 2ebe71180da1813be5dc3f77ce13020a49455c95 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Mon, 6 May 2024 21:19:47 -0700 Subject: [PATCH] Fix use of deprecated default_features in Cargo.toml warning: Cargo.toml: `default_features` is deprecated in favor of `default-features` and will not work in the 2024 edition (in the `quote` dependency) --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index f543d9b..056720b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,7 +25,7 @@ unicode-ident = "1.0" [dev-dependencies] flate2 = "1.0" -quote = { version = "1.0", default_features = false } +quote = { version = "1.0", default-features = false } rayon = "1.0" rustversion = "1" tar = "0.4"