aboutsummaryrefslogtreecommitdiff
path: root/mling/Cargo.toml
blob: a08c8d5f38eeb27b7465038b4b52af403807de22 (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
40
41
[package]
name = "mingling-cli"
version.workspace = true
edition.workspace = true
authors = ["Weicao-CatilGrass"]
license.workspace = true
readme = "README.md"
repository.workspace = true
description = "Mingling's scaffolding tool"
keywords = ["cli", "scaffolding", "command-line", "framework"]
categories = ["command-line-interface"]

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

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

[dependencies]
mingling = { path = "../mingling", features = [
    "builds",
    "parser",
    "comp",
    "general_renderer",
    "extra_macros",
    "dispatch_tree",
] }

serde = { version = "1", features = ["derive"] }
serde_json = "1"

colored = "3.1.1"
dirs = "6.0.0"
just_fmt = "0.1.2"
toml.workspace = true

[build-dependencies]
chrono = "0.4"
mingling = { path = "../mingling", features = ["comp", "builds"] }