diff options
author | HampusM <hampus@hampusmat.com> | 2022-10-02 19:32:25 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-10-02 19:32:25 +0200 |
commit | d8525f169649e4ce7e806e68de5e328135755326 (patch) | |
tree | 4fc573e79c8f3836fada5fdb0851b4740a63c43d /src/interfaces | |
parent | 31f62ea0c634360030dcf89203268fa5684b5905 (diff) |
refactor: improve management of feature specific items
Diffstat (limited to 'src/interfaces')
-rw-r--r-- | src/interfaces/async_injectable.rs | 2 | ||||
-rw-r--r-- | src/interfaces/mod.rs | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/interfaces/async_injectable.rs b/src/interfaces/async_injectable.rs index 07a21aa..69c2a47 100644 --- a/src/interfaces/async_injectable.rs +++ b/src/interfaces/async_injectable.rs @@ -1,6 +1,4 @@ //! Interface for structs that can be injected into or be injected to. -//! -//! *This module is only available if Syrette is built with the "async" feature.* use std::fmt::Debug; use std::sync::Arc; diff --git a/src/interfaces/mod.rs b/src/interfaces/mod.rs index a69da5b..65bac12 100644 --- a/src/interfaces/mod.rs +++ b/src/interfaces/mod.rs @@ -1,5 +1,7 @@ //! Various useful interfaces. +use feature_macros::feature_specific; + pub mod injectable; #[cfg(feature = "factory")] @@ -10,5 +12,5 @@ pub mod any_factory; #[doc(hidden)] pub mod factory; -#[cfg(feature = "async")] +#[feature_specific("async")] pub mod async_injectable; |