-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
57 lines (49 loc) · 1.48 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
[package]
name = "sickle_ui"
version = "0.4.0"
edition = "2021"
categories = ["gui"]
description = "A widget library built for Bevy, in Bevy."
exclude = ["/assets/", "/crates/", "/.github/"]
keywords = ["bevy", "gui", "sickle", "sickle_ui"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/UmbraLuminosa/sickle_ui"
[workspace]
members = ["crates/*"]
# Enable a small amount of optimization in debug mode
[profile.dev]
opt-level = 1
# Enable high optimizations for dependencies (incl. Bevy), but not for our code:
[profile.dev.package."*"]
opt-level = 3
[features]
default = ["bevy_default_font", "observable"]
dev = ["bevy/dynamic_linking"]
disable-ui-context-placeholder-warn = [
"sickle_ui_scaffold/disable-ui-context-placeholder-warn",
]
bevy_default_font = ["bevy/default_font"]
observable = []
dev_panels = []
[dependencies]
sickle_math = { path = "crates/sickle_math", version = "0.4.0" }
sickle_macros = { path = "crates/sickle_macros", version = "0.4.0" }
sickle_ui_scaffold = { path = "crates/sickle_ui_scaffold", version = "0.4.0" }
bevy = { version = "0.14", default-features = false, features = [
"bevy_asset",
"bevy_color",
"bevy_state",
"bevy_text",
"bevy_ui",
"bevy_winit",
"bevy_pbr",
"bevy_scene",
"png",
"tonemapping_luts",
"x11",
] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.127"
[dev-dependencies]
bevy = { version = "0.14", default-features = false, features = ["bevy_gltf"] }
extension-trait = "1.0"