3ebd185a7e
Move trx-ft8 and trx-wspr into src/decoders/ alongside a new trx-aprs crate that extracts the Bell 202/AX.25 decoder from trx-server, giving all three modems a consistent crate-per-decoder layout. - src/decoders/trx-ft8/ (moved from src/trx-ft8/) - src/decoders/trx-wspr/ (moved from src/trx-wspr/) - src/decoders/trx-aprs/ (new — Bell 202 AFSK + AX.25/APRS decoder) - trx-ft8/build.rs: fix external/ft8_lib relative path after move - trx-server: drop decode::aprs module, use trx_aprs::AprsDecoder - AprsPacket stays in trx-core (mirrors Ft8Message / WsprMessage) - Workspace Cargo.toml updated with new member paths Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
31 lines
912 B
TOML
31 lines
912 B
TOML
# SPDX-FileCopyrightText: 2025 Stanislaw Grams <stanislawgrams@gmail.com>
|
|
#
|
|
# SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
[package]
|
|
name = "trx-server"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
build = "build.rs"
|
|
|
|
[dependencies]
|
|
tokio = { workspace = true, features = ["full"] }
|
|
tokio-serial = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
toml = { workspace = true }
|
|
tracing = { workspace = true }
|
|
clap = { workspace = true, features = ["derive"] }
|
|
dirs = "6"
|
|
chrono = { version = "0.4", default-features = false, features = ["clock"] }
|
|
bytes = "1"
|
|
cpal = "0.15"
|
|
opus = "0.3"
|
|
trx-app = { path = "../trx-app" }
|
|
trx-backend = { path = "trx-backend" }
|
|
trx-core = { path = "../trx-core" }
|
|
trx-aprs = { path = "../decoders/trx-aprs" }
|
|
trx-ft8 = { path = "../decoders/trx-ft8" }
|
|
trx-wspr = { path = "../decoders/trx-wspr" }
|
|
trx-protocol = { path = "../trx-protocol" }
|