aboutsummaryrefslogtreecommitdiff
path: root/examples/example-pathfinder/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/example-pathfinder/Cargo.toml')
-rw-r--r--examples/example-pathfinder/Cargo.toml25
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]