-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
58 lines (48 loc) · 1.02 KB
/
Cargo.toml
File metadata and controls
58 lines (48 loc) · 1.02 KB
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
[package]
name = "bevy_factory"
version = "0.1.0"
edition = "2024"
[dependencies]
bevy = { version = "0.16.1", features = ["wayland"] }
bevy-inspector-egui = "0.33.1"
bevy_aseprite_ultra = "0.6.1"
humantime-serde = "1.1.1"
rand = "0.9.2"
serde = { version = "1.0.219", features = ["derive"] }
thiserror = "2.0.14"
toml = "0.9.5"
[target.wasm32-unknown-unknown.dependencies]
getrandom = { version = "0.3", features = ["wasm_js"] }
[features]
default = ["dev_native"]
dev = [
"bevy/dynamic_linking",
"bevy/bevy_dev_tools",
"bevy/bevy_ui_debug",
"bevy/track_location",
]
dev_native = [
"dev",
"bevy/file_watcher",
"bevy/embedded_watcher",
]
[profile.dev]
opt-level = 1
[profile.dev.package."*"]
opt-level = 3
[profile.dev.package.wgpu-types]
debug-assertions = false
[profile.release]
codegen-units = 1
lto = "thin"
[profile.web-release]
inherits = "release"
opt-level = "s"
strip = "debuginfo"
[profile.ci]
inherits = "dev"
opt-level = 0
debug = "line-tables-only"
codegen-units = 4
[profile.ci.package."*"]
opt-level = 0