aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 2954f691cfdb9ebfb6864016650f687339972366 (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
[workspace]
resolver = "2"
members = ["mingling", "mingling_core", "mingling_macros", "mingling_pathf", "mling"]
exclude = [
    # README-Tests
    "./temp/*",

    # Examples
    "examples/*",

    # Dev Tools
    "dev_tools",

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

[workspace.dependencies]
mingling_core = { path = "mingling_core", default-features = false }
mingling_macros = { path = "mingling_macros", default-features = false }
mingling_pathf = { path = "mingling_pathf", default-features = false }

just_fmt = "0.1.2"
just_template = "0.1.3"

serde = { version = "1.0", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"
toml = "1.1.2"
ron = "0.12.1"

dirs = "6"

syn = { version = "2.0", features = ["full", "visit-mut"] }
quote = "1.0"
proc-macro2 = "1.0"

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

log = "0.4"
env_logger = "0.11"

[workspace.package]
version = "0.2.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