1[package]
2name = "zune-jpeg"
3version = "0.4.14"
4authors = ["caleb <etemesicaleb@gmail.com>"]
5edition = "2021"
6repository = "https://github.com/etemesi254/zune-image/tree/dev/crates/zune-jpeg"
7license = "MIT OR Apache-2.0 OR Zlib"
8keywords = ["jpeg", "jpeg-decoder", "decoder"]
9categories = ["multimedia::images"]
10exclude = ["/benches/images/*", "/tests/*", "/.idea/*", "/.gradle/*", "/test-images/*", "fuzz/*"]
11description = "A fast, correct and safe jpeg decoder"
12
13[lints.rust]
14# Disable feature checker for fuzzing since it's used and cargo doesn't
15# seem to recognise fuzzing
16unexpected_cfgs = { level = "warn", check-cfg = ['cfg(fuzzing)'] }
17
18
19# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
20[features]
21x86 = []
22neon = []
23std = ["zune-core/std"]
24log = ["zune-core/log"]
25default = ["x86", "neon", "std"]
26
27[dependencies]
28zune-core = { path = "../zune-core", version = "0.4" }
29
30
31[dev-dependencies]
32zune-ppm = { path = "../zune-ppm" }
33