chore: replace placeholder package with role-named workspace

This commit is contained in:
2026-06-02 00:38:53 +02:00
parent 87f06d1f2d
commit b97c950f77
12 changed files with 3035 additions and 8 deletions
+29
View File
@@ -0,0 +1,29 @@
[package]
name = "server"
version = "0.0.0"
edition.workspace = true
rust-version.workspace = true
[lib]
path = "src/lib.rs"
[[bin]]
name = "server"
path = "src/main.rs"
[dependencies]
tokio.workspace = true
axum.workspace = true
clap.workspace = true
anyhow.workspace = true
tracing.workspace = true
tracing-subscriber.workspace = true
api = { path = "../api" }
db = { path = "../db" }
[dev-dependencies]
reqwest.workspace = true
serde_json.workspace = true
api = { path = "../api" }
db = { path = "../db" }
sqlx.workspace = true