mingling 0.1.8

A Rust CLI framework for many subcmds & complex workflows, reduces boilerplate via proc macros, focus on biz logic
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "mingling"
version = "0.1.8"
authors = ["Weicao-CatilGrass"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust CLI framework for many subcmds & complex workflows, reduces boilerplate via proc macros, focus on biz logic"
readme = "README.md"
keywords = [
    "cli",
    "framework",
    "procedural",
    "subcommand",
    "command-line",
]
categories = ["command-line-interface"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/catilgrass/mingling"
resolver = "2"

[package.metadata.docs.rs]
features = [
    "builds",
    "general_renderer",
    "repl",
    "comp",
    "parser",
]

[features]
all_serde_fmt = [
    "json_serde_fmt",
    "yaml_serde_fmt",
    "toml_serde_fmt",
    "ron_serde_fmt",
]
async = [
    "mingling_core/async",
    "mingling_macros/async",
]
builds = ["mingling_core/builds"]
clap = [
    "mingling_core/clap",
    "mingling_macros/clap",
]
comp = [
    "mingling_core/comp",
    "mingling_macros/comp",
]
debug = ["mingling_core/debug"]
default = [
    "mingling_core/default",
    "mingling_macros/default",
]
dispatch_tree = [
    "mingling_core/dispatch_tree",
    "mingling_macros/dispatch_tree",
]
general_renderer = [
    "mingling_core/general_renderer",
    "dep:serde",
    "mingling_macros/general_renderer",
    "json_serde_fmt",
]
general_renderer_empty = [
    "mingling_core/general_renderer",
    "dep:serde",
    "mingling_macros/general_renderer",
]
general_renderer_full = [
    "mingling_core/general_renderer",
    "dep:serde",
    "mingling_macros/general_renderer",
    "all_serde_fmt",
]
json_serde_fmt = ["mingling_core/json_serde_fmt"]
nightly = [
    "mingling_core/nightly",
    "mingling_macros/nightly",
]
parser = ["dep:size"]
repl = [
    "mingling_core/repl",
    "mingling_macros/repl",
]
ron_serde_fmt = ["mingling_core/ron_serde_fmt"]
toml_serde_fmt = ["mingling_core/toml_serde_fmt"]
yaml_serde_fmt = ["mingling_core/yaml_serde_fmt"]

[lib]
name = "mingling"
path = "src/lib.rs"

[dependencies.mingling_core]
version = "0.1.8"
default-features = false

[dependencies.mingling_macros]
version = "0.1.8"
default-features = false

[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true

[dependencies.size]
version = "0.5"
optional = true

[dev-dependencies.serde]
version = "1.0"
features = ["derive"]

[dev-dependencies.tokio]
version = "1"
features = ["full"]