Bump the cargo-dependencies group across 1 directory with 3 updates - #2
Closed
dependabot[bot] wants to merge 1 commit into
Closed
Bump the cargo-dependencies group across 1 directory with 3 updates#2dependabot[bot] wants to merge 1 commit into
dependabot[bot] wants to merge 1 commit into
Conversation
Updates the requirements on [prettyplease](https://github.com/dtolnay/prettyplease), [syn](https://github.com/dtolnay/syn) and [heapless](https://github.com/rust-embedded/heapless) to permit the latest version. Updates `prettyplease` to 0.3.0 - [Release notes](https://github.com/dtolnay/prettyplease/releases) - [Commits](dtolnay/prettyplease@0.2.0...0.3.0) Updates `syn` to 3.0.3 - [Release notes](https://github.com/dtolnay/syn/releases) - [Commits](dtolnay/syn@2.0.0...3.0.3) Updates `heapless` to 0.9.3 - [Release notes](https://github.com/rust-embedded/heapless/releases) - [Changelog](https://github.com/rust-embedded/heapless/blob/main/CHANGELOG.md) - [Commits](rust-embedded/heapless@v0.8.0...v0.9.3) --- updated-dependencies: - dependency-name: heapless dependency-version: 0.9.3 dependency-type: direct:production dependency-group: cargo-dependencies - dependency-name: prettyplease dependency-version: 0.3.0 dependency-type: direct:production dependency-group: cargo-dependencies - dependency-name: syn dependency-version: 3.0.3 dependency-type: direct:production dependency-group: cargo-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
dependabot
Bot
force-pushed
the
dependabot/cargo/cargo-dependencies-93717a68f1
branch
from
August 5, 2026 15:44
2e608cf to
c5163b5
Compare
Joatin
added a commit
that referenced
this pull request
Aug 5, 2026
…#3) Dependabot proposed all three (#2). The two dev-time ones are safe to take: ocpp-codegen isn't published, and prettyplease 0.3's output is byte-identical on every generated file, so the drift check passes untouched. heapless 0.9 is deliberately left out. serde-json-core 0.6 -- the latest -- still depends on heapless 0.8, so taking 0.9 would compile *two* copies of heapless into any downstream binary that enables the `serde` feature. That's a real size cost for a crate whose selling point is embedded/no-alloc, and no heapless type crosses this crate's public API to justify it. The pin carries a comment saying when to revisit. heapless 0.9 does change `String::try_from`'s error from `()` to `CapacityError`, which is what broke the Dependabot branch: IdTag and MessageId both declare `type Error = ()` and forwarded that result directly. They now map the error away, so the wrapper's own error type stays `()` -- this crate's public API, not something that should track a dependency's internals -- and the eventual 0.9 bump becomes a one-liner. Both types get a test asserting the associated type via a `TryFrom<&str, Error = ()>` bound, so a future bump can't silently change it. Claude-Session: https://claude.ai/code/session_01NHWdX2XtxE3iJNo5XbLCwC Co-authored-by: Claude Opus 5 <noreply@anthropic.com>
Contributor
Author
|
This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests. To ignore these dependencies, configure ignore rules in dependabot.yml |
dependabot
Bot
deleted the
dependabot/cargo/cargo-dependencies-93717a68f1
branch
August 5, 2026 22:32
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Updates the requirements on prettyplease, syn and heapless to permit the latest version.
Updates
prettypleaseto 0.3.0Release notes
Sourced from prettyplease's releases.
Commits
49e5089Release 0.3.0fcbf4d3Merge pull request #128 from dtolnay/syn33bcd9d9Update to syn 31a89d07Format with rustfmtdaa39f5Update actions/upload-artifact@v6 -> v744d4c3dUpdate actions/checkout@v6 -> v787d1c22Update examples to nightly-2026-02-0950a7042Raise required compiler to Rust 1.71ae76ee8Resolve unnecessary_map_or clippy lint938b756Raise required compiler to Rust 1.70Updates
synto 3.0.3Release notes
Sourced from syn's releases.
Commits
23dbaabRelease 3.0.316aad4eMerge pull request #2071 from dtolnay/compatibility42181b8Add explanation of compatibility strategyf3af08eUpdate test suite to nightly-2026-07-2188ee7beRelease 3.0.2587bc20Merge pull request #2070 from dtolnay/emptyrange96801f7Allow Error::new_range at empty cursor range9dc16c9Merge pull request #2069 from dtolnay/prevspan1db76b7Align on using impl trait across all Error constructorsbfa1ebfMake Cursor::prev_span publicUpdates
heaplessto 0.9.3Release notes
Sourced from heapless's releases.
Changelog
Sourced from heapless's changelog.
... (truncated)
Commits
ca95c4bMerge pull request #656 from sgued/release-093c3d2061Prepare release 0.9.3fba1da4Merge pull request #644 from tower120/const_vec_from_array6bb5909Fix clippy lints666a0acVec::from_array now const0db1fb3Add IDEA files to gitignorebe8628aMerge pull request #647 from sgued/646-clear-use-after-freee458255Fix possible use after free inclearfunctions45a1f11Merge pull request #641 from sgued/deque-pop-front-if8d95d99deque: Add pop_front_if and pop_back_if