piped-proxy/Cargo.toml

27 lines
734 B
TOML
Raw Normal View History

2022-11-02 16:39:52 +00:00
[package]
edition = "2021"
name = "piped-proxy"
version = "0.1.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix-web = "4.4.0"
image = "0.24.7"
libwebp-sys = { version = "0.9.4", optional = true }
mimalloc = "0.1.39"
2023-06-04 14:04:18 +00:00
once_cell = "1.18.0"
2022-11-02 16:39:52 +00:00
qstring = "0.7.2"
ravif = { version = "0.11.3", optional = true }
2023-07-13 10:46:17 +00:00
rgb = { version = "0.8.36", optional = true }
regex = "1.9.5"
reqwest = { version = "0.11.20", features = ["rustls-tls", "stream", "brotli", "gzip", "socks"], default-features = false }
tokio = { version = "1.32.0", features = ["full"] }
2023-07-13 10:46:17 +00:00
[features]
default = ["webp"]
2023-07-13 10:46:17 +00:00
avif = ["dep:ravif", "dep:rgb"]
webp = ["dep:libwebp-sys"]
2023-08-10 23:24:05 +00:00
[profile.release]
lto = true