fft-manager/Cargo.toml

22 lines
623 B
TOML
Raw Normal View History

2024-06-25 19:25:45 +02:00
[package]
2025-01-15 23:33:50 +01:00
name = "fft-manager"
2024-06-25 19:25:45 +02:00
version = "0.1.0"
edition = "2021"
[dependencies]
2025-08-03 21:25:18 +02:00
axum = { version = "0.8.4", features = ["multipart", "macros"] }
axum-extra = { version = "0.10.1", features = ["cookie-private"] }
2024-06-26 02:17:02 +02:00
base64 = "0.22.1"
2025-08-03 21:25:18 +02:00
color-eyre = "0.6.5"
http = "1.3.1"
2024-09-27 20:07:55 +02:00
pct-str = "2.0.0"
2025-08-03 21:25:18 +02:00
rand = "0.9.2"
reqwest = { version = "0.12.22", features = ["json", "default-tls"] }
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.142"
time = "0.3.41"
tokio = { version = "1.47.1", features = ["full"] }
tower-http = { version = "0.6.6", features = ["trace"] }
2025-01-15 23:51:25 +01:00
tracing = "0.1.41"
tracing-subscriber = "0.3.19"