diff options
Diffstat (limited to 'mingling/Cargo.toml')
| -rw-r--r-- | mingling/Cargo.toml | 18 |
1 files changed, 2 insertions, 16 deletions
diff --git a/mingling/Cargo.toml b/mingling/Cargo.toml index 1148f2a..7c7993b 100644 --- a/mingling/Cargo.toml +++ b/mingling/Cargo.toml @@ -16,7 +16,6 @@ tokio.workspace = true mingling = { path = ".", features = [ "comp", "structural_renderer", - "parser", "repl", ] } @@ -26,11 +25,9 @@ features = [ "docs_rs", "core", "macros", - "builds", "structural_renderer", "repl", "comp", - "parser", "picker", "clap", "extras", @@ -42,8 +39,6 @@ features = [ mini = ["extras", "picker"] advanced = ["extras", "picker", "repl", "comp", "dispatch_tree", "structural_renderer"] full = ["extras", "picker", "repl", "clap", "comp", "dispatch_tree", "structural_renderer_full", "pathf"] -build_advanced = ["build", "comp"] -build_full = ["build", "comp", "pathf", "dispatch_tree"] # Core core = ["dep:mingling_core", "mingling_core/default"] @@ -54,18 +49,16 @@ nightly = ["mingling_core/nightly", "mingling_macros/nightly"] debug = ["mingling_core/debug"] async = ["mingling_core/async", "mingling_macros/async"] default = ["core", "macros"] -build = ["mingling_core/build"] # - Section only shown in docs.rs docs_rs = [] # Features clap = ["mingling_core/clap", "mingling_macros/clap"] -dispatch_tree = ["mingling_core/dispatch_tree", "mingling_macros/dispatch_tree"] +dispatch_tree = ["mingling_macros/dispatch_tree"] repl = ["mingling_core/repl", "mingling_macros/repl"] comp = ["mingling_core/comp", "mingling_macros/comp"] -parser = ["dep:size"] picker = ["mingling_core/picker", "dep:arg-picker", "arg-picker/mingling_support"] -pathf = ["mingling_core/pathf", "mingling_macros/pathf"] +pathf = ["mingling_macros/pathf"] structural_renderer = [ "mingling_core/structural_renderer", @@ -101,15 +94,8 @@ ron_serde_fmt = ["mingling_core/ron_serde_fmt"] extras = ["mingling_macros/extras"] -# - LEGACY - -# These are old names, will be Breaking Change in the future - -builds = ["mingling_core/build"] -extra_macros = ["mingling_macros/extras"] - [dependencies] mingling_core = { workspace = true, optional = true } mingling_macros = { workspace = true, optional = true } arg-picker = { workspace = true, optional = true } serde = { workspace = true, optional = true } -size = { version = "0.5", optional = true } |
