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