bevy/crates/bevy_scene/Cargo.toml

23 lines
810 B
TOML
Raw Normal View History

[package]
2020-05-22 00:21:33 +00:00
name = "bevy_scene"
version = "0.1.0"
edition = "2018"
2020-08-10 00:24:27 +00:00
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]
2020-05-22 00:21:33 +00:00
bevy_app = { path = "../bevy_app" }
2020-07-10 04:18:35 +00:00
bevy_ecs = { path = "../bevy_ecs" }
2020-05-22 00:21:33 +00:00
bevy_asset = { path = "../bevy_asset" }
bevy_type_registry = { path = "../bevy_type_registry" }
bevy_property = { path = "../bevy_property" }
2020-05-29 22:51:36 +00:00
serde = { version = "1.0", features = ["derive"]}
2020-05-29 23:06:23 +00:00
ron = { git = "https://github.com/ron-rs/ron", rev = "35355ba7eb495f07282162826c29873154c2fa14" }
2020-05-29 22:51:36 +00:00
uuid = { version = "0.8", features = ["v4", "serde"] }
anyhow = "1.0"
thiserror = "1.0"