piped-proxy/Cargo.toml

40 lines
1.1 KiB
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]
# Web Requests & Async Runtime
tokio = { version = "1.33.0", features = ["full"] }
actix-web = "4.4.0"
reqwest = { version = "0.11.22", features = ["stream", "brotli", "gzip", "socks"], default-features = false }
2022-11-02 16:39:52 +00:00
qstring = "0.7.2"
# Alternate Allocator
mimalloc = { version = "0.1.39", optional = true }
# Transcoding Images to WebP/AVIF to save bandwidth
image = { version = "0.24.7", features = ["jpeg", "jpeg_rayon", "webp"], default-features = false, optional = true }
libwebp-sys = { version = "0.9.4", optional = true }
ravif = { version = "0.11.3", optional = true }
2023-07-13 10:46:17 +00:00
rgb = { version = "0.8.36", optional = true }
once_cell = "1.18.0"
regex = "1.10.2"
2023-07-13 10:46:17 +00:00
[features]
default = ["webp", "mimalloc", "reqwest-rustls"]
reqwest-rustls = ["reqwest/rustls-tls"]
reqwest-native-tls = ["reqwest/default-tls"]
avif = ["dep:ravif", "dep:rgb", "dep:image"]
webp = ["dep:libwebp-sys", "dep:image"]
mimalloc = ["dep:mimalloc"]
2023-08-10 23:24:05 +00:00
[profile.release]
lto = true