├── Cargo.toml ├── LICENSE ├── README.md ├── client ├── Cargo.toml ├── README.md └── src │ ├── lib.rs │ └── main.rs └── server ├── Cargo.toml ├── README.md └── src └── main.rs /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deadjakk/RustPivot/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deadjakk/RustPivot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deadjakk/RustPivot/HEAD/README.md -------------------------------------------------------------------------------- /client/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deadjakk/RustPivot/HEAD/client/Cargo.toml -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deadjakk/RustPivot/HEAD/client/README.md -------------------------------------------------------------------------------- /client/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deadjakk/RustPivot/HEAD/client/src/lib.rs -------------------------------------------------------------------------------- /client/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deadjakk/RustPivot/HEAD/client/src/main.rs -------------------------------------------------------------------------------- /server/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deadjakk/RustPivot/HEAD/server/Cargo.toml -------------------------------------------------------------------------------- /server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deadjakk/RustPivot/HEAD/server/README.md -------------------------------------------------------------------------------- /server/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deadjakk/RustPivot/HEAD/server/src/main.rs --------------------------------------------------------------------------------