mirror of
https://github.com/bevyengine/bevy
synced 2024-11-23 05:03:47 +00:00
15 lines
No EOL
474 B
TOML
15 lines
No EOL
474 B
TOML
[package]
|
|
name = "bevy_winit"
|
|
version = "0.1.0"
|
|
authors = ["Carter Anderson <mcanders1@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
bevy_app = { path = "../bevy_app" }
|
|
bevy_ecs = { path = "../bevy_ecs" }
|
|
bevy_input = { path = "../bevy_input" }
|
|
bevy_window = { path = "../bevy_window" }
|
|
|
|
winit = { git = "https://github.com/rust-windowing/winit/", default-features = false, features = ["x11"] }
|
|
glam = "0.8.7"
|
|
log = { version = "0.4", features = ["release_max_level_info"] } |