├── .github └── workflows │ └── ci.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── README.md ├── rust-toolchain.toml ├── scripts └── find_funcs.py └── src ├── detour.rs ├── error.rs └── lib.rs /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kusabana/accelerator-rs/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kusabana/accelerator-rs/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kusabana/accelerator-rs/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kusabana/accelerator-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kusabana/accelerator-rs/HEAD/README.md -------------------------------------------------------------------------------- /rust-toolchain.toml: -------------------------------------------------------------------------------- 1 | [toolchain] 2 | channel = "nightly" -------------------------------------------------------------------------------- /scripts/find_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kusabana/accelerator-rs/HEAD/scripts/find_funcs.py -------------------------------------------------------------------------------- /src/detour.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kusabana/accelerator-rs/HEAD/src/detour.rs -------------------------------------------------------------------------------- /src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kusabana/accelerator-rs/HEAD/src/error.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kusabana/accelerator-rs/HEAD/src/lib.rs --------------------------------------------------------------------------------