refactor: nest trx-frontend under trx-client, trx-backend under trx-server

Move the frontend and backend crate trees to live physically under their
respective binary crate directories, grouping related code together
without merging crate boundaries. Also flatten sub-crate nesting by
moving them out of src/ subdirectories into direct children.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-06 22:47:58 +01:00
parent 4e9f1d2be6
commit 5f91287369
27 changed files with 20 additions and 20 deletions
+7 -7
View File
@@ -5,15 +5,15 @@
[workspace]
members = [
"src/trx-server",
"src/trx-server/trx-backend",
"src/trx-server/trx-backend/trx-backend-ft817",
"src/trx-client",
"src/trx-backend",
"src/trx-backend/src/trx-backend-ft817",
"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-qt",
"src/trx-client/trx-frontend/trx-frontend-rigctl",
"src/trx-core",
"src/trx-frontend",
"src/trx-frontend/src/trx-frontend-http",
"src/trx-frontend/src/trx-frontend-http-json",
"src/trx-frontend/src/trx-frontend-qt",
"src/trx-frontend/src/trx-frontend-rigctl",
]
resolver = "2"