mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 15:14:50 +00:00
18 lines
No EOL
583 B
TOML
18 lines
No EOL
583 B
TOML
[package]
|
|
name = "bevy_scene"
|
|
version = "0.1.0"
|
|
authors = ["Carter Anderson <mcanders1@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
bevy_app = { path = "../bevy_app" }
|
|
bevy_ecs = { path = "../bevy_ecs" }
|
|
bevy_asset = { path = "../bevy_asset" }
|
|
bevy_type_registry = { path = "../bevy_type_registry" }
|
|
bevy_property = { path = "../bevy_property" }
|
|
|
|
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" |