From a17995c16863e047ce00c91681998bfb7b7ab79d Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Fri, 19 Aug 2022 11:52:59 +0200 Subject: [PATCH] rename std feature --- fsrc-core/Cargo.toml | 4 ++-- fsrc-core/{src => tests}/pool_test.rs | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename fsrc-core/{src => tests}/pool_test.rs (100%) diff --git a/fsrc-core/Cargo.toml b/fsrc-core/Cargo.toml index 9cc1e70..b93b956 100644 --- a/fsrc-core/Cargo.toml +++ b/fsrc-core/Cargo.toml @@ -24,5 +24,5 @@ zerocopy = "0.6.1" once_cell = "1.13.1" [features] -default = ["use_std"] -use_std = ["downcast-rs/std"] +default = ["std"] +std = ["downcast-rs/std"] diff --git a/fsrc-core/src/pool_test.rs b/fsrc-core/tests/pool_test.rs similarity index 100% rename from fsrc-core/src/pool_test.rs rename to fsrc-core/tests/pool_test.rs