Skip to content

Conversation

oxide-renovate[bot]
Copy link
Contributor

@oxide-renovate oxide-renovate bot commented Mar 23, 2025

This PR contains the following updates:

Package Type Update Change
nom workspace.dependencies major 7.1 -> 8.0

Release Notes

rust-bakery/nom (nom)

v8.0.0

Compare Source

This version represents a significant refactoring of nom to reduce the amount of code generated by parsers, and reduce the API surface. As such, it comes with some breaking changes, mostly around the move from closure based combinators to trait based ones. In practice, it means that instead of writing combinator(arg)(input), we now write combinator(arg).parse(input).

This release also marks the introduction of the nom-language crate, which will hold tools more focused on language parsing than the rest of nom, like the VerboseError type and the newly added precedence parsing combinators.

Thanks
Added
  • Parser::map_res
  • Parser::map_opt
  • many and fold combinators using ranges
  • many can collect into other types than Vec
  • Error and VerboseError can be converted to owned versions
Removed
  • nom::bits::* is no longer re-exported at the crate root. This export caused frequent confusion, since e.g. nom::complete::tag referred to nom::bits::complete::tag instead of the much more commonly used nom::bytes::complete::tag. To migrate, change any imports of nom::{complete::*, streaming::*, bits, bytes} to nom::bits::[...].
  • parse combinator
  • InputIter, InputTakeAtPosition, InputLength, InputTake and Slice are now merged in the Input trait
Changed
  • Parser::map and Parser::flat_map now take a FnMut as argument

Configuration

📅 Schedule: Branch creation - "after 8pm,before 6am" in timezone America/Los_Angeles, Automerge - "after 8pm,before 6am" in timezone America/Los_Angeles.

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

@oxide-renovate
Copy link
Contributor Author

oxide-renovate bot commented Sep 6, 2025

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path Cargo.toml --package [email protected] --precise 8.0.0
    Updating crates.io index
error: failed to select a version for the requirement `nom = "^7"`
candidate versions found which didn't match: 8.0.0
location searched: crates.io index
required by package `cexpr v0.6.0`
    ... which satisfies dependency `cexpr = "^0.6"` (locked to 0.6.0) of package `bindgen v0.69.5`
    ... which satisfies dependency `bindgen = "^0.69.5"` (locked to 0.69.5) of package `aws-lc-sys v0.30.0`
    ... which satisfies dependency `aws-lc-sys = "^0.30.0"` (locked to 0.30.0) of package `aws-lc-rs v1.13.3`
    ... which satisfies dependency `aws-lc-rs = "^1.12"` (locked to 1.13.3) of package `rustls v0.23.31`
    ... which satisfies dependency `rustls = "^0.23.4"` (locked to 0.23.31) of package `reqwest v0.12.23`
    ... which satisfies dependency `reqwest = "^0.12"` (locked to 0.12.23) of package `mg-ddm-verify v0.1.0 (/tmp/renovate/repos/github/oxidecomputer/maghemite/mg-ddm-verify)`

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants