27 lines
656 B
TOML
Executable File
27 lines
656 B
TOML
Executable File
[package]
|
|
name = "almond-api"
|
|
version = "0.2.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
axum = { version = "0.8.3", features = ["macros", "tokio"] }
|
|
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"
|
|
utoipa = { version = "5.3.1", features = ["axum_extras"] }
|
|
utoipa-swagger-ui = { version = "9.0.1", features = ["axum"] }
|