Skip to content

Build(deps): bump the all-dependencies group with 5 updates#32

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/cargo/all-dependencies-02f75faca7
Open

Build(deps): bump the all-dependencies group with 5 updates#32
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/cargo/all-dependencies-02f75faca7

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the all-dependencies group with 5 updates:

Package From To
bech32 0.11.1 0.12.0
cc 1.2.63 1.2.64
memchr 2.8.1 2.8.2
smallvec 1.15.1 1.15.2
zeroize 1.8.2 1.9.0

Updates bech32 from 0.11.1 to 0.12.0

Changelog

Sourced from bech32's changelog.

0.12.0 - 2024-10-27

This release adds error correction.

  • Make Hrp::len function const #212
  • Remove unused argument on CheckedHrpstring::fe32_iter #235
  • Fix min/max size hint in HrpFe32Iter #253
  • Add support for error correction #203 #204 #205
  • Alternative fes_to_bytes_zeropad with no dropping of last bits #201
  • Derive Default for Fe32 #184
  • Introduce a PrintImpl object that can compute various code properties #180
  • Add a Hrp constructor from an arbitrary T: Display #196

0.11.0 - 2024-02-23

The 0.10.0 release contains API breaking changes compared to 0.10.0-beta and because of semver rules (which we adhere to) cannot be released with that version number, we had to yank it and re-do the release as 0.11.0 - sorry.

0.10.0 - 2024-02-22 - yanked

Release the new primitives module! This release is a total re-write of the crate - enjoy.

Right before doing this release we added a few API improvements to the primitives::decode module:

  • Add accessor functions to the decode types #167
  • Add CheckedHrpstring::fe32_iter function #174
  • Make a couple of the functions on CheckedHrpstring struct public #173

0.10.0-beta

Re-implement the crate level API using the new primitives module.

0.10.0-alpha

This release introduces a new primitives module that is basically a new implementation of the whole crate. We also add a segwit module but we have not yet settled on the exact new API in lib.rs, hence the alpha release.

0.9.1

0.9.0

Commits

Updates cc from 1.2.63 to 1.2.64

Release notes

Sourced from cc's releases.

cc-v1.2.64

Other

  • Add more bare-metal 32-bit Arm support (#1753)
  • Remove unnecessary clone (#1748)
  • Add default compiler prefixes for thumbv7a/thumbv7r/thumbv8r bare-metal targets (#1742)
Changelog

Sourced from cc's changelog.

1.2.64 - 2026-06-12

Other

  • Add more bare-metal 32-bit Arm support (#1753)
  • Remove unnecessary clone (#1748)
  • Add default compiler prefixes for thumbv7a/thumbv7r/thumbv8r bare-metal targets (#1742)
Commits

Updates memchr from 2.8.1 to 2.8.2

Commits
  • a61ac1a 2.8.2
  • a08bf90 arch: fix undefined behavior in lower level (but public) APIs
  • b41293b rebar: update memchr to latest
  • 87467c9 impl: remove unnecessary clones in into_owned impls
  • See full diff in compare view

Updates smallvec from 1.15.1 to 1.15.2

Release notes

Sourced from smallvec's releases.

v1.15.2

What's Changed

New Contributors

Full Changelog: servo/rust-smallvec@v1.15.1...v1.15.2

Commits
  • c469051 Bump version.
  • 9fe422b Fix Windows CI.
  • 51b965f Work around rustc 1.93 perf regression with MaybeUninit
  • 9da26a5 Fix use-after-free in DrainFilter::keep_rest for zero-capacity SmallVecs
  • 79184f1 Add Miri test for use-after-free in DrainFilter::keep_rest
  • f59fb36 Merge pull request #397 from GiGainfosystems/exclude_scripts
  • 28b6ed7 Exclude development script
  • See full diff in compare view

Updates zeroize from 1.8.2 to 1.9.0

Commits

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 <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the all-dependencies group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [bech32](https://github.com/rust-bitcoin/rust-bech32) | `0.11.1` | `0.12.0` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.2.63` | `1.2.64` |
| [memchr](https://github.com/BurntSushi/memchr) | `2.8.1` | `2.8.2` |
| [smallvec](https://github.com/servo/rust-smallvec) | `1.15.1` | `1.15.2` |
| [zeroize](https://github.com/RustCrypto/utils) | `1.8.2` | `1.9.0` |


Updates `bech32` from 0.11.1 to 0.12.0
- [Changelog](https://github.com/rust-bitcoin/rust-bech32/blob/master/CHANGELOG.md)
- [Commits](rust-bitcoin/rust-bech32@bech32-0.11.1...bech32-0.12.0)

Updates `cc` from 1.2.63 to 1.2.64
- [Release notes](https://github.com/rust-lang/cc-rs/releases)
- [Changelog](https://github.com/rust-lang/cc-rs/blob/main/CHANGELOG.md)
- [Commits](rust-lang/cc-rs@cc-v1.2.63...cc-v1.2.64)

Updates `memchr` from 2.8.1 to 2.8.2
- [Commits](BurntSushi/memchr@2.8.1...2.8.2)

Updates `smallvec` from 1.15.1 to 1.15.2
- [Release notes](https://github.com/servo/rust-smallvec/releases)
- [Commits](servo/rust-smallvec@v1.15.1...v1.15.2)

Updates `zeroize` from 1.8.2 to 1.9.0
- [Commits](RustCrypto/utils@zeroize-v1.8.2...zeroize-v1.9.0)

---
updated-dependencies:
- dependency-name: bech32
  dependency-version: 0.12.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: cc
  dependency-version: 1.2.64
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: memchr
  dependency-version: 2.8.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: smallvec
  dependency-version: 1.15.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: zeroize
  dependency-version: 1.9.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
...

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 22, 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.

0 participants