Skip to content

chore(deps): bump the cargo group across 1 directory with 5 updates#177

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/cargo/cargo-0930a6e610
Open

chore(deps): bump the cargo group across 1 directory with 5 updates#177
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/cargo/cargo-0930a6e610

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Mar 13, 2026

Bumps the cargo group with 4 updates in the / directory: soroban-sdk, stellar-xdr, keccak and time.

Updates soroban-sdk from 23.1.0 to 23.5.3

Release notes

Sourced from soroban-sdk's releases.

23.5.3

What's Changed

Full Changelog: stellar/rs-soroban-sdk@v23.5.2...v23.5.3

23.5.2

What's Changed

Bugs Fixed

All Changes

Full Changelog: stellar/rs-soroban-sdk@v23.5.1...v23.5.2

23.5.1

What's Changed

Bug Fixes

All Changes

Full Changelog: stellar/rs-soroban-sdk@v23.5.0...v23.5.1

23.5.0

What's Changed

New Features

  • MuxedAddress String Parsing: Added MuxedAddress::from_str and from_string methods to parse Stellar strkey addresses (G.../M.../C...) directly in contracts using no-alloc strkey parsing for Wasm compatibility. (stellar/rs-soroban-sdk#1701 #1678)

All Changes

Full Changelog: stellar/rs-soroban-sdk@v23.4.1...v23.5.0

23.4.1

What's Changed

Full Changelog: stellar/rs-soroban-sdk@v23.4.0...v23.4.1

23.4.0

What's Changed

... (truncated)

Commits
  • d3e1ab2 Fix Fr scalar field to reduce modulo r on construction (#1758)
  • df56ce8 Bump version to 23.5.3
  • 347f711 Fix trait method call resolution in contractimpl (#1729)
  • 9ec7aed Bump version to 23.5.2
  • 59fcef4 Fix range bound overflow in Vec/Bytes slice and GenRange gen_range for u64 (#...
  • 7870f0d Bump version to 23.5.1
  • 09f6ccf update fuzz lock
  • be3dc16 Add MuxedAddress::from_str and from_string methods (#1678)
  • a55c37b Bump version to 23.5.0
  • e671b39 test: update new event tests for v23
  • Additional commits viewable in compare view

Updates stellar-xdr from 23.0.0 to 25.0.1

Release notes

Sourced from stellar-xdr's releases.

25.0.1

What's Changed

Full Changelog: stellar/rs-stellar-xdr@v25.0.0...v25.0.1

25.0.0

What's Changed

New Contributors

Full Changelog: stellar/rs-stellar-xdr@v23.0.0...v25.0.0

25.0.0-rc.1

What's Changed

New Contributors

Full Changelog: stellar/rs-stellar-xdr@v23.0.0...v25.0.0-rc.1

24.0.1

What's Changed

Full Changelog: stellar/rs-stellar-xdr@v24.0.0...v24.0.1

24.0.0

Administrative release, no changes since 23.0.0

Commits

Updates keccak from 0.1.5 to 0.1.6

Commits

Updates soroban-sdk-macros from 23.1.0 to 23.5.3

Release notes

Sourced from soroban-sdk-macros's releases.

23.5.3

What's Changed

Full Changelog: stellar/rs-soroban-sdk@v23.5.2...v23.5.3

23.5.2

What's Changed

Bugs Fixed

All Changes

Full Changelog: stellar/rs-soroban-sdk@v23.5.1...v23.5.2

23.5.1

What's Changed

Bug Fixes

All Changes

Full Changelog: stellar/rs-soroban-sdk@v23.5.0...v23.5.1

23.5.0

What's Changed

New Features

  • MuxedAddress String Parsing: Added MuxedAddress::from_str and from_string methods to parse Stellar strkey addresses (G.../M.../C...) directly in contracts using no-alloc strkey parsing for Wasm compatibility. (stellar/rs-soroban-sdk#1701 #1678)

All Changes

Full Changelog: stellar/rs-soroban-sdk@v23.4.1...v23.5.0

23.4.1

What's Changed

Full Changelog: stellar/rs-soroban-sdk@v23.4.0...v23.4.1

23.4.0

What's Changed

... (truncated)

Commits
  • d3e1ab2 Fix Fr scalar field to reduce modulo r on construction (#1758)
  • df56ce8 Bump version to 23.5.3
  • 347f711 Fix trait method call resolution in contractimpl (#1729)
  • 9ec7aed Bump version to 23.5.2
  • 59fcef4 Fix range bound overflow in Vec/Bytes slice and GenRange gen_range for u64 (#...
  • 7870f0d Bump version to 23.5.1
  • 09f6ccf update fuzz lock
  • be3dc16 Add MuxedAddress::from_str and from_string methods (#1678)
  • a55c37b Bump version to 23.5.0
  • e671b39 test: update new event tests for v23
  • Additional commits viewable in compare view

Updates time from 0.3.41 to 0.3.47

Release notes

Sourced from time's releases.

v0.3.47

See the changelog for details.

v0.3.46

See the changelog for details.

v0.3.45

See the changelog for details.

v0.3.44

See the changelog for details.

v0.3.43

See the changelog for details.

v0.3.42

See the changelog for details.

Changelog

Sourced from time's changelog.

0.3.47 [2026-02-05]

Security

  • The possibility of a stack exhaustion denial of service attack when parsing RFC 2822 has been eliminated. Previously, it was possible to craft input that would cause unbounded recursion. Now, the depth of the recursion is tracked, causing an error to be returned if it exceeds a reasonable limit.

    This attack vector requires parsing user-provided input, with any type, using the RFC 2822 format.

Compatibility

  • Attempting to format a value with a well-known format (i.e. RFC 3339, RFC 2822, or ISO 8601) will error at compile time if the type being formatted does not provide sufficient information. This would previously fail at runtime. Similarly, attempting to format a value with ISO 8601 that is only configured for parsing (i.e. Iso8601::PARSING) will error at compile time.

Added

  • Builder methods for format description modifiers, eliminating the need for verbose initialization when done manually.
  • date!(2026-W01-2) is now supported. Previously, a space was required between W and 01.
  • [end] now has a trailing_input modifier which can either be prohibit (the default) or discard. When it is discard, all remaining input is ignored. Note that if there are components after [end], they will still attempt to be parsed, likely resulting in an error.

Changed

  • More performance gains when parsing.

Fixed

  • If manually formatting a value, the number of bytes written was one short for some components. This has been fixed such that the number of bytes written is always correct.
  • The possibility of integer overflow when parsing an owned format description has been effectively eliminated. This would previously wrap when overflow checks were disabled. Instead of storing the depth as u8, it is stored as u32. This would require multiple gigabytes of nested input to overflow, at which point we've got other problems and trivial mitigations are available by downstream users.

0.3.46 [2026-01-23]

Added

  • All possible panics are now documented for the relevant methods.
  • The need to use #[serde(default)] when using custom serde formats is documented. This applies only when deserializing an Option<T>.
  • Duration::nanoseconds_i128 has been made public, mirroring std::time::Duration::from_nanos_u128.

... (truncated)

Commits
  • d5144cd v0.3.47 release
  • f6206b0 Guard against integer overflow in release mode
  • 1c63dc7 Avoid denial of service when parsing Rfc2822
  • 5940df6 Add builder methods to avoid verbose construction
  • 00881a4 Manually format macros everywhere
  • bb723b6 Add trailing_input modifier to end
  • 31c4f8e Permit W12 in date! macro
  • 490a17b Mark error paths in well-known formats as cold
  • 6cb1896 Optimize Rfc2822 parsing
  • 6d264d5 Remove erroneous #[inline(never)] attributes
  • Additional commits viewable in compare view

You can trigger a rebase of this PR 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
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

Bumps the cargo group with 4 updates in the / directory: [soroban-sdk](https://github.com/stellar/rs-soroban-sdk), [stellar-xdr](https://github.com/stellar/rs-stellar-xdr), [keccak](https://github.com/RustCrypto/sponges) and [time](https://github.com/time-rs/time).


Updates `soroban-sdk` from 23.1.0 to 23.5.3
- [Release notes](https://github.com/stellar/rs-soroban-sdk/releases)
- [Commits](stellar/rs-soroban-sdk@v23.1.0...v23.5.3)

Updates `stellar-xdr` from 23.0.0 to 25.0.1
- [Release notes](https://github.com/stellar/rs-stellar-xdr/releases)
- [Commits](stellar/rs-stellar-xdr@v23.0.0...v25.0.1)

Updates `keccak` from 0.1.5 to 0.1.6
- [Commits](RustCrypto/sponges@keccak-v0.1.5...keccak-v0.1.6)

Updates `soroban-sdk-macros` from 23.1.0 to 23.5.3
- [Release notes](https://github.com/stellar/rs-soroban-sdk/releases)
- [Commits](stellar/rs-soroban-sdk@v23.1.0...v23.5.3)

Updates `time` from 0.3.41 to 0.3.47
- [Release notes](https://github.com/time-rs/time/releases)
- [Changelog](https://github.com/time-rs/time/blob/main/CHANGELOG.md)
- [Commits](time-rs/time@v0.3.41...v0.3.47)

---
updated-dependencies:
- dependency-name: soroban-sdk
  dependency-version: 23.5.3
  dependency-type: direct:production
  dependency-group: cargo
- dependency-name: stellar-xdr
  dependency-version: 25.0.1
  dependency-type: direct:production
  dependency-group: cargo
- dependency-name: keccak
  dependency-version: 0.1.6
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: soroban-sdk-macros
  dependency-version: 23.5.3
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: time
  dependency-version: 0.3.47
  dependency-type: indirect
  dependency-group: cargo
...

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 Mar 13, 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