bevy/crates/bevy_scene/Cargo.toml

18 lines
583 B
TOML
Raw Normal View History

[package]
2020-05-22 00:21:33 +00:00
name = "bevy_scene"
version = "0.1.0"
authors = ["Carter Anderson <mcanders1@gmail.com>"]
edition = "2018"
[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"