aboutsummaryrefslogtreecommitdiff
path: root/mling/Cargo.toml
blob: bbee21228d53e278cd861b6b8dce295daeae4d67 (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 = "0.1.8"
edition = "2024"
license = "MIT OR Apache-2.0"
repository = "https://github.com/catilgrass/mingling"
description = "Mingling's scaffolding tool"

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

[profile.dev]
opt-level = 0
debug = true

[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
panic = "abort"
strip = true


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

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

colored = "3.1.1"
dirs = "6.0.0"
just_fmt = "0.1.2"
toml = "0.9.8"

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