blob: 1c6b327db603d10be3e0af351c1691cf79fda462 (
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
27
|
[package]
name = "example-completion"
version = "0.1.0"
edition = "2024"
[dependencies.mingling]
path = "../../mingling"
features = [
# Enable `comp` features
"comp",
"parser",
]
[build-dependencies.mingling]
path = "../../mingling"
features = [
# Enable `comp` features
"comp",
# If you want to build completion scripts,
# enable `builds` features
"builds",
]
[workspace]
|