2023-12-25 13:46:32 +01:00
|
|
|
[package]
|
|
|
|
name = "imgproxy-rs"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2023-12-28 23:25:51 +01:00
|
|
|
futures = "0.3"
|
2024-07-14 21:45:58 +02:00
|
|
|
tokio = { version = "1.38", features = ["full", "tracing"] }
|
2023-12-25 13:46:32 +01:00
|
|
|
tracing = "0.1"
|
|
|
|
tracing-subscriber = "0.3"
|
|
|
|
tokio-stream = "0.1"
|
|
|
|
tokio-util = "0.7"
|
|
|
|
axum = { version = "0.7" }
|
2024-07-14 21:45:58 +02:00
|
|
|
reqwest = { version = "0.12", features = ["stream"] }
|
2023-12-25 13:46:32 +01:00
|
|
|
anyhow = "1.0"
|
2024-07-14 21:45:58 +02:00
|
|
|
sentry = "0.34"
|
2023-12-25 13:46:32 +01:00
|
|
|
dotenvy = "0.15"
|
|
|
|
axum-macros = "0.4"
|
|
|
|
magic-crypt = "3.1"
|
|
|
|
async-trait = "0.1"
|
|
|
|
serde = "1.0"
|
|
|
|
serde_yaml = "0.9"
|
2024-07-14 21:45:58 +02:00
|
|
|
base64 = "0.22"
|
2023-12-25 13:46:32 +01:00
|
|
|
regex = "1.10"
|
2023-12-28 23:25:51 +01:00
|
|
|
serde_regex = "1.1"
|