SolarEngine/Cargo.toml

27 lines
553 B
TOML
Raw Normal View History

2025-01-13 13:14:59 +01:00
[package]
name = "orbital_simulation"
version = "0.1.0"
edition = "2021"
[dependencies]
2025-01-13 17:49:06 +01:00
cgmath = "0.18"
2025-01-13 13:14:59 +01:00
winit = { version = "0.29", features = ["rwh_05"] }
env_logger = "0.10"
log = "0.4"
2025-01-13 17:49:06 +01:00
pollster = "0.3"
2025-01-13 13:14:59 +01:00
wgpu = "22.0"
2025-01-13 17:49:06 +01:00
bytemuck = { version = "1.16", features = [ "derive" ] }
2025-01-13 22:28:15 +01:00
anyhow = "1.0"
tobj = { version = "3.2", default-features = false, features = ["async"]}
fs_extra = "1.2"
glob = "0.3"
[dependencies.image]
version = "0.24"
default-features = false
features = ["png", "jpeg"]
[build-dependencies]
anyhow = "1.0"
fs_extra = "1.2"
glob = "0.3"