2020-04-06 03:19:02 +00:00
|
|
|
[package]
|
|
|
|
name = "bevy_render"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Carter Anderson <mcanders1@gmail.com>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
# bevy
|
|
|
|
bevy_app = { path = "../bevy_app" }
|
|
|
|
bevy_asset = { path = "../bevy_asset" }
|
2020-05-26 01:27:04 +00:00
|
|
|
bevy_component_registry = { path = "../bevy_component_registry" }
|
2020-05-26 00:50:17 +00:00
|
|
|
bevy_core = { path = "../bevy_core" }
|
2020-04-06 03:19:02 +00:00
|
|
|
bevy_derive = { path = "../bevy_derive" }
|
2020-05-26 00:50:17 +00:00
|
|
|
bevy_property = { path = "../bevy_property" }
|
|
|
|
bevy_transform = { path = "../bevy_transform" }
|
2020-04-06 03:19:02 +00:00
|
|
|
bevy_window = { path = "../bevy_window" }
|
|
|
|
legion = { path = "../bevy_legion" }
|
|
|
|
|
|
|
|
# rendering
|
|
|
|
spirv-reflect = "0.2.3"
|
2020-05-02 20:57:22 +00:00
|
|
|
glsl-to-spirv = { path = "../glsl-to-spirv" }
|
2020-04-24 00:24:41 +00:00
|
|
|
# TODO: move this to its own crate
|
2020-04-06 03:19:02 +00:00
|
|
|
png = "0.16.0"
|
|
|
|
|
|
|
|
# misc
|
|
|
|
log = { version = "0.4", features = ["release_max_level_info"] }
|
|
|
|
uuid = { version = "0.8", features = ["v4", "serde"] }
|
2020-05-03 23:55:17 +00:00
|
|
|
glam = { path = "../bevy_glam" }
|
2020-05-26 01:27:04 +00:00
|
|
|
serde = { version = "1", features = ["derive"] }
|
2020-04-06 03:19:02 +00:00
|
|
|
zerocopy = "0.3"
|
|
|
|
bitflags = "1.0"
|
2020-05-02 17:27:22 +00:00
|
|
|
smallvec = "1.4.0"
|
2020-04-06 03:19:02 +00:00
|
|
|
# TODO: replace once_cell with std equivalent if/when this lands: https://github.com/rust-lang/rfcs/pull/2788
|
2020-04-15 22:52:29 +00:00
|
|
|
once_cell = "1.3.1"
|
2020-04-19 17:08:47 +00:00
|
|
|
downcast-rs = "1.1.1"
|
2020-05-16 02:30:02 +00:00
|
|
|
thiserror = "1.0"
|
|
|
|
anyhow = "1.0"
|