Skip to content
Merged
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
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
rust: [1.63.0, stable]
rust: [1.85.0, stable]

include:
- rust: 1.63.0
- rust: 1.85.0
test_no_std: false
- rust: 1.63.0
- rust: 1.85.0
test_no_std: true
- rust: stable
test_no_std: true
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:

- uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.63.0
toolchain: 1.85.0
components: clippy

- run: cargo clippy -- -D warnings
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
Add the following to Cargo.toml:

```toml
bcrypt = "0.17"
bcrypt = "0.18"
```

The minimum Rust version is 1.63.0.
The minimum Rust version is 1.85.0.

## Usage
The crate makes 3 things public: `DEFAULT_COST`, `hash`, `verify`.
Expand Down