[package] name = "clawmates-server" version = "0.1.0" edition.workspace = true rust-version.workspace = true license.workspace = true publish.workspace = true [dependencies] axum = "0.8" serde_json = { workspace = true } sqlx = { workspace = true } cm-api = { path = "../../cm-api" } cm-auth = { path = "../../cm-auth" } cm-config = { path = "../../cm-config" } cm-db = { path = "../../cm-db" } cm-files = { path = "../../cm-files" } cm-llm = { path = "../../cm-llm" } cm-runtime = { path = "../../cm-runtime" } cm-telemetry = { path = "../../cm-telemetry" } cm-sandbox = { path = "../../cm-sandbox" } cm-scheduler = { path = "../../cm-scheduler" } cm-domain = { path = "../../cm-domain" } time = { workspace = true } tokio = { workspace = true, features = ["signal"] } [lints] workspace = true