montociel/Cargo.toml

18 lines
540 B
TOML
Raw Permalink Normal View History

2021-11-28 17:53:11 +01:00
[package]
name = "montociel"
version = "0.1.0"
edition = "2021"
2025-04-16 22:27:43 +02:00
resolver = "2" # Important! wgpu/Bevy needs this!
2021-11-28 17:53:11 +01:00
[dependencies]
2025-04-16 22:27:43 +02:00
bevy = { version = "0.6", default-features = false, features = ["bevy_winit", "render", "bevy_gltf", "png"] }
2021-11-28 17:53:11 +01:00
bevy_rapier2d = "*"
2021-11-28 17:54:30 +01:00
rand = "0.8"
2025-04-16 22:27:43 +02:00
winit = "0.26.1" # newer version not ok with new rustc version
# Dependencies for native only.
# [target.'cfg(not(target_arch = "wasm32"))'.dependencies]
# bevy = {version = "0.5", default-features = false, features = ["bevy_wgpu", "bevy_winit", "render", "x11"]}