aboutsummaryrefslogtreecommitdiff
path: root/src/private/mod.rs
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2022-11-19 15:45:12 +0100
committerHampusM <hampus@hampusmat.com>2022-11-19 15:45:12 +0100
commit9f27a925bd323e8e0864bedeb33a3c6953517ea1 (patch)
treeea5d8faaed82c58fa037fa377173bb365e1cd697 /src/private/mod.rs
parentd99cbf9fa95856cbc14a3217e1cd3f13aeb2e0b3 (diff)
refactor: reorganize non-public API items
Diffstat (limited to 'src/private/mod.rs')
-rw-r--r--src/private/mod.rs15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/private/mod.rs b/src/private/mod.rs
new file mode 100644
index 0000000..8b20333
--- /dev/null
+++ b/src/private/mod.rs
@@ -0,0 +1,15 @@
+//! This module contains items that's not in the public API but is used by the
+//! library user with the expansions of the macros in the syrette_macros crate.
+
+pub mod cast;
+
+pub extern crate linkme;
+
+#[cfg(feature = "factory")]
+pub mod any_factory;
+
+#[cfg(feature = "factory")]
+pub mod factory;
+
+#[cfg(feature = "factory")]
+pub mod castable_factory;