mirror of
https://github.com/bevyengine/bevy
synced 2024-11-14 08:58:04 +00:00
23 lines
No EOL
652 B
TOML
23 lines
No EOL
652 B
TOML
[package]
|
|
name = "bevy_asset"
|
|
version = "0.1.0"
|
|
authors = ["Carter Anderson <mcanders1@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
[features]
|
|
default = ["filesystem_watcher"]
|
|
filesystem_watcher = ["notify"]
|
|
|
|
[dependencies]
|
|
bevy_app = { path = "../bevy_app" }
|
|
bevy_core = { path = "../bevy_core" }
|
|
bevy_component_registry = { path = "../bevy_component_registry" }
|
|
bevy_property = { path = "../bevy_property" }
|
|
legion = { path = "../bevy_legion" }
|
|
|
|
uuid = { version = "0.8", features = ["v4", "serde"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
crossbeam-channel = "0.4.2"
|
|
anyhow = "1.0"
|
|
thiserror = "1.0"
|
|
notify = { version = "5.0.0-pre.2", optional = true } |