2020-04-06 23:09:58 +00:00
|
|
|
[package]
|
2020-05-22 00:21:33 +00:00
|
|
|
name = "bevy_scene"
|
2020-04-06 23:09:58 +00:00
|
|
|
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" }
|
2020-05-28 02:27:55 +00:00
|
|
|
bevy_type_registry = { path = "../bevy_type_registry" }
|
2020-05-22 22:36:48 +00:00
|
|
|
bevy_property = { path = "../bevy_property" }
|
2020-05-29 22:51:36 +00:00
|
|
|
|
2020-05-19 19:20:37 +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"] }
|
2020-05-24 05:07:17 +00:00
|
|
|
anyhow = "1.0"
|
|
|
|
thiserror = "1.0"
|