File tree Expand file tree Collapse file tree 3 files changed +13
-3
lines changed Expand file tree Collapse file tree 3 files changed +13
-3
lines changed Original file line number Diff line number Diff line change 11# Changes for crc-fast-rust
22
3+ ## [ 1.6.0] ( https://github.com/awesomized/crc-fast-rust/releases/tag/1.6.0 ) - 2025-10-30
4+ * [ Improve runtime feature detection (and performance)] ( https://github.com/awesomized/crc-fast-rust/pull/21 )
5+ * [ remove libc] ( https://github.com/awesomized/crc-fast-rust/pull/20 )
6+ * [ Enable generating and publishing binary packages] ( https://github.com/awesomized/crc-fast-rust/pull/22 )
7+
38## [ 1.5.0] ( https://github.com/awesomized/crc-fast-rust/releases/tag/1.5.0 ) - 2025-09-01
49* [ Improve state handling] ( https://github.com/awesomized/crc-fast-rust/pull/16 )
510* [ Add support for building a static library] ( https://github.com/awesomized/crc-fast-rust/pull/17 )
Original file line number Diff line number Diff line change 11[package ]
22name = " crc-fast"
3- version = " 1.5 .0"
3+ version = " 1.6 .0"
44edition = " 2021"
55authors = [" Don MacAskill" ]
66license = " MIT OR Apache-2.0"
@@ -10,7 +10,10 @@ repository = "https://github.com/awesomized/crc-fast-rust"
1010description = " World's fastest generic CRC32 and CRC64 calculator using SIMD. Supplies a C-compatible shared library for use in other languages."
1111readme = " README.md"
1212
13- # 1.69.0 added VPCLMULQDQ x86 detection support, 1.70.0 added LLVM 16 which supports PMULL2 on Aarch64
13+ # important intrinsics stabilization notes:
14+ # 1.69.0 added VPCLMULQDQ x86 detection support
15+ # 1.70.0 added LLVM 16 which supports PMULL2 on Aarch64
16+ # 1.89.0 stabilized AVX-512 intrinsics, including VPCLMULQDQ
1417rust-version = " 1.81"
1518
1619[lib ]
@@ -23,6 +26,8 @@ crc = "3"
2326digest = { version = " 0.10" , features = [" alloc" ] }
2427rand = " 0.9"
2528regex = " 1.12"
29+
30+ # will be removed once Rust 1.89 is the minimum supported version
2631rustversion = " 1.0"
2732
2833# constrain indexmap (transitive) to a version compatible with Rust 1.81.0
You can’t perform that action at this time.
0 commit comments