From bf57eba82f9cb3dea7f346f3c1649d7dc2c1a329 Mon Sep 17 00:00:00 2001 From: Quentin Smith Date: Fri, 8 Jul 2022 16:59:06 -0400 Subject: [PATCH] Remove dep:* features to appease older Cargo Older Cargo versions use the same namespace for both features and dependencies. --- Cargo.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 5b8054c..3e1e807 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,9 +22,8 @@ include = [ [features] default = ["nb"] -nb = ["dep:nb"] nightly = ["async"] -async = ["dep:embedded-hal-async"] +async = ["embedded-hal-async"] [dependencies] embedded-hal = "0.2.5"