├── .cargo └── config.toml ├── .editorconfig ├── .github ├── semantic.yml └── workflows │ └── ci.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── licenserc.toml ├── rename-project.ps1 ├── rename-project.sh ├── rust-toolchain.toml ├── rustfmt.toml ├── taplo.toml ├── template ├── Cargo.toml └── src │ └── lib.rs ├── typos.toml └── xtask ├── Cargo.toml └── src └── main.rs /.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast/template/HEAD/.cargo/config.toml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast/template/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/semantic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast/template/HEAD/.github/semantic.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast/template/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast/template/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast/template/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast/template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast/template/HEAD/README.md -------------------------------------------------------------------------------- /licenserc.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast/template/HEAD/licenserc.toml -------------------------------------------------------------------------------- /rename-project.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast/template/HEAD/rename-project.ps1 -------------------------------------------------------------------------------- /rename-project.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast/template/HEAD/rename-project.sh -------------------------------------------------------------------------------- /rust-toolchain.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast/template/HEAD/rust-toolchain.toml -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast/template/HEAD/rustfmt.toml -------------------------------------------------------------------------------- /taplo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast/template/HEAD/taplo.toml -------------------------------------------------------------------------------- /template/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast/template/HEAD/template/Cargo.toml -------------------------------------------------------------------------------- /template/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast/template/HEAD/template/src/lib.rs -------------------------------------------------------------------------------- /typos.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast/template/HEAD/typos.toml -------------------------------------------------------------------------------- /xtask/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast/template/HEAD/xtask/Cargo.toml -------------------------------------------------------------------------------- /xtask/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast/template/HEAD/xtask/src/main.rs --------------------------------------------------------------------------------