From 97c789e38bb8e61389a3808d241689e623144344 Mon Sep 17 00:00:00 2001 From: HampusM Date: Mon, 3 Oct 2022 20:23:26 +0200 Subject: refactor: remove relying on Rust nightly for better handling of features --- src/interfaces/mod.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/interfaces') diff --git a/src/interfaces/mod.rs b/src/interfaces/mod.rs index 65bac12..9815a11 100644 --- a/src/interfaces/mod.rs +++ b/src/interfaces/mod.rs @@ -1,7 +1,5 @@ //! Various useful interfaces. -use feature_macros::feature_specific; - pub mod injectable; #[cfg(feature = "factory")] @@ -12,5 +10,6 @@ pub mod any_factory; #[doc(hidden)] pub mod factory; -#[feature_specific("async")] +#[cfg(feature = "async")] +#[cfg_attr(doc_cfg, doc(cfg(feature = "async")))] pub mod async_injectable; -- cgit v1.2.3-18-g5258