rhoxy 0.2.5

An async HTTP/HTTPS proxy in Rust.
Documentation
# rhoxy - Rust HTTP/HTTPS Proxy
[![Tests](https://github.com/JoshCap20/rhoxy/actions/workflows/test.yml/badge.svg?branch=main)](https://github.com/JoshCap20/rhoxy/actions/workflows/test.yml)
[![Publish](https://github.com/JoshCap20/rhoxy/actions/workflows/deploy.yml/badge.svg?branch=main)](https://github.com/JoshCap20/rhoxy/actions/workflows/deploy.yml)

An async HTTP/HTTPS proxy in Rust

## Running

Arguments:

```
#[arg(long, default_value = "127.0.0.1", help = "Host to listen on")]
host: String,

#[arg(short, long, default_value = "8080", help = "Port to listen on")]
port: u16, // allows values 0...65535

#[arg(long, help = "Enable debug logging")]
verbose: bool,
```

### Development

```bash
# listen on port 8081 on host 127.0.0.1 with debug logging
cargo run -- --port 8081 --verbose
```

### Build

```bash
cargo build --release
cargo install --path .
rhoxy --port 8080
```

### TODO
- Handle IPv6 properly
- MITM proxy mode