aboutsummaryrefslogtreecommitdiff
path: root/examples/example-combine-pathf-metadata/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/example-combine-pathf-metadata/Cargo.toml')
-rw-r--r--examples/example-combine-pathf-metadata/Cargo.toml24
1 files changed, 24 insertions, 0 deletions
diff --git a/examples/example-combine-pathf-metadata/Cargo.toml b/examples/example-combine-pathf-metadata/Cargo.toml
new file mode 100644
index 0000000..fd14c74
--- /dev/null
+++ b/examples/example-combine-pathf-metadata/Cargo.toml
@@ -0,0 +1,24 @@
+[package]
+name = "example-combine-pathf-metadata"
+version = "0.1.0"
+edition = "2024"
+
+[dependencies.mingling]
+path = "../../mingling"
+features = [
+ # `extras` is required by the implicit `dispatcher!("hello")` form
+ "extras",
+ # `pathf` resolves types across modules at build time
+ "pathf",
+]
+
+[build-dependencies.mingling]
+path = "../../mingling"
+features = [
+ # Enable the `build` feature for build-time support
+ "build",
+ # `pathf` must also be enabled in build-dependencies
+ "pathf",
+]
+
+[workspace]