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
46 changes: 23 additions & 23 deletions Cargo.lock

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

2 changes: 2 additions & 0 deletions crypto-common/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- `BlockUser::BlockSize` is now bounded by the `BlockSizes` trait
- Edition changed to 2024 and MSRV bumped to 1.85 ([#1759])
- Bump `rand_core` to v0.10 ([#2250])
- Bump `getrandom` to v0.4 ([#2258])

### Removed
- `generate_*` and `try_generate_*` methods from KeyInit and KeyIvInit traits.
Expand All @@ -24,6 +25,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[#2096]: https://github.com/RustCrypto/traits/pull/2096
[#2213]: https://github.com/RustCrypto/traits/pull/2213
[#2250]: https://github.com/RustCrypto/traits/pull/2250
[#2258]: https://github.com/RustCrypto/traits/pull/2258

## 0.1.7 (2025-11-12)
### Changed
Expand Down
2 changes: 1 addition & 1 deletion crypto-common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ description = "Common cryptographic traits"
hybrid-array = "0.4"

# optional dependencies
getrandom = { version = "0.4.0-rc.1", optional = true, features = ["sys_rng"] }
getrandom = { version = "0.4", optional = true, features = ["sys_rng"] }
Copy link
Copy Markdown
Member

@newpavlov newpavlov Feb 2, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe we should gate sys_rng on rand_core?

I don't mean it should be done as part of this PR, just noticed this while reviewing this PR.

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It is:

[features]
getrandom = ["rand_core", "dep:getrandom"]

The only way you can use getrandom is rand_core+sys_rng

rand_core = { version = "0.10", optional = true }

[features]
Expand Down
2 changes: 2 additions & 0 deletions password-hash/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
- Edition changed to 2024 and MSRV bumped to 1.85 ([#1759])
- Bump `rand_core` to v0.10 ([#2250])
- Bump `getrandom` to v0.4 ([#2258])

[#1759]: https://github.com/RustCrypto/traits/pull/1759
[#2250]: https://github.com/RustCrypto/traits/pull/2250
[#2258]: https://github.com/RustCrypto/traits/pull/2258

## 0.5.0 (2023-03-04)
### Added
Expand Down
2 changes: 1 addition & 1 deletion password-hash/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ formats (e.g. Modular Crypt Format)
"""

[dependencies]
getrandom = { version = "0.4.0-rc.1", optional = true, default-features = false }
getrandom = { version = "0.4", optional = true, default-features = false }
phc = { version = "0.6.0-rc.1", optional = true, default-features = false }
rand_core = { version = "0.10", optional = true, default-features = false }

Expand Down