From 9bf99afd77823483c593c0508ae308bd4e0b4133 Mon Sep 17 00:00:00 2001 From: Andrew Hickman Date: Wed, 23 Oct 2024 21:49:28 +0100 Subject: [PATCH] Replace default_features with default-features in Cargo.toml --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index b4f291c..434516f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ readme = "README.md" exclude = [".github", ".gitignore", "README.tpl"] [dependencies] -tokio = { version = "1.21", optional = true, default_features = false, features = ["fs"] } +tokio = { version = "1.21", optional = true, default-features = false, features = ["fs"] } [build-dependencies] autocfg = "1"