2021-06-02 02:59:17 +00:00
|
|
|
[package]
|
|
|
|
name = "bevy_pbr2"
|
|
|
|
version = "0.5.0"
|
|
|
|
edition = "2018"
|
|
|
|
authors = [
|
|
|
|
"Bevy Contributors <bevyengine@gmail.com>",
|
|
|
|
"Carter Anderson <mcanders1@gmail.com>",
|
|
|
|
]
|
|
|
|
description = "Adds PBR rendering to Bevy Engine"
|
|
|
|
homepage = "https://bevyengine.org"
|
|
|
|
repository = "https://github.com/bevyengine/bevy"
|
|
|
|
license = "MIT"
|
|
|
|
keywords = ["bevy"]
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
# bevy
|
|
|
|
bevy_app = { path = "../../crates/bevy_app", version = "0.5.0" }
|
|
|
|
bevy_asset = { path = "../../crates/bevy_asset", version = "0.5.0" }
|
|
|
|
bevy_core = { path = "../../crates/bevy_core", version = "0.5.0" }
|
|
|
|
bevy_ecs = { path = "../../crates/bevy_ecs", version = "0.5.0" }
|
|
|
|
bevy_math = { path = "../../crates/bevy_math", version = "0.5.0" }
|
|
|
|
bevy_reflect = { path = "../../crates/bevy_reflect", version = "0.5.0", features = ["bevy"] }
|
|
|
|
bevy_render2 = { path = "../bevy_render2", version = "0.5.0" }
|
|
|
|
bevy_transform = { path = "../../crates/bevy_transform", version = "0.5.0" }
|
|
|
|
bevy_utils = { path = "../../crates/bevy_utils", version = "0.5.0" }
|
|
|
|
|
|
|
|
# other
|
2021-06-27 23:10:23 +00:00
|
|
|
bitflags = "1.2"
|
2021-06-02 02:59:17 +00:00
|
|
|
# direct dependency required for derive macro
|
|
|
|
bytemuck = { version = "1", features = ["derive"] }
|
2021-06-27 23:10:23 +00:00
|
|
|
crevice = { path = "../../crates/crevice" }
|
2021-07-01 19:46:11 +00:00
|
|
|
wgpu = "0.9"
|