appview/rust/Cargo.toml
Julia Lange d4a3a71e2f
Router, add xrpc function interface, test in main
Adds an interface for adding xrpc queries and procedures that is a bit
simpler than directly interfacing with axum. Should provide good
scaffolding for next steps.
2025-04-24 14:45:53 -07:00

14 lines
418 B
TOML

[package]
name = "rust"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
axum = { version = "0.8.3", features = ["json"] }
axum-macros = "0.5.0"
serde = "1.0.219"
serde_json = "1.0.140"
sqlx = { version = "0.8.5", features = ["runtime-tokio"] }
tokio = { version = "1.44.2", features = ["macros", "rt-multi-thread"] }