├── .gitignore ├── Cargo.toml ├── LICENSE ├── README.md ├── demo.gif └── src ├── app.rs ├── avgspeed.rs ├── copy.rs └── main.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidnik/ppcp/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidnik/ppcp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidnik/ppcp/HEAD/README.md -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidnik/ppcp/HEAD/demo.gif -------------------------------------------------------------------------------- /src/app.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidnik/ppcp/HEAD/src/app.rs -------------------------------------------------------------------------------- /src/avgspeed.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidnik/ppcp/HEAD/src/avgspeed.rs -------------------------------------------------------------------------------- /src/copy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidnik/ppcp/HEAD/src/copy.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidnik/ppcp/HEAD/src/main.rs --------------------------------------------------------------------------------