imgproxy-rs/Cargo.toml

28 lines
613 B
TOML
Raw Normal View History

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]
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"
serde_regex = "1.1"