mirror of
https://github.com/bevyengine/bevy
synced 2024-11-23 05:03:47 +00:00
21 lines
No EOL
634 B
TOML
21 lines
No EOL
634 B
TOML
[package]
|
|
name = "bevy_gltf"
|
|
version = "0.1.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.1" }
|
|
bevy_asset = { path = "../bevy_asset", version = "0.1" }
|
|
bevy_render = { path = "../bevy_render", version = "0.1" }
|
|
|
|
# other
|
|
gltf = { version = "0.15.2", default-features = false, features = ["utils"] }
|
|
thiserror = "1.0"
|
|
anyhow = "1.0" |