├── .cargo └── config.toml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE-MIT ├── LICENSE-UNLICENSE ├── README.MD ├── repshims.bat └── src ├── main.rs └── shims.rs /.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoritle/rshim/HEAD/.cargo/config.toml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /.vscode 3 | *.exe -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoritle/rshim/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoritle/rshim/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoritle/rshim/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /LICENSE-UNLICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoritle/rshim/HEAD/LICENSE-UNLICENSE -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoritle/rshim/HEAD/README.MD -------------------------------------------------------------------------------- /repshims.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoritle/rshim/HEAD/repshims.bat -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoritle/rshim/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/shims.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoritle/rshim/HEAD/src/shims.rs --------------------------------------------------------------------------------