basic server implementation

This commit is contained in:
kittentm 2026-06-14 22:01:28 +02:00
commit 71f3da08fc
Signed by: kitten
GPG key ID: 394B4EABE4405A83
6 changed files with 709 additions and 0 deletions

10
Cargo.toml Normal file
View file

@ -0,0 +1,10 @@
[package]
name = "tagaya"
version = "0.1.0"
edition = "2024"
[dependencies]
axum = "0.7"
dotenvy = "0.15.7"
tokio = { version = "1.52.3", features = ["full"] }
tower-http = { version = "0.6.11", features = ["timeout"] }