Files
nuchat/backend/Cargo.toml

34 lines
795 B
TOML

[package]
name = "nuchat"
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", "auth"] }
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" ]
all = ["shutdown"]
shutdown = []