aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces
diff options
context:
space:
mode:
Diffstat (limited to 'src/interfaces')
-rw-r--r--src/interfaces/async_injectable.rs2
-rw-r--r--src/interfaces/mod.rs4
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;