aboutsummaryrefslogtreecommitdiff
path: root/mingling/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'mingling/src/lib.rs')
-rw-r--r--mingling/src/lib.rs10
1 files changed, 10 insertions, 0 deletions
diff --git a/mingling/src/lib.rs b/mingling/src/lib.rs
index c9c6d22..108d61a 100644
--- a/mingling/src/lib.rs
+++ b/mingling/src/lib.rs
@@ -6,6 +6,16 @@
#![doc = include_str!("docs/lib.md")]
#![cfg_attr(docsrs, feature(doc_cfg))]
+#[cfg(all(feature = "core", feature = "docs_rs"))]
+mod gen_program;
+
+#[cfg(all(feature = "core", feature = "docs_rs"))]
+#[doc = include_str!("docs/gen_program.md")]
+#[allow(nonstandard_style)]
+pub mod CRATE_ROOT {
+ pub use crate::gen_program::*;
+}
+
#[cfg(feature = "core")]
mod example_docs;