aboutsummaryrefslogtreecommitdiff
path: root/examples/example-pathfinder/Cargo.toml
blob: bd362f288e1a1146226c6a3aedba484c6c14aef0 (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
[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]