mirror of
https://github.com/TeamPiped/piped-proxy.git
synced 2024-08-14 23:50:45 +00:00
47 lines
1.3 KiB
TOML
47 lines
1.3 KiB
TOML
[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.37.0", features = ["full"] }
|
|
actix-web = "4.5.1"
|
|
reqwest = { version = "0.11.27", features = ["stream", "brotli", "gzip", "socks"], default-features = false }
|
|
qstring = "0.7.2"
|
|
|
|
# Alternate Allocator
|
|
mimalloc = { version = "0.1.41", optional = true }
|
|
|
|
# Transcoding Images to WebP/AVIF to save bandwidth
|
|
image = { version = "0.25.1", features = ["jpeg", "webp", "rayon"], default-features = false, optional = true }
|
|
libwebp-sys = { version = "0.9.5", optional = true }
|
|
ravif = { version = "0.11.5", optional = true }
|
|
rgb = { version = "0.8.37", optional = true }
|
|
|
|
once_cell = "1.19.0"
|
|
regex = "1.10.4"
|
|
blake3 = { version = "1.5.1", optional = true }
|
|
bytes = "1.6.0"
|
|
futures-util = "0.3.30"
|
|
listenfd = "1.0.1"
|
|
|
|
[features]
|
|
default = ["webp", "mimalloc", "reqwest-rustls", "qhash"]
|
|
|
|
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"]
|
|
|
|
optimized = ["libwebp-sys?/sse41", "libwebp-sys?/avx2", "libwebp-sys?/neon"]
|
|
|
|
qhash = ["blake3"]
|
|
|
|
[profile.release]
|
|
lto = true
|