f4b92a0f20
Move the Goertzel-based CW decoder out of trx-server::decode::cw into a dedicated src/decoders/trx-cw crate, matching the layout of trx-aprs, trx-ft8, and trx-wspr. The decode module is now empty and removed. - src/decoders/trx-cw/ (new — Goertzel + Morse decoder) - trx-server: drop decode module entirely, use trx_cw::CwDecoder - CwEvent stays in trx-core (mirrors AprsPacket / Ft8Message / WsprMessage) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
35 lines
871 B
TOML
35 lines
871 B
TOML
# SPDX-FileCopyrightText: 2025 Stanislaw Grams <stanislawgrams@gmail.com>
|
|
#
|
|
# SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
[workspace]
|
|
members = [
|
|
"src/decoders/trx-aprs",
|
|
"src/decoders/trx-cw",
|
|
"src/decoders/trx-ft8",
|
|
"src/decoders/trx-wspr",
|
|
"src/trx-core",
|
|
"src/trx-protocol",
|
|
"src/trx-app",
|
|
"src/trx-server",
|
|
"src/trx-server/trx-backend",
|
|
"src/trx-server/trx-backend/trx-backend-ft817",
|
|
"src/trx-server/trx-backend/trx-backend-ft450d",
|
|
"src/trx-client",
|
|
"src/trx-client/trx-frontend",
|
|
"src/trx-client/trx-frontend/trx-frontend-http",
|
|
"src/trx-client/trx-frontend/trx-frontend-http-json",
|
|
"src/trx-client/trx-frontend/trx-frontend-rigctl",
|
|
]
|
|
resolver = "2"
|
|
|
|
[workspace.dependencies]
|
|
tokio = "1"
|
|
tokio-serial = "5"
|
|
serde = "1"
|
|
serde_json = "1"
|
|
toml = "0.8"
|
|
tracing = "0.1"
|
|
tracing-subscriber = "0.3"
|
|
clap = "4"
|