summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 13b8e8c0516a9fb83c812717dc3905d2cc39d31a (plain)
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
42
43
44
45
46
[package]
name = "just_enough_vcs"
version = "0.1.0"
edition = "2024"
license-file = "LICENSE-MIT.md"
authors = [ "Weicao-CatilGrass (GitHub)" ]

[features]
default = ["cfg_file"]
cfg_file = []

[workspace]
members = [

    # Utility

    ## Config File
    "crates/utils/cfg_file",
    "crates/utils/cfg_file/cfg_file_derive",
    "crates/utils/cfg_file/cfg_file_example"
]

[workspace.package]
version = "0.1.0"

[profile.dev]
opt-level = 0
debug = true
split-debuginfo = "unpacked"
codegen-units = 16
incremental = true
lto = false
panic = "unwind"

[profile.release]
opt-level = 3
debug = false
split-debuginfo = "off"
codegen-units = 1
incremental = false
lto = "fat"
panic = "abort"
strip = "symbols"

[dependencies]
cfg_file = { path = "crates/utils/cfg_file" }