mirror of
https://github.com/seemueller-io/yachtpit.git
synced 2025-09-08 22:46:45 +00:00
Add datalink-provider
crate for real-world AIS data handling
- 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.
This commit is contained in:
15
crates/datalink-provider/Cargo.toml
Normal file
15
crates/datalink-provider/Cargo.toml
Normal file
@@ -0,0 +1,15 @@
|
||||
[package]
|
||||
name = "datalink-provider"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
datalink = { path = "../datalink" }
|
||||
tokio = { version = "1.0", features = ["full"] }
|
||||
tokio-serial = "5.4"
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
serde_json = "1.0"
|
||||
thiserror = "1.0"
|
||||
log = "0.4"
|
||||
bytes = "1.0"
|
||||
futures = "0.3"
|
Reference in New Issue
Block a user