Skip to content

Commit

Permalink
Merge pull request #126 from sfackler/dependabot/cargo/parking_lot-0.12
Browse files Browse the repository at this point in the history
Update parking_lot requirement from 0.11 to 0.12
  • Loading branch information
sfackler authored Jan 31, 2022
2 parents d398a3d + 0bc3576 commit c572a82
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: 2
jobs:
build:
docker:
- image: rust:1.36.0
- image: rust:1.49.0
steps:
- checkout
- restore_cache:
Expand All @@ -14,10 +14,10 @@ jobs:
paths:
- /usr/local/cargo/registry/index
- restore_cache:
key: dependencies-1.36-{{ checksum "Cargo.lock" }}
key: dependencies-1.49-{{ checksum "Cargo.lock" }}
- run: cargo test
- save_cache:
key: dependencies-1.36-{{ checksum "Cargo.lock" }}
key: dependencies-1.49-{{ checksum "Cargo.lock" }}
paths:
- target
- /usr/local/cargo/registry/cache
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ edition = "2018"

[dependencies]
log = "0.4"
parking_lot = "0.11"
parking_lot = "0.12"
scheduled-thread-pool = "0.2"

0 comments on commit c572a82

Please sign in to comment.