1 | [package] |
2 | name = "image-webp" |
3 | version = "0.2.1" |
4 | edition = "2021" |
5 | license = "MIT OR Apache-2.0" |
6 | rust-version = "1.80.1" |
7 | |
8 | description = "WebP encoding and decoding in pure Rust" |
9 | homepage = "https://github.com/image-rs/image-webp" |
10 | repository = "https://github.com/image-rs/image-webp" |
11 | categories = ["multimedia::images" , "multimedia::encoding" , "encoding" ] |
12 | |
13 | include = ["/src" , "LICENSE-APACHE" , "LICENSE-MIT" , "README.md" ] |
14 | |
15 | [dependencies] |
16 | byteorder-lite = "0.1.0" |
17 | quick-error = "2.0.1" |
18 | |
19 | [dev-dependencies] |
20 | paste = "1.0.14" |
21 | png = "0.17.12" |
22 | rand = "0.8.5" |
23 | webp = "0.3.0" |
24 | |
25 | [features] |
26 | _benchmarks = [] |
27 | |