Koucha/koucha/Cargo.toml
Julia Lange 92763fd7dc
webapi, inital schema and routes (get_users)
provides the infrastructure for the webapi including setting up the
server and the routes.

Implements get_users as a test route
2026-03-03 10:45:36 -08:00

14 lines
379 B
TOML

[package]
name = "koucha"
version = "0.1.0"
edition = "2024"
[dependencies]
reqwest = "0.13.1"
rss = "2.0.12"
tokio = { version = "1.49.0", features = ["full"] }
sqlx = { version = "0.8.6", features = [ "runtime-tokio", "sqlite" ] }
chrono = "0.4.43"
axum = { version= "0.8.8", features = [ "macros" ] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.149"