[package] name = "zune-jpeg" version = "0.5.0-rc2" authors = ["caleb "] edition = "2021" repository = "https://github.com/etemesi254/zune-image/tree/dev/crates/zune-jpeg" license = "MIT OR Apache-2.0 OR Zlib" keywords = ["jpeg", "jpeg-decoder", "decoder"] categories = ["multimedia::images"] exclude = ["/benches/images/*", "/tests/*", "/.idea/*", "/.gradle/*", "/test-images/*", "fuzz/*"] description = "A fast, correct and safe jpeg decoder" [lints.rust] # Disable feature checker for fuzzing since it's used and cargo doesn't # seem to recognise fuzzing unexpected_cfgs = { level = "warn", check-cfg = ['cfg(fuzzing)'] } # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [features] x86 = [] neon = [] std = ["zune-core/std"] log = ["zune-core/log"] default = ["x86", "neon", "std"] [dependencies] zune-core = { path = "../zune-core", version = "^0.5.0-rc2" } [dev-dependencies] zune-ppm = { path = "../zune-ppm" }