blob: 6ae7aebb2cfe8312676445a835670001fe851e57 (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
[package]
name = "mingling_macros"
version.workspace = true
edition.workspace = true
authors = ["Weicao-CatilGrass"]
license.workspace = true
readme = "README.md"
repository.workspace = true
description = "Macros of the mingling library"
keywords = ["cli", "macros", "procedural", "command-line", "framework"]
categories = ["command-line-interface"]
[lib]
proc-macro = true
[features]
nightly = []
default = []
async = []
clap = []
comp = ["dep:just_template", "dep:mingling_pathf"]
dispatch_tree = []
structural_renderer = []
repl = []
pathf = ["dep:mingling_pathf"]
extras = []
[dependencies]
syn.workspace = true
quote.workspace = true
proc-macro2.workspace = true
just_fmt.workspace = true
# comp — compile-time completion script generation (build_comp!())
just_template = { workspace = true, optional = true }
# pathf — compile-time type path analysis (build_pathf!())
mingling_pathf = { workspace = true, optional = true }
|