Skip to content

Commit

Permalink
Merge pull request #174 from sholderbach/bump-hashbrown-0.14
Browse files Browse the repository at this point in the history
Bump `hashbrown` to 0.14
  • Loading branch information
jeromefroe authored Jul 11, 2023
2 parents d03489b + 7ce2bbc commit f57f60b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- stable
- beta
- nightly
- 1.61.0 # MSRV
- 1.64.0 # MSRV

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ default = ["hashbrown"]
nightly = ["hashbrown", "hashbrown/nightly"]

[dependencies]
hashbrown = { version = "0.13", optional = true }
hashbrown = { version = "0.14", optional = true }

[dev-dependencies]
scoped_threadpool = "0.1.*"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ An implementation of a LRU cache. The cache supports `put`, `get`, `get_mut` and
all of which are O(1). This crate was heavily influenced by the [LRU Cache implementation in an
earlier version of Rust's std::collections crate].

The MSRV for this crate is 1.61.0.
The MSRV for this crate is 1.64.0.

## Example

Expand Down

0 comments on commit f57f60b

Please sign in to comment.