Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 4 additions & 6 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,17 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Install nightly toolchain
run: rustup toolchain install nightly-2024-05-08
run: rustup toolchain install nightly-2025-06-27
- name: Install miri
run: rustup run nightly-2024-05-08 rustup component add miri
run: rustup run nightly-2025-06-27 rustup component add miri
- name: Build and test
run: ./ci/jobs/build-and-test.sh
fuzz:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install system dependencies
run: sudo apt-get install -y binutils-dev libunwind-dev
- name: Install honggfuzz
run: cargo install --locked --version 0.5.56 honggfuzz
- name: Install cargo fuzz
run: rustup run nightly-2025-06-27 cargo install --locked --version 0.13.1 cargo-fuzz
- name: Fuzz
run: ./ci/jobs/fuzz.sh
clippy:
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

- `hashbrown` was updated to 0.14.5
- replaced `honggfuzz` by `libfuzzer-sys`
- Set MSRV to 1.78.0

## 0.2.4 - 2025-01-03

- Implement `From` for `ByLength` and `ByMemoryUsage` (#9)
Expand Down
Loading