montociel/Cargo.toml
2025-04-16 22:27:43 +02:00

17 lines
540 B
TOML

[package]
name = "montociel"
version = "0.1.0"
edition = "2021"
resolver = "2" # Important! wgpu/Bevy needs this!
[dependencies]
bevy = { version = "0.6", default-features = false, features = ["bevy_winit", "render", "bevy_gltf", "png"] }
bevy_rapier2d = "*"
rand = "0.8"
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"]}