6ed3f96155
Remove direct dependency on trx-backend-soapysdr from server Cargo.toml. Re-export SoapySdrRig from trx-backend instead so server accesses it through the proper facade. This keeps sub-backends internal to trx-backend and maintains proper module organization. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
37 lines
1.1 KiB
TOML
37 lines
1.1 KiB
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"
|
|
|
|
[features]
|
|
default = ["soapysdr"]
|
|
soapysdr = ["trx-backend/soapysdr"]
|
|
|
|
[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", features = ["soapysdr"] }
|
|
trx-core = { path = "../trx-core" }
|
|
trx-aprs = { path = "../decoders/trx-aprs" }
|
|
trx-cw = { path = "../decoders/trx-cw" }
|
|
trx-decode-log = { path = "../decoders/trx-decode-log" }
|
|
trx-ft8 = { path = "../decoders/trx-ft8" }
|
|
trx-wspr = { path = "../decoders/trx-wspr" }
|
|
trx-protocol = { path = "../trx-protocol" }
|