add basic backend

This commit is contained in:
2025-07-21 17:08:30 +01:00
parent d0ca82972f
commit 50d094be8f
14 changed files with 2714 additions and 2 deletions

View File

@ -4,3 +4,29 @@ version = "0.1.0"
edition = "2024"
[dependencies]
axum = "0.8.4"
clap = { version = "4.5.41", features = ["derive"] }
http = "1.3.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.141"
tokio = { version = "1.0", features = ["full"] }
tower = { version = "0.5.2", features = ["full"] }
tower-http = { version = "0.6.6", features = ["timeout", "trace"] }
tower-http-util = "0.1.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
uuid = { version = "1.17.0", features = ["serde", "v7"] }
[dev-dependencies]
reqwest = { version = "0.12.22", features = ["json"] }
[lib]
path = "src/lib.rs"
[[bin]]
path = "src/main.rs"
name ="nuchat"
[features]
default = []
shutdown = []