bevy/crates/bevy_render/Cargo.toml

37 lines
1.1 KiB
TOML
Raw Normal View History

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" }
bevy_type_registry = { path = "../bevy_type_registry" }
bevy_core = { path = "../bevy_core" }
2020-04-06 03:19:02 +00:00
bevy_derive = { path = "../bevy_derive" }
2020-07-10 04:18:35 +00:00
bevy_ecs = { path = "../bevy_ecs" }
bevy_property = { path = "../bevy_property" }
bevy_transform = { path = "../bevy_transform" }
2020-04-06 03:19:02 +00:00
bevy_window = { path = "../bevy_window" }
# rendering
spirv-reflect = "0.2.3"
2020-05-29 00:54:58 +00:00
glsl-to-spirv = { git = "https://github.com/cart/glsl-to-spirv" }
# 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"] }
bevy_math = { path = "../bevy_math" }
serde = { version = "1", features = ["derive"] }
2020-04-06 03:19:02 +00:00
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
once_cell = "1.4.0"
downcast-rs = "1.1.1"
2020-05-16 02:30:02 +00:00
thiserror = "1.0"
anyhow = "1.0"