aboutsummaryrefslogtreecommitdiff
path: root/mingling_cli/Cargo.toml
blob: 93021f08768e5a3e3026ed11d8251e6344af14e2 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[package]
name = "mingling-cli"
version = "0.3.0"
edition = "2024"
license = "MIT OR Apache-2.0"
repository = "https://github.com/mingling-rs/mingling/tree/main/mingling_cli"
authors = ["Weicao-CatilGrass"]
readme = "README.md"

description = "Mingling's scaffolding tool for generating, analyzing, and modifying Mingling projects"
keywords = ["cli", "cli-framework", "command-line", "tools"]
categories = ["command-line-interface"]

[[bin]]
name = "mling"
path = "src/main.rs"

[dependencies.mingling]
path = "../mingling"
features = [
    "picker",
    "pathf",
    "extra_macros",
    "structural_renderer"
]

[build-dependencies.mingling]
path = "../mingling"
features = [
    "builds",
    "pathf",
]

[dependencies]
cargo_metadata = "0.23.1"
serde = { version = "1.0.229", features = ["derive"] }
serde_json = "1.0.151"

[workspace]