mirror of
https://github.com/seemueller-io/yachtpit.git
synced 2025-09-08 22:46:45 +00:00

- Introduced a new crate, `datalink-provider`, to support real AIS data sources (serial, TCP/UDP, file replay). - Integrated it into the workspace and used it in the `AIS` system, replacing the simulation datalink. - Updated dependencies and lock file.
22 lines
448 B
TOML
22 lines
448 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" }
|
|
datalink-provider = { path = "../datalink-provider" }
|