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]
|
2022-01-26 21:19:28 +00:00
|
|
|
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"
|
|
|
|
wgpu = "0.20"
|
|
|
|
# bevy-inspector-egui = "0.18"
|
2022-02-22 01:04:46 +00:00
|
|
|
|
2022-02-28 23:14:38 +00:00
|
|
|
[features]
|
2023-01-26 01:10:23 +00:00
|
|
|
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]
|
|
|
|
default-features = true
|
|
|
|
version = "0.1"
|
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
|
|
|
|
2022-02-18 06:40:35 +00:00
|
|
|
# Enable optimizations for dependencies (incl. Bevy), but not for our code:
|
|
|
|
[profile.dev.package."*"]
|
|
|
|
opt-level = 3
|