cyber_rider/Cargo.toml

34 lines
693 B
TOML
Raw Normal View History

2021-11-06 05:32:55 +00:00
[package]
name = "cyber_rider"
version = "0.1.0"
edition = "2021"
2022-01-14 06:05:51 +00:00
[dependencies]
rand = "0.8"
2023-03-10 01:50:14 +00:00
# bevy_polyline = "0.4"
2024-07-12 22:35:37 +00:00
noise = "0.9"
hexasphere = "14"
2024-08-04 19:44:22 +00:00
#wgpu = "0.20"
2024-07-12 22:35:37 +00:00
# bevy-inspector-egui = "0.18"
2022-02-22 01:04:46 +00:00
[features]
inspector = []
2021-11-06 05:32:55 +00:00
2022-01-07 00:01:37 +00:00
[dependencies.bevy]
2024-07-12 22:35:37 +00:00
version = "0.14"
default-features = true
features = ["bevy_dev_tools"]
2022-01-07 00:01:37 +00:00
2024-07-12 22:35:37 +00:00
[dependencies.avian3d]
2024-08-04 19:44:22 +00:00
default-features = false
2024-07-12 22:35:37 +00:00
version = "0.1"
2024-08-04 19:44:22 +00:00
features = ["3d", "f32", "parry-f32", "debug-plugin", "default-collider", "collider-from-mesh"]
2022-01-07 00:01:37 +00:00
2022-01-14 01:30:51 +00:00
# Maybe also enable only a small amount of optimization for our code:
[profile.dev]
opt-level = 1
2022-01-14 06:05:51 +00:00
# Enable optimizations for dependencies (incl. Bevy), but not for our code:
[profile.dev.package."*"]
opt-level = 3