blob: 4d13d0ba79d28c4962a79c98ab39642f91ac8933 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
[package]
name = "mingling"
version = "0.1.1"
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]
default = ["mingling_core/default"]
full = ["mingling_core/full"]
macros = ["mingling_core/macros"]
general_renderer = ["mingling_core/general_renderer"]
[dependencies]
mingling_core = { version = "0.1.0", default-features = false }
|