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-01-15 23:51:25 +01:00
axum = { version = "0.8.1", features = ["multipart", "macros"] }
axum-extra = { version = "0.10.0", features = ["cookie-private"] }
2024-06-26 02:17:02 +02:00
base64 = "0.22.1"
2024-09-27 20:07:55 +02:00
color-eyre = "0.6.3"
2025-01-15 23:51:25 +01:00
http = "1.2.0"
2024-09-27 20:07:55 +02:00
pct-str = "2.0.0"
rand = "0.8.5"
2025-01-15 23:51:25 +01:00
reqwest = { version = "0.12.12", features = ["json", "default-tls"] }
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.135"
time = "0.3.37"
tokio = { version = "1.43.0", features = ["full"] }
tower-http = { version = "0.6.2", features = ["trace"] }
tracing = "0.1.41"
tracing-subscriber = "0.3.19"