Skip to content

deps(deps): bump x509-cert from 0.2.5 to 0.3.0 - #8390

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/x509-cert-0.3.0
Open

deps(deps): bump x509-cert from 0.2.5 to 0.3.0#8390
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/x509-cert-0.3.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 18, 2026

Copy link
Copy Markdown
Contributor

Bumps x509-cert from 0.2.5 to 0.3.0.

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 [x509-cert](https://github.com/RustCrypto/formats) from 0.2.5 to 0.3.0.
- [Commits](RustCrypto/formats@x509-cert/v0.2.5...x509-cert/v0.3.0)

---
updated-dependencies:
- dependency-name: x509-cert
  dependency-version: 0.3.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 Aug 18, 2026
@proggeramlug

Copy link
Copy Markdown
Contributor

Validated locally on macOS: this does not compile. cargo check --workspace --all-targets
(host-compatible scope) is green on origin/main and fails with 4 errors on this branch,
all in crates/perry-ext-node-forge/src/crypto.rs. x509-cert 0.3 is a breaking release and
this PR bumps the version without adapting the call sites.

error[E0432]: unresolved import `der::flagset`
   --> crates/perry-ext-node-forge/src/crypto.rs:21:10
    | use der::flagset::FlagSet;
note: found an item that was configured out

error[E0432]: unresolved import `x509_cert::ext::AsExtension`
  --> crates/perry-ext-node-forge/src/crypto.rs:35:5
   | no `AsExtension` in `ext`

error[E0423]: cannot initialize a tuple struct which contains private fields
   --> crates/perry-ext-node-forge/src/crypto.rs:242:19
    | rdns.push(RelativeDistinguishedName(set));

error[E0423]: cannot initialize a tuple struct which contains private fields
   --> crates/perry-ext-node-forge/src/crypto.rs:244:8
    | Ok(RdnSequence(rdns))

Three distinct adaptations are needed:

  1. der::flagset is now behind a feature that is off in this resolution — the der
    dependency needs its flagset feature enabled ("found an item that was configured out").
  2. x509_cert::ext::AsExtension moved or was renamed.
  3. RelativeDistinguishedName and RdnSequence no longer expose their tuple constructors;
    these need to go through the crate's own constructor API.

Leaving this open rather than merging. It needs a human to port crypto.rs.

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.

1 participant