From a5647e89bc5110a07c8f3c695c3c9582aa31d354 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Sat, 16 May 2026 16:24:55 +0800 Subject: Simplify example imports to use prelude and add resources example Add a new example demonstrating global resource injection in chain functions, and update all existing examples to import from `mingling::prelude` instead of individual macro paths. Also add `example-resources` to the workspace exclude list. --- examples/example-resources/Cargo.toml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 examples/example-resources/Cargo.toml (limited to 'examples/example-resources/Cargo.toml') diff --git a/examples/example-resources/Cargo.toml b/examples/example-resources/Cargo.toml new file mode 100644 index 0000000..ca783f3 --- /dev/null +++ b/examples/example-resources/Cargo.toml @@ -0,0 +1,7 @@ +[package] +name = "example-resources" +version = "0.0.1" +edition = "2024" + +[dependencies] +mingling = { path = "../../mingling", features = ["parser"] } -- cgit