26 lines
885 B
TOML
26 lines
885 B
TOML
[package]
|
|
name = "fma"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.100"
|
|
askama = "0.15.1"
|
|
axum = { version = "0.8.8", features = ["macros", "ws"] }
|
|
camino = "1.2.2"
|
|
clap = { version = "4.5.54", features = ["derive"] }
|
|
diesel = { version = "2.3.5", features = ["uuid", "time", "postgres", "ipnet-address", "r2d2"] }
|
|
diesel_migrations = { version = "2.3.1", features = ["postgres"] }
|
|
env_logger = "0.11.8"
|
|
ipnet = "2.11.0"
|
|
log = "0.4.29"
|
|
r2d2 = "0.8.10"
|
|
serde = { version = "1.0.228", features = ["derive"] }
|
|
serde_json = "1.0.149"
|
|
time = { version = "0.3.45", features = ["macros", "serde"] }
|
|
tokio = { version = "1.49.0", features = ["io-util", "macros", "net", "rt-multi-thread", "time"] }
|
|
toml = "0.9.11"
|
|
tower = { version = "0.5.3", features = ["full"] }
|
|
tower-http = { version = "0.6.8", features = ["full"] }
|
|
url = { version = "2.5.8", features = ["serde"] }
|