first commit

This commit is contained in:
Timur Gordon
2025-09-24 05:11:15 +02:00
commit be061409af
19 changed files with 6052 additions and 0 deletions

25
server/Cargo.toml Normal file
View File

@@ -0,0 +1,25 @@
[package]
name = "self-server"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "server"
path = "src/main.rs"
[dependencies]
tokio = { version = "1.0", features = ["full"] }
axum = "0.7"
tower = "0.4"
tower-http = { version = "0.5", features = ["cors", "fs"] }
serde = { workspace = true }
serde_json = { workspace = true }
uuid = { version = "1.0", features = ["v4"] }
lettre = "0.11"
tokio-stream = { version = "0.1", features = ["sync"] }
futures-util = "0.3"
async-stream = "0.3"
tracing = "0.1"
tracing-subscriber = "0.3"
anyhow = "1.0"
clap = { version = "4.0", features = ["derive"] }