init
Some checks failed
CI / ci (push) Failing after 1m48s

This commit is contained in:
2026-08-25 23:24:36 +02:00
commit 95739892de
466 changed files with 33918 additions and 0 deletions

28
crates/server/Cargo.toml Normal file
View File

@@ -0,0 +1,28 @@
[package]
name = "server"
edition.workspace = true
version.workspace = true
[[bin]]
name = "k-mood"
path = "src/main.rs"
[dependencies]
domain.workspace = true
axum.workspace = true
application.workspace = true
config.workspace = true
http-axum.workspace = true
sqlite.workspace = true
auth.workspace = true
storage.workspace = true
event-publisher.workspace = true
importer.workspace = true
exporter.workspace = true
web-push-adapter.workspace = true
serde.workspace = true
serde_json.workspace = true
tokio.workspace = true
tracing.workspace = true
tracing-subscriber.workspace = true
toml = "0.8"