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]
|
2023-02-26 07:00:12 +00:00
|
|
|
actix-web = "4.3.1"
|
2023-08-09 04:02:09 +00:00
|
|
|
image = "0.24.7"
|
2023-08-05 15:26:19 +00:00
|
|
|
libwebp-sys = { version = "0.9.2", optional = true }
|
2023-05-23 03:03:52 +00:00
|
|
|
mimalloc = "0.1.37"
|
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"
|
2023-07-13 10:46:17 +00:00
|
|
|
ravif = { version = "0.11.2", optional = true }
|
|
|
|
rgb = { version = "0.8.36", optional = true }
|
2023-08-06 01:06:27 +00:00
|
|
|
regex = "1.9.3"
|
2023-07-13 10:46:17 +00:00
|
|
|
reqwest = { version = "0.11.18", features = ["rustls-tls", "stream", "brotli", "gzip"], default-features = false }
|
2023-08-09 18:03:43 +00:00
|
|
|
tokio = { version = "1.30.0", features = ["full"] }
|
2023-07-13 10:46:17 +00:00
|
|
|
|
|
|
|
[features]
|
2023-08-05 15:26:19 +00:00
|
|
|
default = ["webp"]
|
2023-07-13 10:46:17 +00:00
|
|
|
avif = ["dep:ravif", "dep:rgb"]
|
2023-08-05 15:26:19 +00:00
|
|
|
webp = ["dep:libwebp-sys"]
|