├── .gitignore ├── .vscode └── settings.json ├── Cargo.lock ├── Cargo.toml ├── README.md ├── src ├── main.rs └── render.rs └── templates ├── cargo.toml.stpl └── lib.rs.stpl /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | *.raw 3 | replay/ 4 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "rust-analyzer.showUnlinkedFileNotification": false 3 | } 4 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggwpez/wtfwt/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggwpez/wtfwt/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggwpez/wtfwt/HEAD/README.md -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggwpez/wtfwt/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/render.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggwpez/wtfwt/HEAD/src/render.rs -------------------------------------------------------------------------------- /templates/cargo.toml.stpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggwpez/wtfwt/HEAD/templates/cargo.toml.stpl -------------------------------------------------------------------------------- /templates/lib.rs.stpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggwpez/wtfwt/HEAD/templates/lib.rs.stpl --------------------------------------------------------------------------------