Skip to content

build(deps): bump dryoc from 0.7.2 to 0.8.0#366

Merged
paolodamico merged 1 commit into
mainfrom
dependabot/cargo/dryoc-0.8.0
Jun 17, 2026
Merged

build(deps): bump dryoc from 0.7.2 to 0.8.0#366
paolodamico merged 1 commit into
mainfrom
dependabot/cargo/dryoc-0.8.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 2, 2026

Copy link
Copy Markdown
Contributor

Bumps dryoc from 0.7.2 to 0.8.0.

Release notes

Sourced from dryoc's releases.

v0.8.0

dryoc v0.8.0

dryoc 0.8.0 moves the crate to Rust 2024 with Rust 1.89 as the MSRV, adds optional direct wincode serialization for Rustaceous box types, and expands opt-in nightly portable SIMD coverage for secretbox, Poly1305, Argon2, and BLAKE2b internals.

This release also fixes protected-memory permission coverage, adds generate() aliases for Rust 2024 callers, and broadens fuzz coverage around parser and decryptor boundaries.

Full Changelog: brndnmtthws/dryoc@v0.7.2...v0.8.0

Breaking Changes

  • The minimum supported Rust version is now Rust 1.89. Cargo.toml now declares edition = "2024" and rust-version = "1.89".
  • Rust 2024 reserves gen as a keyword. Prefer the new generate() APIs. Existing generation APIs remain available through raw identifier syntax such as Key::r#gen() for compatibility and are documented as candidates for future deprecation.
  • Several direct dependencies were updated to current major versions, including base64 0.22, chacha20 0.10, salsa20 0.11, sha2 0.11, rand 0.10, subtle 2.6, and zeroize 1.8.

Upgrade Notes

Update your Rust toolchain and manifest before building:

rustup update stable
cargo update -p dryoc --precise 0.8.0

If your Cargo.toml pins a 0.7 requirement, update it to 0.8 first:

dryoc = "0.8"

For random generation in Rust 2024 code, prefer:

let key = dryoc::dryocsecretbox::Key::generate();

Existing compatibility calls use raw identifier syntax:

let key = dryoc::dryocsecretbox::Key::r#gen();

Enable direct wincode serialization only where needed:

dryoc = { version = "0.8", features = ["wincode"] }

The internal portable SIMD backends remain opt-in and nightly-gated:

... (truncated)

Commits


Note

Medium Risk
Touches a crypto dependency used for root-key KDF with a major-version bump and a large lockfile churn, though the diff does not modify bedrock’s own crypto code.

Overview
Bumps dryoc in bedrock from 0.7.2 to 0.8.0, with Cargo.lock refreshed so transitive crypto crates resolve to the versions dryoc 0.8 pulls in (e.g. chacha20 0.10, sha2 0.11, rand 0.10, cipher 0.5). There are no application source changes; bedrock still depends on dryoc only for dryoc::kdf::Kdf in root key handling.

Callers should treat this as aligning with dryoc’s Rust 1.89 / edition 2024 MSRV and its updated major dependency stack; behavior should stay the same unless dryoc’s KDF or internals changed incompatibly between releases.

Reviewed by Cursor Bugbot for commit 05318b1. Bugbot is set up for automated code reviews on this repo. Configure here.

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Jun 2, 2026
Bumps [dryoc](https://github.com/brndnmtthws/dryoc) from 0.7.2 to 0.8.0.
- [Release notes](https://github.com/brndnmtthws/dryoc/releases)
- [Commits](brndnmtthws/dryoc@v0.7.2...v0.8.0)

---
updated-dependencies:
- dependency-name: dryoc
  dependency-version: 0.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot force-pushed the dependabot/cargo/dryoc-0.8.0 branch from 6c2a7a6 to 05318b1 Compare June 16, 2026 22:17

@paolodamico paolodamico left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

dryoc was published 1+ month ago, with immutable releases, breaking changes don't affect us, we're already at rust 1.94

@paolodamico paolodamico merged commit 13edcf1 into main Jun 17, 2026
17 checks passed
@paolodamico paolodamico deleted the dependabot/cargo/dryoc-0.8.0 branch June 17, 2026 20:56
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file rust Pull requests that update rust code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants