2022-11-02 22:09:52 +05:30
|
|
|
[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]
|
2023-02-26 12:30:12 +05:30
|
|
|
actix-web = "4.3.1"
|
2023-08-09 09:32:09 +05:30
|
|
|
image = "0.24.7"
|
2023-08-05 20:56:19 +05:30
|
|
|
libwebp-sys = { version = "0.9.2", optional = true }
|
2023-08-25 18:39:23 +05:30
|
|
|
mimalloc = "0.1.38"
|
2023-06-04 19:34:18 +05:30
|
|
|
once_cell = "1.18.0"
|
2022-11-02 22:09:52 +05:30
|
|
|
qstring = "0.7.2"
|
2023-07-13 16:16:17 +05:30
|
|
|
ravif = { version = "0.11.2", optional = true }
|
|
|
|
rgb = { version = "0.8.36", optional = true }
|
2023-08-26 19:55:52 +05:30
|
|
|
regex = "1.9.4"
|
2023-08-24 03:59:53 +05:30
|
|
|
reqwest = { version = "0.11.20", features = ["rustls-tls", "stream", "brotli", "gzip", "socks"], default-features = false }
|
2023-08-17 06:06:57 +05:30
|
|
|
tokio = { version = "1.32.0", features = ["full"] }
|
2023-07-13 16:16:17 +05:30
|
|
|
|
|
|
|
[features]
|
2023-08-05 20:56:19 +05:30
|
|
|
default = ["webp"]
|
2023-07-13 16:16:17 +05:30
|
|
|
avif = ["dep:ravif", "dep:rgb"]
|
2023-08-05 20:56:19 +05:30
|
|
|
webp = ["dep:libwebp-sys"]
|
2023-08-11 04:54:05 +05:30
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
lto = true
|