diff options
Diffstat (limited to 'mingling_macros/Cargo.toml')
| -rw-r--r-- | mingling_macros/Cargo.toml | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/mingling_macros/Cargo.toml b/mingling_macros/Cargo.toml index 137213a..6ae7aeb 100644 --- a/mingling_macros/Cargo.toml +++ b/mingling_macros/Cargo.toml @@ -19,11 +19,11 @@ default = [] async = [] clap = [] -comp = [] +comp = ["dep:just_template", "dep:mingling_pathf"] dispatch_tree = [] structural_renderer = [] repl = [] -pathf = [] +pathf = ["dep:mingling_pathf"] extras = [] @@ -33,3 +33,9 @@ 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 } |
