1 | [package] |
2 | name = "zune-jpeg" |
3 | version = "0.4.14" |
4 | authors = ["caleb <etemesicaleb@gmail.com>" ] |
5 | edition = "2021" |
6 | repository = "https://github.com/etemesi254/zune-image/tree/dev/crates/zune-jpeg" |
7 | license = "MIT OR Apache-2.0 OR Zlib" |
8 | keywords = ["jpeg" , "jpeg-decoder" , "decoder" ] |
9 | categories = ["multimedia::images" ] |
10 | exclude = ["/benches/images/*" , "/tests/*" , "/.idea/*" , "/.gradle/*" , "/test-images/*" , "fuzz/*" ] |
11 | description = "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 |
16 | unexpected_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] |
21 | x86 = [] |
22 | neon = [] |
23 | std = ["zune-core/std" ] |
24 | log = ["zune-core/log" ] |
25 | default = ["x86" , "neon" , "std" ] |
26 | |
27 | [dependencies] |
28 | zune-core = { path = "../zune-core" , version = "0.4" } |
29 | |
30 | |
31 | [dev-dependencies] |
32 | zune-ppm = { path = "../zune-ppm" } |
33 | |