[package] name = "mingling" version.workspace = true edition.workspace = true authors = ["Weicao-CatilGrass"] license.workspace = true readme = "README.md" description = "A Rust CLI framework for many subcmds & complex workflows, reduces boilerplate via proc macros, focus on biz logic" keywords = ["cli", "framework", "procedural", "subcommand", "command-line"] categories = ["command-line-interface"] repository.workspace = true [dev-dependencies] serde.workspace = true tokio.workspace = true mingling = { path = ".", features = ["comp", "general_renderer", "parser"] } [package.metadata.docs.rs] features = ["builds", "general_renderer", "repl", "comp", "parser"] [features] nightly = ["mingling_core/nightly", "mingling_macros/nightly"] debug = ["mingling_core/debug"] async = ["mingling_core/async", "mingling_macros/async"] builds = ["mingling_core/builds"] default = ["mingling_core/default", "mingling_macros/default"] clap = ["mingling_core/clap", "mingling_macros/clap"] dispatch_tree = ["mingling_core/dispatch_tree", "mingling_macros/dispatch_tree"] general_renderer = [ "mingling_core/general_renderer", "dep:serde", "mingling_macros/general_renderer", ] repl = ["mingling_core/repl", "mingling_macros/repl"] comp = ["mingling_core/comp", "mingling_macros/comp"] parser = ["dep:size"] [dependencies] mingling_core = { path = "../mingling_core", default-features = false } mingling_macros = { path = "../mingling_macros", default-features = false } serde = { workspace = true, optional = true } size = { version = "0.5", optional = true }