| 1 | [package] |
| 2 | name = "fdeflate" |
| 3 | version = "0.3.7" |
| 4 | edition = "2021" |
| 5 | |
| 6 | # note: when changed, also update test runner in `.github/workflows/rust.yml` |
| 7 | rust-version = "1.67.0" |
| 8 | |
| 9 | license = "MIT OR Apache-2.0" |
| 10 | description = "Fast specialized deflate implementation" |
| 11 | authors = ["The image-rs Developers" ] |
| 12 | include = ["/src" , "/tests" , "README.md" , "LICENSE-APACHE" , "LICENSE-MIT" ] |
| 13 | |
| 14 | # crates.io metadata |
| 15 | documentation = "https://docs.rs/fdeflate" |
| 16 | repository = "https://github.com/image-rs/fdeflate" |
| 17 | homepage = "https://github.com/image-rs/fdeflate" |
| 18 | categories = ["compression" ] |
| 19 | |
| 20 | [dependencies] |
| 21 | simd-adler32 = "0.3.4" |
| 22 | |
| 23 | [dev-dependencies] |
| 24 | miniz_oxide = "0.7.1" |
| 25 | rand = "0.8.5" |
| 26 | |
| 27 | [lints.rust] |
| 28 | unexpected_cfgs = { level = "allow" , check-cfg = ['cfg(fuzzing)' ] } |
| 29 | |