blob: 2c866f7fe26098d51e64dd4a4a3d4b4daa25359b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
[package]
name = "example-combine-pathf-dispatch-tree"
version = "0.1.0"
edition = "2024"
[dependencies]
mingling = { path = "../../mingling", features = [
"dispatch_tree",
"extras",
"pathf",
] }
[build-dependencies]
mingling = { path = "../../mingling", features = [
"builds",
# --------- IMPORTANT ---------
# To use pathf under dispatch_tree
# **must** enable the `dispatch_tree`
# feature in build dependencies
"dispatch_tree",
"pathf",
# --------- IMPORTANT ---------
] }
[workspace]
|