init
Some checks failed
build-server / build (push) Failing after 54s

This commit is contained in:
2025-09-05 21:52:36 +00:00
commit a63c87b2f8
10 changed files with 1043 additions and 0 deletions

15
Cargo.toml Normal file
View File

@@ -0,0 +1,15 @@
[package]
name = "server"
version = "0.1.0"
edition = "2021"
[dependencies]
axum = { version = "0.8.4", features = ["http2"] }
tokio = { version = "1.45.1", features = ["full"] }
[profile.release]
codegen-units = 1
lto = true
opt-level = "z"
strip = true
panic = "abort"