Skip to content

Commit

Permalink
hmac: bump digest to v0.11.0-pre.7; MSRV 1.72 (#154)
Browse files Browse the repository at this point in the history
  • Loading branch information
tarcieri authored Jan 17, 2024
1 parent def43b4 commit cacc6fa
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 21 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/hmac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
strategy:
matrix:
rust:
- 1.71.0 # MSRV
- 1.72.0 # MSRV
- stable
target:
- thumbv7em-none-eabi
Expand All @@ -47,7 +47,7 @@ jobs:
strategy:
matrix:
rust:
- 1.71.0 # MSRV
- 1.72.0 # MSRV
- stable
steps:
- uses: actions/[email protected]
Expand Down
20 changes: 10 additions & 10 deletions hmac/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions hmac/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@ documentation = "https://docs.rs/hmac"
repository = "https://github.com/RustCrypto/MACs"
keywords = ["crypto", "mac", "hmac", "digest"]
categories = ["cryptography", "no-std"]
rust-version = "1.71"
rust-version = "1.72"

[dependencies]
digest = { version = "=0.11.0-pre.4", features = ["mac"] }
digest = { version = "=0.11.0-pre.7", features = ["mac"] }

[dev-dependencies]
digest = { version = "=0.11.0-pre.4", features = ["dev"] }
md-5 = { version = "=0.11.0-pre.1", default-features = false }
sha1 = { version = "=0.11.0-pre.1", default-features = false }
sha2 = { version = "=0.11.0-pre.1", default-features = false }
streebog = { version = "=0.11.0-pre.1", default-features = false }
digest = { version = "=0.11.0-pre.7", features = ["dev"] }
md-5 = { version = "=0.11.0-pre.2", default-features = false }
sha1 = { version = "=0.11.0-pre.2", default-features = false }
sha2 = { version = "=0.11.0-pre.2", default-features = false }
streebog = { version = "=0.11.0-pre.2", default-features = false }
hex-literal = "0.4"

[features]
Expand Down
4 changes: 2 additions & 2 deletions hmac/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Pure Rust implementation of the [Hash-based Message Authentication Code (HMAC)][

## Minimum Supported Rust Version

Rust **1.71** or higher.
Rust **1.72** or higher.

Minimum supported Rust version can be changed in the future, but it will be
done with a minor version bump.
Expand Down Expand Up @@ -44,7 +44,7 @@ dual licensed as above, without any additional terms or conditions.
[docs-image]: https://docs.rs/hmac/badge.svg
[docs-link]: https://docs.rs/hmac/
[license-image]: https://img.shields.io/badge/license-Apache2.0/MIT-blue.svg
[rustc-image]: https://img.shields.io/badge/rustc-1.71+-blue.svg
[rustc-image]: https://img.shields.io/badge/rustc-1.72+-blue.svg
[chat-image]: https://img.shields.io/badge/zulip-join_chat-blue.svg
[chat-link]: https://rustcrypto.zulipchat.com/#narrow/stream/260044-MACs

Expand Down

0 comments on commit cacc6fa

Please sign in to comment.