Skip to content

Commit

Permalink
fix ahash MSRV nonsense
Browse files Browse the repository at this point in the history
  • Loading branch information
tobz committed Feb 11, 2024
1 parent 019bc0e commit f7e979a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions metrics/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased] - ReleaseDate

### Fixed

- Lock down the version of `ahash` to avoid unnecessary MSRV bumping.

## [0.22.0] - 2023-12-24

### Added
Expand Down
2 changes: 1 addition & 1 deletion metrics/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ name = "macros"
harness = false

[dependencies]
ahash = { version = "0.8", default-features = false }
ahash = { version = "> 0.8, <= 0.8.7", default-features = false }

[target.'cfg(target_pointer_width = "32")'.dependencies]
portable-atomic = { version = "1", default-features = false, features = [
Expand Down

0 comments on commit f7e979a

Please sign in to comment.