34 lines
811 B
TOML
34 lines
811 B
TOML
[package]
|
|
name = "solar-sim"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
bevy = "0.16"
|
|
bevy-inspector-egui = "0.33.1"
|
|
bevy_panorbit_camera = "0.26"
|
|
big_space = { version = "0.10.0", features = ["camera"] }
|
|
chrono = "0.4.41"
|
|
futures = "0.3.31"
|
|
iyes_perf_ui = "0.5.0"
|
|
rayon = "1.11.0"
|
|
regex = "1.11.1"
|
|
reqwest = { version = "0.12", features = ["json"] }
|
|
rhorizons = "0.5.0"
|
|
ron = "0.10.1"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
thiserror = "2.0"
|
|
tokio = { version = "1.47.1", features = ["full"] }
|
|
|
|
# Enable a small amount of optimization in the dev profile.
|
|
[profile.dev]
|
|
opt-level = 1
|
|
|
|
# Enable a large amount of optimization in the dev profile for dependencies.
|
|
[profile.dev.package."*"]
|
|
opt-level = 3
|
|
|
|
[features]
|
|
default = ["bevy/bevy_dev_tools", "bevy/dynamic_linking"]
|