Skip to content

Commit f88ca8f

Browse files
committed
Merge branch 'main' into enable-vpclmulqdq-on-rust-1.89
2 parents dbbc9ee + 4ea82ea commit f88ca8f

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,11 @@ jobs:
2222
with:
2323
toolchain: ${{ matrix.rust-toolchain }}
2424
components: rustfmt, clippy
25+
cache-key: ${{ matrix.os }}-${{ matrix.rust-toolchain }}
2526
- name: Check
2627
run: cargo check
2728
- name: Architecture check
2829
run: cargo run arch-check
29-
- name: Architecture check (Optimized)
30-
run: cargo run arch-check
3130
- if: ${{ matrix.rust-toolchain != 'nightly' }}
3231
name: Format
3332
run: cargo fmt -- --check

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changes for crc-fast-rust
22

3+
## [1.3.0](https://github.com/awesomized/crc-fast-rust/releases/tag/1.3.0) - 2025-06-10
4+
* [Replace C bindings for CRC32 fusion calculation](https://github.com/awesomized/crc-fast-rust/pull/9)
5+
* [Improve VPCLMULQDQ to use 512-bit wide registers](https://github.com/awesomized/crc-fast-rust/pull/8)
6+
* [Implement hardware accelerated XOR3 support](https://github.com/awesomized/crc-fast-rust/pull/9)
7+
38
## [1.2.2](https://github.com/awesomized/crc-fast-rust/releases/tag/1.2.2) - 2025-06-02
49
* [Remove println! from software fallback](https://github.com/awesomized/crc-fast-rust/pull/4)
510

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "crc-fast"
3-
version = "1.2.2"
3+
version = "1.3.0"
44
edition = "2021"
55
authors = ["Don MacAskill"]
66
license = "MIT OR Apache-2.0"

0 commit comments

Comments
 (0)