All checks were successful
Backend Actions / check (push) Successful in 1m1s
Backend Actions / build (push) Successful in 1m51s
Frontend Actions / check (push) Successful in 59s
Backend Actions / test (push) Successful in 2m20s
Frontend Actions / build (push) Successful in 59s
Frontend Actions / test (push) Successful in 55s
34 lines
809 B
TOML
34 lines
809 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", "request-id"] }
|
|
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 = []
|