[package]
edition = "2024"
name = "fbi-proxy"
version = "1.9.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A fast and flexible proxy server for intercepting and modifying HTTP/HTTPS requests"
homepage = "https://github.com/snomiao/fbi-proxy"
documentation = "https://github.com/snomiao/fbi-proxy"
readme = "README.md"
keywords = [
"proxy",
"http",
"https",
"intercept",
"network",
]
categories = [
"network-programming",
"web-programming",
]
license = "MIT"
repository = "https://github.com/snomiao/fbi-proxy"
[[bin]]
name = "fbi-proxy"
path = "rs/fbi-proxy.rs"
[dependencies.clap]
version = "4.5"
features = [
"derive",
"env",
]
[dependencies.env_logger]
version = "0.11"
[dependencies.futures-util]
version = "0.3"
[dependencies.http-body-util]
version = "0.1"
[dependencies.hyper]
version = "1.7"
features = [
"http1",
"client",
"server",
]
[dependencies.hyper-tungstenite]
version = "0.18"
[dependencies.hyper-util]
version = "0.1"
features = [
"client-legacy",
"server",
"tokio",
"http1",
]
[dependencies.log]
version = "0.4"
[dependencies.regex]
version = "1.11"
[dependencies.tokio]
version = "1.47"
features = [
"rt-multi-thread",
"macros",
"net",
"io-util",
]
[dependencies.tokio-tungstenite]
version = "0.27"
[dependencies.tower]
version = "0.5"
features = ["util"]