bevy/crates/bevy_winit/Cargo.toml

15 lines
497 B
TOML
Raw Normal View History

2020-04-06 03:19:02 +00:00
[package]
name = "bevy_winit"
version = "0.1.0"
authors = ["Carter Anderson <mcanders1@gmail.com>"]
edition = "2018"
[dependencies]
bevy_app = { path = "../bevy_app" }
2020-07-10 04:18:35 +00:00
bevy_ecs = { path = "../bevy_ecs" }
2020-04-06 03:19:02 +00:00
bevy_input = { path = "../bevy_input" }
bevy_window = { path = "../bevy_window" }
winit = { git = "https://github.com/rust-windowing/winit/", default-features = false, features = ["x11"] }
bevy_math = { path = "../bevy_math" }
2020-04-06 03:19:02 +00:00
log = { version = "0.4", features = ["release_max_level_info"] }