bevy/crates/bevy_gltf/Cargo.toml

26 lines
670 B
TOML
Raw Normal View History

[package]
name = "bevy_gltf"
2020-09-20 22:58:32 +00:00
version = "0.2.1"
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 = "Bevy Engine GLTF loading"
homepage = "https://bevyengine.org"
repository = "https://github.com/bevyengine/bevy"
license = "MIT"
keywords = ["bevy"]
[dependencies]
# bevy
2020-09-20 22:58:32 +00:00
bevy_app = { path = "../bevy_app", version = "0.2.1" }
bevy_asset = { path = "../bevy_asset", version = "0.2.1" }
bevy_render = { path = "../bevy_render", version = "0.2.1" }
# other
gltf = { version = "0.15.2", default-features = false, features = ["utils"] }
thiserror = "1.0"
anyhow = "1.0"
base64 = "0.12.3"