aboutsummaryrefslogtreecommitdiff
path: root/examples/example-unit-test
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-05-24 16:46:45 +0800
committer魏曹先生 <1992414357@qq.com>2026-05-24 16:46:45 +0800
commit11adad7db1b6202d5366527902c3f0a9fb90654f (patch)
tree76ecde96bf98686dfa2d5e9fb00f280794757363 /examples/example-unit-test
parent13699cfdccc901c2a7d53270f695384134ba2221 (diff)
Move entry, route, and program_setup macros to extra_macros feature
Remove these macros from the prelude and gate them behind the `extra_macros` feature flag. Update examples and documentation to enable the new feature where these macros are used.
Diffstat (limited to 'examples/example-unit-test')
-rw-r--r--examples/example-unit-test/Cargo.toml2
-rw-r--r--examples/example-unit-test/src/main.rs1
2 files changed, 2 insertions, 1 deletions
diff --git a/examples/example-unit-test/Cargo.toml b/examples/example-unit-test/Cargo.toml
index 4a82503..cc9a1a2 100644
--- a/examples/example-unit-test/Cargo.toml
+++ b/examples/example-unit-test/Cargo.toml
@@ -4,4 +4,4 @@ version = "0.1.0"
edition = "2024"
[dependencies]
-mingling = { path = "../../mingling" }
+mingling = { path = "../../mingling", features = ["extra_macros"] }
diff --git a/examples/example-unit-test/src/main.rs b/examples/example-unit-test/src/main.rs
index d0e1b90..ca7ac25 100644
--- a/examples/example-unit-test/src/main.rs
+++ b/examples/example-unit-test/src/main.rs
@@ -11,6 +11,7 @@ use mingling::prelude::*;
#[cfg(test)]
mod tests {
use super::*;
+ use mingling::macros::entry;
use mingling::{assert_member_id, assert_render_result};
// --------- IMPORTANT ---------