mirror of
https://github.com/bevyengine/bevy
synced 2024-12-26 21:13:09 +00:00
25 lines
No EOL
910 B
TOML
25 lines
No EOL
910 B
TOML
[package]
|
|
name = "bevy_scene"
|
|
version = "0.1.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.1" }
|
|
bevy_asset = { path = "../bevy_asset", version = "0.1" }
|
|
bevy_ecs = { path = "../bevy_ecs", version = "0.1" }
|
|
bevy_property = { path = "../bevy_property", version = "0.1" }
|
|
bevy_type_registry = { path = "../bevy_type_registry", version = "0.1" }
|
|
|
|
# other
|
|
serde = { version = "1.0", features = ["derive"]}
|
|
ron = { git = "https://github.com/ron-rs/ron", rev = "35355ba7eb495f07282162826c29873154c2fa14" }
|
|
uuid = { version = "0.8", features = ["v4", "serde"] }
|
|
anyhow = "1.0"
|
|
thiserror = "1.0" |