| 1 | [package] |
| 2 | name = "tiff" |
| 3 | version = "0.9.1" |
| 4 | edition = "2021" |
| 5 | resolver = "2" |
| 6 | |
| 7 | # note: when changed, also update test runner in `.github/workflows/rust.yml` |
| 8 | rust-version = "1.61.0" |
| 9 | |
| 10 | license = "MIT" |
| 11 | description = "TIFF decoding and encoding library in pure Rust" |
| 12 | authors = ["The image-rs Developers" ] |
| 13 | |
| 14 | repository = "https://github.com/image-rs/image-tiff" |
| 15 | categories = ["multimedia::images" , "multimedia::encoding" ] |
| 16 | |
| 17 | exclude = ["tests/images/*" , "tests/fuzz_images/*" ] |
| 18 | |
| 19 | [dependencies] |
| 20 | weezl = "0.1.0" |
| 21 | jpeg = { package = "jpeg-decoder" , version = "0.3.0" , default-features = false } |
| 22 | flate2 = "1.0.20" |
| 23 | |
| 24 | [dev-dependencies] |
| 25 | criterion = "0.3.1" |
| 26 | |
| 27 | [[bench]] |
| 28 | name = "lzw" |
| 29 | harness = false |
| 30 | |