Skip to content

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

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/dryoc-0.8.0
Open

build(deps): bump dryoc from 0.7.2 to 0.8.0#366
dependabot[bot] wants to merge 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

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

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 added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Jun 2, 2026
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