mirror of
https://github.com/bevyengine/bevy
synced 2024-11-15 01:18:01 +00:00
46 lines
1.5 KiB
TOML
46 lines
1.5 KiB
TOML
[package]
|
|
name = "bevy_render"
|
|
version = "0.1.3"
|
|
edition = "2018"
|
|
authors = ["Bevy Contributors <bevyengine@gmail.com>", "Carter Anderson <mcanders1@gmail.com>"]
|
|
description = "Provides rendering functionality for Bevy Engine"
|
|
homepage = "https://bevyengine.org"
|
|
repository = "https://github.com/bevyengine/bevy"
|
|
license = "MIT"
|
|
keywords = ["bevy"]
|
|
|
|
[dependencies]
|
|
# bevy
|
|
bevy_app = { path = "../bevy_app", version = "0.1" }
|
|
bevy_asset = { path = "../bevy_asset", version = "0.1" }
|
|
bevy_core = { path = "../bevy_core", version = "0.1" }
|
|
bevy_derive = { path = "../bevy_derive", version = "0.1" }
|
|
bevy_ecs = { path = "../bevy_ecs", version = "0.1" }
|
|
bevy_math = { path = "../bevy_math", version = "0.1" }
|
|
bevy_property = { path = "../bevy_property", version = "0.1" }
|
|
bevy_transform = { path = "../bevy_transform", version = "0.1" }
|
|
bevy_type_registry = { path = "../bevy_type_registry", version = "0.1" }
|
|
bevy_window = { path = "../bevy_window", version = "0.1" }
|
|
|
|
# rendering
|
|
spirv-reflect = "0.2.3"
|
|
bevy-glsl-to-spirv = "0.1.7"
|
|
image = { version = "0.23", default-features = false }
|
|
|
|
# misc
|
|
log = { version = "0.4", features = ["release_max_level_info"] }
|
|
uuid = { version = "0.8", features = ["v4", "serde"] }
|
|
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"
|
|
hexasphere = "1.0.0"
|
|
parking_lot = "0.10"
|
|
|
|
[features]
|
|
png = ["image/png"]
|
|
hdr = ["image/hdr"]
|