From 86bc9000c5687db6434a5d20f409dda8b1d7a43a Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Sun, 28 Jun 2026 09:18:17 +0800 Subject: feat(docs): add Module Pathfinder example for the `pathf` feature --- examples/example-pathfinder/Cargo.toml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 examples/example-pathfinder/Cargo.toml (limited to 'examples/example-pathfinder/Cargo.toml') diff --git a/examples/example-pathfinder/Cargo.toml b/examples/example-pathfinder/Cargo.toml new file mode 100644 index 0000000..bd362f2 --- /dev/null +++ b/examples/example-pathfinder/Cargo.toml @@ -0,0 +1,25 @@ +[package] +name = "example-pathfinder" +version = "0.1.0" +edition = "2024" + +[dependencies.mingling] +path = "../../mingling" + +features = [ + # Enable `pathf` features + "pathf", +] + +[build-dependencies.mingling] +path = "../../mingling" + +features = [ + # Enable `pathf` features + "pathf", + + # Enable the `builds` feature for build-time support + "builds", +] + +[workspace] -- cgit