-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (35 loc) · 746 Bytes
/
Cargo.toml
File metadata and controls
47 lines (35 loc) · 746 Bytes
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
[package]
name = "bullet_hell"
version = "0.3.0"
edition = "2024"
[lints.clippy]
all = "warn"
needless_pass_by_value = { level = "allow", priority = 1 }
[dependencies]
rand = "0.9.2"
bevy_enhanced_input = "0.20.0"
[dependencies.avian2d]
version = "0.4.1"
default-features = false
features = ["2d", "parry-f32", "parallel", "simd"]
[dependencies.bevy]
version = "0.17.3"
default-features = false
features = [
# https://docs.rs/bevy/latest/bevy/
"bevy_core_pipeline",
"bevy_winit",
"bevy_sprite",
"bevy_sprite_render",
"bevy_ui",
"bevy_ui_render",
"multi_threaded",
"dynamic_linking",
]
[profile.release]
lto = true
opt-level = "s"
[profile.dev]
opt-level = 0
[profile.dev.package."*"]
opt-level = 3