File tree Expand file tree Collapse file tree 2 files changed +16
-2
lines changed Expand file tree Collapse file tree 2 files changed +16
-2
lines changed Original file line number Diff line number Diff line change 2
2
All notable changes to this project will be documented in this file.
3
3
This project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
4
4
5
+ ## v0.2.3 (2022-02-14)
6
+
7
+ - Added ` Decoder::set_max_decoding_buffer_size ` which limits the bytes
8
+ allocated for the output of the decoding process.
9
+ - Added Arm64-Neon intrinsic implementation of idct and color conversion. This
10
+ depends on a Rust nightly compiler feature ([ ` aarch64_target_feature ` ] ) and
11
+ it must be explicitly enabled. As soon as the minimum supported Rust version
12
+ includes the stabilization of this feature, the code will be enabled by
13
+ default and the feature changed to do nothing.
14
+
15
+ [ `aarch64_target_feature` ] : https://github.com/rust-lang/rust/issues/90620
16
+
5
17
## v0.2.2 (2022-02-12)
6
18
7
19
- Added and SSE3-specific SIMD intrinsic implementation for idct and color
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " jpeg-decoder"
3
- version = " 0.2.2 "
3
+ version = " 0.2.3 "
4
4
authors = [" The image-rs Developers" ]
5
5
description = " JPEG decoder"
6
6
documentation = " https://docs.rs/jpeg-decoder"
7
7
repository = " https://github.com/image-rs/jpeg-decoder"
8
8
readme = " README.md"
9
9
keywords = [" jpeg" , " jpg" , " decoder" , " image" ]
10
10
license = " MIT / Apache-2.0"
11
- exclude = [" tests/*" ]
11
+ exclude = [" / tests/*" , " !/tests/*.rs " ]
12
12
edition = " 2018"
13
13
14
14
[dependencies ]
@@ -22,6 +22,8 @@ criterion = "0.3"
22
22
[features ]
23
23
default = [" rayon" ]
24
24
platform_independent = []
25
+ # Opt-in, this depends on Rust nightly. Will be changed to a no-op feature when
26
+ # the Rust feature is stabilized which is expected to be 1.61.
25
27
nightly_aarch64_neon = []
26
28
27
29
# # Internal development configuration: testing and benchmarking
You can’t perform that action at this time.
0 commit comments