mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 07:04:33 +00:00
28 lines
No EOL
801 B
TOML
28 lines
No EOL
801 B
TOML
[package]
|
|
name = "bevy_wgpu"
|
|
version = "0.1.0"
|
|
authors = ["Carter Anderson <mcanders1@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
[features]
|
|
default = ["bevy_winit"]
|
|
|
|
[dependencies]
|
|
# bevy
|
|
bevy_app = { path = "../bevy_app" }
|
|
bevy_asset = { path = "../bevy_asset" }
|
|
bevy_core = { path = "../bevy_core" }
|
|
bevy_diagnostic = { path = "../bevy_diagnostic" }
|
|
bevy_render = { path = "../bevy_render" }
|
|
bevy_window = { path = "../bevy_window" }
|
|
bevy_winit = { path = "../bevy_winit", optional = true }
|
|
legion = { path = "../bevy_legion" }
|
|
|
|
# render
|
|
wgpu = { git = "https://github.com/gfx-rs/wgpu-rs.git", rev = "f79ee512eb3d0cb50390787b58694d627eee6c34" }
|
|
# wgpu = { version = "0.5.0" }
|
|
|
|
futures = "0.3"
|
|
log = { version = "0.4", features = ["release_max_level_info"] }
|
|
crossbeam-channel = "0.4.2"
|
|
crossbeam-utils = "0.7.2" |