From 6b5bf76f565be7727d3bc624589e6b728e93106b Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Wed, 24 Feb 2021 00:21:09 -0500 Subject: rename features --- Cargo.toml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index e1f75e8..c5840e5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,7 +17,9 @@ tokio = { version = "1.2", optional = true, features = ["fs", "process"] } smol = "*" [features] -default = ["std"] +default = ["backend-std"] -std = [] -async-std = ["async-io", "async-process"] +backend-std = [] +backend-async-std = ["async-io", "async-process"] +backend-smol = ["async-io", "async-process"] +backend-tokio = ["tokio"] -- cgit v1.2.3-54-g00ecf