mirror of
https://github.com/seemueller-io/yachtpit.git
synced 2025-09-08 22:46:45 +00:00
24 lines
506 B
TOML
24 lines
506 B
TOML
[package]
|
|
name = "systems"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
bevy = { workspace = true, features = [
|
|
"bevy_asset",
|
|
"bevy_color",
|
|
"bevy_core_pipeline",
|
|
"bevy_render",
|
|
"bevy_sprite",
|
|
"bevy_text",
|
|
"bevy_ui",
|
|
"bevy_window",
|
|
] }
|
|
rand = { version = "0.8.3" }
|
|
components = { path = "../components" }
|
|
datalink = { path = "../datalink" }
|
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
|
datalink-provider = { path = "../datalink-provider" }
|