Skip to content

Commit

Permalink
Upgrade to hashbrown v0.13
Browse files Browse the repository at this point in the history
  • Loading branch information
benesch committed Dec 19, 2022
1 parent cf063f6 commit 99ff1cf
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
Expand Up @@ -16,7 +16,7 @@ jobs:
- stable
- beta
- nightly
- 1.56.0 # MSRV
- 1.61.0 # MSRV

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

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

[dev-dependencies]
scoped_threadpool = "0.1.*"
Expand Down
2 changes: 1 addition & 1 deletion README.md
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.56.0.
The MSRV for this crate is 1.61.0.

## Example

Expand Down

0 comments on commit 99ff1cf

Please sign in to comment.