mirror of
https://github.com/bevyengine/bevy
synced 2024-11-22 20:53:53 +00:00
30 lines
942 B
TOML
30 lines
942 B
TOML
[package]
|
|
name = "bevy_scene"
|
|
version = "0.5.0"
|
|
edition = "2018"
|
|
authors = [
|
|
"Bevy Contributors <bevyengine@gmail.com>",
|
|
"Carter Anderson <mcanders1@gmail.com>",
|
|
]
|
|
description = "Provides scene functionality for Bevy Engine"
|
|
homepage = "https://bevyengine.org"
|
|
repository = "https://github.com/bevyengine/bevy"
|
|
license = "MIT"
|
|
keywords = ["bevy"]
|
|
|
|
[dependencies]
|
|
# bevy
|
|
bevy_app = { path = "../bevy_app", version = "0.5.0" }
|
|
bevy_asset = { path = "../bevy_asset", version = "0.5.0" }
|
|
bevy_ecs = { path = "../bevy_ecs", 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_utils = { path = "../bevy_utils", version = "0.5.0" }
|
|
|
|
# other
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
ron = "0.6.2"
|
|
uuid = { version = "0.8", features = ["v4", "serde"] }
|
|
anyhow = "1.0"
|
|
thiserror = "1.0"
|
|
parking_lot = "0.11.0"
|