-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (30 loc) · 775 Bytes
/
Copy pathCargo.toml
File metadata and controls
34 lines (30 loc) · 775 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
[workspace]
members = ["crates/bevy_sprinkles", "crates/bevy_sprinkles_editor", "benches"]
resolver = "3"
[workspace.lints.clippy]
type_complexity = "allow"
too_many_arguments = "allow"
[profile.dev]
opt-level = 1
[profile.dev.package."*"]
opt-level = 3
[workspace.dependencies]
bevy = { version = "0.19", default-features = false, features = [
"default_app",
"default_platform",
"3d_api",
"3d_bevy_render",
"ui_api",
"ui_bevy_render",
"picking",
"bevy_ui_widgets",
"system_clipboard",
"bevy_scene",
# "reflect_auto_register",
] }
serde = { version = "1", features = ["derive"] }
ron = "0.10"
thiserror = "2"
bytemuck = { version = "1.14", features = ["derive"] }
bitflags = { version = "2", features = ["serde"] }
paste = "1"