Skip to content

Commit e8fa2ee

Browse files
authored
bash-prg-hash: fix minimal versions (#861)
The crate depends on `TryCustomizedInit` which was introduced in `digest` v0.11.3. The minimal versions job was broken (see RustCrypto/actions#59), so it missed the incorrect dependency specification.
1 parent 4e11f39 commit e8fa2ee

2 files changed

Lines changed: 7 additions & 2 deletions

File tree

bash-prg-hash/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 0.1.1 (UNRELEASED)
9+
### Fixed
10+
- Use correct minimal version of `digest` dependency ([#861])
11+
12+
[#861]: https://github.com/RustCrypto/hashes/pull/861
813

914
## 0.1.0 (2026-05-12)
1015
- Initial release ([#751])

bash-prg-hash/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ keywords = ["belt", "stb", "hash", "digest"]
1313
categories = ["cryptography", "no-std"]
1414

1515
[dependencies]
16-
digest = { version = "0.11", default-features = false }
16+
digest = { version = "0.11.3", default-features = false }
1717
bash-f = "0.1"
1818
sponge-cursor = "0.1"
1919

2020
[dev-dependencies]
21-
digest = { version = "0.11", features = ["dev"] }
21+
digest = { version = "0.11.3", default-features = false, features = ["dev"] }
2222
hex-literal = "1"
2323

2424
[features]

0 commit comments

Comments
 (0)