mirror of
https://github.com/bevyengine/bevy
synced 2024-11-13 00:17:27 +00:00
37 lines
No EOL
1.1 KiB
TOML
37 lines
No EOL
1.1 KiB
TOML
[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" }
|
|
bevy_derive = { path = "../bevy_derive" }
|
|
bevy_ecs = { path = "../bevy_ecs" }
|
|
bevy_property = { path = "../bevy_property" }
|
|
bevy_transform = { path = "../bevy_transform" }
|
|
bevy_window = { path = "../bevy_window" }
|
|
|
|
# rendering
|
|
spirv-reflect = "0.2.3"
|
|
glsl-to-spirv = { git = "https://github.com/cart/glsl-to-spirv" }
|
|
# TODO: move this to its own crate
|
|
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"] }
|
|
bitflags = "1.0"
|
|
smallvec = "1.4.0"
|
|
# 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"
|
|
thiserror = "1.0"
|
|
anyhow = "1.0" |