# SPDX-FileCopyrightText: 2025 Stanislaw Grams # # SPDX-License-Identifier: BSD-2-Clause [package] name = "trx-server" version = "0.1.0" edition = "2021" [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 } tracing-subscriber = { workspace = true } clap = { workspace = true, features = ["derive"] } dirs = "6" libloading = "0.8" bytes = "1" cpal = "0.15" opus = "0.3" trx-backend = { path = "trx-backend" } trx-core = { path = "../trx-core" }