2020-04-06 03:19:02 +00:00
|
|
|
[package]
|
|
|
|
name = "bevy_render"
|
2021-04-06 18:48:48 +00:00
|
|
|
version = "0.5.0"
|
2020-04-06 03:19:02 +00:00
|
|
|
edition = "2018"
|
2020-09-10 19:54:24 +00:00
|
|
|
authors = [
|
|
|
|
"Bevy Contributors <bevyengine@gmail.com>",
|
|
|
|
"Carter Anderson <mcanders1@gmail.com>",
|
|
|
|
]
|
2020-08-10 00:24:27 +00:00
|
|
|
description = "Provides rendering functionality for Bevy Engine"
|
|
|
|
homepage = "https://bevyengine.org"
|
|
|
|
repository = "https://github.com/bevyengine/bevy"
|
|
|
|
license = "MIT"
|
|
|
|
keywords = ["bevy"]
|
2020-04-06 03:19:02 +00:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
# bevy
|
2021-04-06 18:48:48 +00:00
|
|
|
bevy_app = { path = "../bevy_app", version = "0.5.0" }
|
|
|
|
bevy_asset = { path = "../bevy_asset", version = "0.5.0" }
|
|
|
|
bevy_core = { path = "../bevy_core", version = "0.5.0" }
|
|
|
|
bevy_derive = { path = "../bevy_derive", version = "0.5.0" }
|
|
|
|
bevy_ecs = { path = "../bevy_ecs", version = "0.5.0" }
|
|
|
|
bevy_math = { path = "../bevy_math", version = "0.5.0" }
|
|
|
|
bevy_reflect = { path = "../bevy_reflect", version = "0.5.0", features = ["bevy"] }
|
|
|
|
bevy_transform = { path = "../bevy_transform", version = "0.5.0" }
|
|
|
|
bevy_window = { path = "../bevy_window", version = "0.5.0" }
|
|
|
|
bevy_utils = { path = "../bevy_utils", version = "0.5.0" }
|
2020-04-06 03:19:02 +00:00
|
|
|
|
|
|
|
# rendering
|
2020-11-22 03:08:02 +00:00
|
|
|
image = { version = "0.23.12", default-features = false }
|
2020-04-06 03:19:02 +00:00
|
|
|
|
|
|
|
# misc
|
2020-05-26 01:27:04 +00:00
|
|
|
serde = { version = "1", features = ["derive"] }
|
2020-09-10 19:54:24 +00:00
|
|
|
bitflags = "1.2.1"
|
2021-05-06 00:41:18 +00:00
|
|
|
smallvec = { version = "1.6", features = ["union", "const_generics"] }
|
2021-05-05 19:14:39 +00:00
|
|
|
once_cell = "1.4.1" # TODO: replace once_cell with std equivalent if/when this lands: https://github.com/rust-lang/rfcs/pull/2788
|
2020-09-10 19:54:24 +00:00
|
|
|
downcast-rs = "1.2.0"
|
2020-05-16 02:30:02 +00:00
|
|
|
thiserror = "1.0"
|
2020-08-11 06:30:42 +00:00
|
|
|
anyhow = "1.0"
|
2020-08-30 18:27:37 +00:00
|
|
|
hex = "0.4.2"
|
2021-05-18 18:56:15 +00:00
|
|
|
hexasphere = "3.4"
|
2020-09-10 19:54:24 +00:00
|
|
|
parking_lot = "0.11.0"
|
2020-08-11 06:30:42 +00:00
|
|
|
|
2020-10-16 18:12:55 +00:00
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
|
|
|
spirv-reflect = "0.2.3"
|
|
|
|
|
2021-04-19 21:28:30 +00:00
|
|
|
[target.'cfg(any(all(target_arch="x86_64", target_os="linux", target_env="gnu"), all(target_arch="x86_64", target_os="macos"), all(target_arch="aarch64", target_os="android"), all(target_arch="armv7", target_os="androidabi"), all(target_arch="x86_64", target_os="windows", target_env="msvc")))'.dependencies]
|
2020-11-03 00:30:30 +00:00
|
|
|
bevy-glsl-to-spirv = "0.2.0"
|
2020-09-01 18:06:15 +00:00
|
|
|
|
2021-04-19 21:28:30 +00:00
|
|
|
[target.'cfg(not(any(target_arch = "wasm32", all(target_arch="x86_64", target_os="linux", target_env="gnu"), all(target_arch="x86_64", target_os="macos"), all(target_arch="aarch64", target_os="android"), all(target_arch="armv7", target_os="androidabi"), all(target_arch="x86_64", target_os="windows", target_env="msvc"))))'.dependencies]
|
2020-11-26 02:46:13 +00:00
|
|
|
shaderc = "0.7.0"
|
2020-09-01 18:06:15 +00:00
|
|
|
|
2020-08-11 06:30:42 +00:00
|
|
|
[features]
|
|
|
|
png = ["image/png"]
|
2020-08-13 04:13:56 +00:00
|
|
|
hdr = ["image/hdr"]
|
2020-12-10 02:34:27 +00:00
|
|
|
dds = ["image/dds"]
|
|
|
|
tga = ["image/tga"]
|
|
|
|
jpeg = ["image/jpeg"]
|
2020-12-23 22:53:02 +00:00
|
|
|
bmp = ["image/bmp"]
|