[package]
edition = "2024"
name = "sbe-proxy"
version = "0.4.0"
authors = ["Tyr Chen <tyr.chen@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Domain-filtering HTTP CONNECT proxy for sbe sandbox"
homepage = "https://github.com/tyrchen/sbe"
documentation = "https://docs.rs/"
readme = "README.md"
keywords = [
"proxy",
"sandbox",
"security",
]
categories = ["development-tools"]
license = "MIT"
repository = "https://github.com/tyrchen/sbe"
[lib]
name = "sbe_proxy"
path = "src/lib.rs"
[[test]]
name = "proxy_integration"
path = "tests/proxy_integration.rs"
[dependencies.base64]
version = "0.23.1"
[dependencies.getrandom]
version = "0.4.3"
[dependencies.idna]
version = "1.1.0"
[dependencies.thiserror]
version = "2.0.20"
[dependencies.tokio]
version = "1.53.1"
features = [
"rt",
"rt-multi-thread",
"macros",
"net",
"io-util",
"signal",
"process",
"fs",
"sync",
"time",
]
[dependencies.tracing]
version = "0.1.44"