diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-06-28 09:18:17 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-06-28 09:18:17 +0800 |
| commit | 86bc9000c5687db6434a5d20f409dda8b1d7a43a (patch) | |
| tree | c28cb62dee7ad1a81abf9345e16b725866fbce7a /examples/example-pathfinder/Cargo.toml | |
| parent | 748c14588cf1c31c8b8d60a9c94349c0173ef607 (diff) | |
feat(docs): add Module Pathfinder example for the `pathf` feature
Diffstat (limited to 'examples/example-pathfinder/Cargo.toml')
| -rw-r--r-- | examples/example-pathfinder/Cargo.toml | 25 |
1 files changed, 25 insertions, 0 deletions
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] |
