From 5d4056b643c575c6a808ec4d6f2fb24db57acf43 Mon Sep 17 00:00:00 2001 From: MichiRecRoom <1008889+LikeLakers2@users.noreply.github.com> Date: Mon, 12 Aug 2024 01:03:36 -0400 Subject: [PATCH] `default_features` is deprecated - switch it to `default-features` --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 6ec88a9e9..0335a4a35 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -30,7 +30,7 @@ rand = "0.7" criterion = { version = "0.4.0", features = ["html_reports"] } paste = "1.0.0" # Used in test_std to instantiate generic tests permutohedron = "0.2" -quickcheck = { version = "0.9", default_features = false } +quickcheck = { version = "0.9", default-features = false } [features] default = ["use_std"]