-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
94 lines (87 loc) · 2.75 KB
/
Cargo.toml
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
88
89
90
91
92
93
94
[workspace]
resolver = "2"
exclude = ["assets/", "the_book/"]
members = [
"examples/chirp_menu",
"examples/custom_dsl",
"examples/dsl_and_chirp",
"examples/hello_world",
"examples/simple_menu",
"examples/sprite_debug",
"examples/templates",
"dsl",
"chirp",
"chirp_macros",
"layout",
"sprite",
"ui",
]
[workspace.package]
edition = "2021"
authors = ["Nicola Papale"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/nicopap/cuicui_layout"
[workspace.dependencies]
anyhow = "1.0.72"
bevy_mod_sysfail = "5"
bevy = { version = "0.12.0", default-features = false }
# TODO make this optional as well
css-color = "0.2.5"
# TODO make this optional, only used in debug module of cuicui_layout
enumset = "1.1"
# This is only for the binary examples, we shouldn't set the log level for the
# library crates
log = { version = "0.4.20", features = ["release_max_level_warn"] }
miette = "5.10.0"
pretty_assertions = "1.4.0"
proc-macro2 = "1.0.66"
quote = "1.0.32"
ron = "0.8.1"
syn = { version = "2.0.28", default-features = false, features = ["full", "parsing", "proc-macro", "printing", "clone-impls"] }
smallvec = { version = "1.11.0", features = ["union", "const_generics"] }
thiserror = "1.0.44"
tracing = { version = "0.1.37", features = ["release_max_level_warn"] }
winnow = "0.5.15"
cuicui_dsl = { version = "0.12.0", path = "./dsl", default-features = false }
cuicui_chirp = { version = "0.12.0", path = "./chirp", default-features = false }
cuicui_chirp_macros = { version = "0.12.0", path = "./chirp_macros" }
cuicui_layout = { version = "0.12.0", path = "./layout", default-features = false }
cuicui_layout_bevy_sprite = { version = "0.12.0", path = "./sprite", default-features = false }
cuicui_layout_bevy_ui = { version = "0.12.0", path = "./ui", default-features = false }
cuicui = { version = "0.8.0", path = "./cuicui" }
# For examples only
bevy_framepace = "0.14.1"
bevy-inspector-egui = "0.21"
bevy_mod_picking = { version = "0.17.0", default-features = false, features = [
"backend_bevy_ui",
] }
# bevy-ui-navigation = "0.32.0"
rust-hsluv = "0.1.4"
[workspace.metadata.release]
dependent-version = "upgrade"
# This is only to profile & analyze ASM output of the binary examples
[profile.release]
codegen-units = 1
opt-level = 3
lto = "fat"
split-debuginfo = "packed"
debug = 1
# Speed up tests (set opt-level of packages not used in tests so that
# hopefully cargo re-uses the same artifacts)
[profile.test.package.bevy_ecs]
opt-level = 1
[profile.test.package.bevy_render]
opt-level = 1
[profile.test.package.image]
opt-level = 1
[profile.test.package.png]
opt-level = 1
# Speed up dev
[profile.dev.package.bevy_ecs]
opt-level = 1
[profile.dev.package.bevy_render]
opt-level = 1
[profile.dev.package.image]
opt-level = 1
[profile.dev.package.png]
opt-level = 1