aboutsummaryrefslogtreecommitdiff
path: root/examples/example-combine-pathf-metadata/Cargo.toml
blob: fd14c7446c4d30b9ae2f01a29e6e654028a82356 (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
[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]