├── .gitignore ├── .travis.yml ├── Cargo.lock ├── Cargo.toml ├── src └── main.rs └── tests ├── data └── smoke.rs /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcrichton/socks5-rs/HEAD/.travis.yml -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcrichton/socks5-rs/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcrichton/socks5-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcrichton/socks5-rs/HEAD/src/main.rs -------------------------------------------------------------------------------- /tests/data: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /tests/smoke.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcrichton/socks5-rs/HEAD/tests/smoke.rs --------------------------------------------------------------------------------