├── .github └── workflows │ └── test.yml ├── .gitignore ├── .gitmodules ├── CHANGELOG.md ├── Cargo.lock ├── Cargo.lock.msrv ├── Cargo.toml ├── LICENSE ├── README.md ├── src ├── decode.rs ├── demux.rs ├── encode.rs ├── lib.rs ├── mux.rs ├── mux_types.rs ├── smoke.c └── types.rs └── tests ├── animated.webp ├── decode.rs ├── demux.rs ├── encode.rs ├── mux.rs └── types.rs /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnighy/libwebp-sys2-rs/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | **/*.rs.bk 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnighy/libwebp-sys2-rs/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnighy/libwebp-sys2-rs/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnighy/libwebp-sys2-rs/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.lock.msrv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnighy/libwebp-sys2-rs/HEAD/Cargo.lock.msrv -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnighy/libwebp-sys2-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnighy/libwebp-sys2-rs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnighy/libwebp-sys2-rs/HEAD/README.md -------------------------------------------------------------------------------- /src/decode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnighy/libwebp-sys2-rs/HEAD/src/decode.rs -------------------------------------------------------------------------------- /src/demux.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnighy/libwebp-sys2-rs/HEAD/src/demux.rs -------------------------------------------------------------------------------- /src/encode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnighy/libwebp-sys2-rs/HEAD/src/encode.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnighy/libwebp-sys2-rs/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/mux.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnighy/libwebp-sys2-rs/HEAD/src/mux.rs -------------------------------------------------------------------------------- /src/mux_types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnighy/libwebp-sys2-rs/HEAD/src/mux_types.rs -------------------------------------------------------------------------------- /src/smoke.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnighy/libwebp-sys2-rs/HEAD/src/smoke.c -------------------------------------------------------------------------------- /src/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnighy/libwebp-sys2-rs/HEAD/src/types.rs -------------------------------------------------------------------------------- /tests/animated.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnighy/libwebp-sys2-rs/HEAD/tests/animated.webp -------------------------------------------------------------------------------- /tests/decode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnighy/libwebp-sys2-rs/HEAD/tests/decode.rs -------------------------------------------------------------------------------- /tests/demux.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnighy/libwebp-sys2-rs/HEAD/tests/demux.rs -------------------------------------------------------------------------------- /tests/encode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnighy/libwebp-sys2-rs/HEAD/tests/encode.rs -------------------------------------------------------------------------------- /tests/mux.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnighy/libwebp-sys2-rs/HEAD/tests/mux.rs -------------------------------------------------------------------------------- /tests/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnighy/libwebp-sys2-rs/HEAD/tests/types.rs --------------------------------------------------------------------------------