├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── README.md ├── images ├── black.png ├── mario-circle-cs.png ├── mario-circle-node.png ├── mario-diff.png └── white.png ├── src ├── lib.rs └── main.rs └── tests └── lib_test.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | **/*.rs.bk 3 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolashahn/diffimg-rs/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolashahn/diffimg-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolashahn/diffimg-rs/HEAD/README.md -------------------------------------------------------------------------------- /images/black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolashahn/diffimg-rs/HEAD/images/black.png -------------------------------------------------------------------------------- /images/mario-circle-cs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolashahn/diffimg-rs/HEAD/images/mario-circle-cs.png -------------------------------------------------------------------------------- /images/mario-circle-node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolashahn/diffimg-rs/HEAD/images/mario-circle-node.png -------------------------------------------------------------------------------- /images/mario-diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolashahn/diffimg-rs/HEAD/images/mario-diff.png -------------------------------------------------------------------------------- /images/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolashahn/diffimg-rs/HEAD/images/white.png -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolashahn/diffimg-rs/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolashahn/diffimg-rs/HEAD/src/main.rs -------------------------------------------------------------------------------- /tests/lib_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolashahn/diffimg-rs/HEAD/tests/lib_test.rs --------------------------------------------------------------------------------