├── .gitignore ├── .travis.yml ├── Cargo.toml ├── README.md ├── src ├── bin │ └── pngbox_daemon.rs ├── ffi.rs ├── lib.rs └── shim.c └── test ├── gray.png ├── mozilla-dinosaur-head-logo.png ├── rust-huge-logo.png └── servo-screenshot.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmcallister/pngbox/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmcallister/pngbox/HEAD/.travis.yml -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmcallister/pngbox/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmcallister/pngbox/HEAD/README.md -------------------------------------------------------------------------------- /src/bin/pngbox_daemon.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmcallister/pngbox/HEAD/src/bin/pngbox_daemon.rs -------------------------------------------------------------------------------- /src/ffi.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmcallister/pngbox/HEAD/src/ffi.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmcallister/pngbox/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/shim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmcallister/pngbox/HEAD/src/shim.c -------------------------------------------------------------------------------- /test/gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmcallister/pngbox/HEAD/test/gray.png -------------------------------------------------------------------------------- /test/mozilla-dinosaur-head-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmcallister/pngbox/HEAD/test/mozilla-dinosaur-head-logo.png -------------------------------------------------------------------------------- /test/rust-huge-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmcallister/pngbox/HEAD/test/rust-huge-logo.png -------------------------------------------------------------------------------- /test/servo-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmcallister/pngbox/HEAD/test/servo-screenshot.png --------------------------------------------------------------------------------