aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: fdadcfd45e9c0d4493dd2ac6a8f8153474e36a8d (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
[workspace]
resolver = "2"
members = [
    # Core
    "mingling",
    "mingling_core",
    "mingling_macros",

    # Pathfinder
    "mingling_pathf",

    # Picker2
    "mingling_picker",
    "mingling_picker_macros",

    # Scaffolding tool
    "mling"
]

exclude = [
    # README-Tests
    "./temp/*",

    # Examples
    "examples/*",

    # Dev Tools
    ".run",

    # Tests
    "mingling_core/tests/*",
    "mingling_pathf/test"
]

[workspace.dependencies]
mingling_core = { path = "mingling_core", default-features = false } # LOCAL
# mingling_core = { version = "<<version>>", default-features = false } # VERSION

mingling_macros = { path = "mingling_macros", default-features = false } # LOCAL
# mingling_macros = { version = "<<version>>", default-features = false } # VERSION

mingling_pathf = { path = "mingling_pathf", default-features = false } # LOCAL
# mingling_pathf = { version = "<<version>>", default-features = false } # VERSION

mingling_picker = { path = "mingling_picker", default-features = false } # LOCAL
# mingling_picker = { version = "<<version>>", default-features = false } # VERSION

mingling_picker_macros = { path = "mingling_picker_macros", default-features = false } # LOCAL
# mingling_picker_macros = { version = "<<version>>", default-features = false } # VERSION

just_fmt = "0.1.2"
just_template = "0.2.0"

serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.150"
serde_yaml = "0.9.34"
toml = "1.1.2"
ron = "0.12.2"

dirs = "6.0.0"

syn = { version = "2.0.118", features = ["full", "visit-mut"] }
quote = "1.0.46"
proc-macro2 = "1.0.106"

colored = "3.1.1"
tokio = { version = "1", features = ["full"] }

log = "0.4.33"
env_logger = "0.11.11"

[workspace.package]
version = "0.3.0"
edition = "2024"
license = "MIT OR Apache-2.0"
repository = "https://github.com/mingling-rs/mingling"

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

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