blob: d7e820c1ff2e18d3f0dcfdaa1380a94eb644bac3 (
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
|
[package]
name = "mingling"
version = "0.1.0"
edition = "2024"
authors = ["Weicao-CatilGrass"]
license = "MIT OR Apache-2.0"
readme = "README.md"
description = "A procedural command-line framework with subcommand support"
keywords = ["cli", "framework", "procedural", "subcommand", "command-line"]
categories = ["command-line-interface"]
repository = "https://github.com/catilgrass/mingling"
[features]
full = ["macros", "general_renderer"]
default = ["macros"]
macros = ["mingling_macros"]
general_renderer = ["dep:serde", "mingling_macros/serde"]
[dependencies]
mingling_macros = { version = "0.1.0", optional = true }
just_fmt = "0.1.2"
serde = { version = "1.0", features = ["derive"], optional = true }
thiserror = "2"
tokio = { version = "1", features = ["full"] }
|