├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE-Apache-2.0.txt ├── LICENSE-CC0-1.0.txt ├── README.md └── src └── main.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | .aider* 3 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwr/gwipt/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwr/gwipt/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-Apache-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwr/gwipt/HEAD/LICENSE-Apache-2.0.txt -------------------------------------------------------------------------------- /LICENSE-CC0-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwr/gwipt/HEAD/LICENSE-CC0-1.0.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwr/gwipt/HEAD/README.md -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwr/gwipt/HEAD/src/main.rs --------------------------------------------------------------------------------