api/Cargo.toml
2025-04-12 22:23:44 -06:00

26 lines
570 B
TOML
Executable File

[package]
name = "almond"
version = "0.2.0"
edition = "2024"
[dependencies]
axum = { version = "0.8.3", features = ["macros"] }
dotenvy = "0.15.7"
regex = "1.11.1"
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.140"
sha3 = "0.10.8"
sqlx = { version = "0.8.3", features = [
"postgres",
"runtime-tokio",
"sqlite",
"macros",
] }
thiserror = "2.0.12"
tokio = { version = "1.44.2", features = ["full"] }
toml = "0.8.20"
tracing = "0.1.41"
tracing-subscriber = "0.3.19"
url = "2.5.4"
uuid = { version = "1.16.0", features = ["v4"] }