aboutsummaryrefslogtreecommitdiff
path: root/mingling_core/src/docs/build.md
blob: dac37782af65af464d63786b403d125562f8354f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Provides Mingling's build script module, used in `build.rs` to provide build-time behavior for certain features.

To use it, add the following to your `Cargo.toml` under `[build-dependencies]`, and enable the features
that require build-time behavior from the crate:

```toml
# Cargo.toml
[build-dependencies.mingling]
version = "0.3.0"
features = [
    "build", # Enable it
    "comp",  # If you need completion-related build-time behavior, enable this as well
]
```