forked from image-rs/jpeg-decoder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
54 lines (44 loc) · 1.12 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[package]
name = "jpeg-decoder"
version = "0.2.6"
authors = ["The image-rs Developers"]
description = "JPEG decoder"
documentation = "https://docs.rs/jpeg-decoder"
repository = "https://github.com/image-rs/jpeg-decoder"
readme = "README.md"
keywords = ["jpeg", "jpg", "decoder", "image"]
license = "MIT / Apache-2.0"
exclude = ["/tests/*", "!/tests/*.rs"]
edition = "2018"
[dependencies]
rayon = { version = "1.5.1", optional = true }
[dev-dependencies]
png = "0.16"
walkdir = "2.0"
criterion = "0.3"
wasm-bindgen-test = "0.3"
[features]
default = ["rayon"]
platform_independent = []
# Opt-in, this depends on Rust nightly. Will be changed to a no-op feature when
# the Rust feature is stabilized which is expected to be 1.61.
nightly_aarch64_neon = []
## Internal development configuration: testing and benchmarking
[[bench]]
name = "decoding_benchmark"
harness = false
[[bench]]
name = "large_image"
harness = false
[[test]]
name = "rayon"
required-features = ["rayon"]
[[test]]
name = "rayon-0"
required-features = ["rayon"]
[[test]]
name = "rayon-1"
required-features = ["rayon"]
[[test]]
name = "rayon-2"
required-features = ["rayon"]