mirror of
https://github.com/bevyengine/bevy
synced 2024-11-15 01:18:01 +00:00
1e9a0544bd
* Fix pixel format conversion in bevy_gltf * Update renamed image::DynamicImage method calls * Remove unused GltfError variant
32 lines
1.1 KiB
TOML
32 lines
1.1 KiB
TOML
[package]
|
|
name = "bevy_gltf"
|
|
version = "0.3.0"
|
|
edition = "2018"
|
|
authors = [
|
|
"Bevy Contributors <bevyengine@gmail.com>",
|
|
"Carter Anderson <mcanders1@gmail.com>",
|
|
]
|
|
description = "Bevy Engine GLTF loading"
|
|
homepage = "https://bevyengine.org"
|
|
repository = "https://github.com/bevyengine/bevy"
|
|
license = "MIT"
|
|
keywords = ["bevy"]
|
|
|
|
[dependencies]
|
|
# bevy
|
|
bevy_app = { path = "../bevy_app", version = "0.3.0" }
|
|
bevy_asset = { path = "../bevy_asset", version = "0.3.0" }
|
|
bevy_ecs = { path = "../bevy_ecs", version = "0.3.0" }
|
|
bevy_pbr = { path = "../bevy_pbr", version = "0.3.0" }
|
|
bevy_render = { path = "../bevy_render", version = "0.3.0" }
|
|
bevy_transform = { path = "../bevy_transform", version = "0.3.0" }
|
|
bevy_math = { path = "../bevy_math", version = "0.3.0" }
|
|
bevy_scene = { path = "../bevy_scene", version = "0.3.0" }
|
|
bevy_type_registry = { path = "../bevy_type_registry", version = "0.3.0" }
|
|
|
|
# other
|
|
gltf = { version = "0.15.2", default-features = false, features = ["utils"] }
|
|
image = { version = "0.23.12", default-features = false }
|
|
thiserror = "1.0"
|
|
anyhow = "1.0"
|
|
base64 = "0.12.3"
|