36 lines
1.0 KiB
TOML
36 lines
1.0 KiB
TOML
[package]
|
|
name = "zune-jpeg"
|
|
version = "0.5.12"
|
|
rust-version = "1.75.0"
|
|
authors = ["caleb <etemesicaleb@gmail.com>"]
|
|
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"]
|
|
# NOTE: portable_simd requires Rust 1.87+
|
|
portable_simd = []
|
|
log = ["zune-core/log"]
|
|
default = ["x86", "neon", "std"]
|
|
|
|
|
|
[dependencies]
|
|
zune-core = { path = "../zune-core", version = "0.5.1" }
|
|
|
|
|
|
[dev-dependencies]
|
|
zune-ppm = { path = "../zune-ppm" } |