Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 16, 2025

Bumps the program-dependencies group with 9 updates in the /rust-sdk/client directory:

Package From To
borsh 0.10.4 1.5.5
serde 1.0.218 1.0.219
serde_with 3.12.0 3.13.0
ethnum 1.5.0 1.5.2
libm 0.2.11 0.2.15
quote 1.0.39 1.0.40
proc-macro2 1.0.94 1.0.95
async-trait 0.1.87 0.1.88
tokio 1.44.2 1.45.1

Bumps the program-dependencies group with 6 updates in the /rust-sdk/core directory:

Package From To
serde 1.0.218 1.0.219
ethnum 1.5.0 1.5.2
libm 0.2.11 0.2.15
syn 2.0.99 2.0.103
quote 1.0.39 1.0.40
proc-macro2 1.0.94 1.0.95

Bumps the program-dependencies group with 3 updates in the /rust-sdk/macros directory: syn, quote and proc-macro2.
Bumps the program-dependencies group with 13 updates in the /rust-sdk/whirlpool directory:

Package From To
serde 1.0.218 1.0.219
serde_with 3.12.0 3.13.0
ethnum 1.5.0 1.5.2
libm 0.2.11 0.2.15
quote 1.0.39 1.0.40
proc-macro2 1.0.94 1.0.95
spl-token 6.0.0 7.0.0
spl-token-2022 4.0.0 7.0.0
spl-associated-token-account 4.0.0 6.0.0
async-trait 0.1.87 0.1.88
base64 0.20.0 0.22.1
tokio 1.43.0 1.45.1
spl-pod 0.5.0 0.5.1

Bumps the program-dependencies group with 6 updates in the /ts-sdk/core directory:

Package From To
serde 1.0.218 1.0.219
ethnum 1.5.0 1.5.2
libm 0.2.11 0.2.15
syn 2.0.99 2.0.103
quote 1.0.39 1.0.40
proc-macro2 1.0.94 1.0.95

Updates borsh from 0.10.4 to 1.5.5

Release notes

Sourced from borsh's releases.

borsh-derive-v1.5.5

No release notes provided.

borsh-v1.5.5

Other

  • bump hashbrown to 0.15 (#333)
  • fix typo in private module name (#332)

borsh-derive-v1.5.4

No release notes provided.

borsh-v1.5.4

Other

  • make doc examples testable in ci (#326)
  • add more CODEOWNERS (#327)

borsh-derive-v1.5.3

No release notes provided.

borsh-v1.5.3

Fixed

  • specify a minimum version for syn as 2.0.81 (#320)

borsh-derive-v1.5.2

No release notes provided.

borsh-v1.5.2

Added

  • ser/de for IpAddr type; schema for Ipv4Addr/Ipv6Addr/IpAddr types (#309)

Other

  • serde_json::Value bridging example/doc (#317)
  • remove dependency on syn_derive (#318)
  • cover one more syn::generics::TypeParamBound as per syntax change (#316)

borsh-derive-v1.5.1

No release notes provided.

borsh-v1.5.1

No release notes provided.

borsh-derive-v1.5.0

No release notes provided.

borsh-v1.5.0

... (truncated)

Changelog

Sourced from borsh's changelog.

1.5.5 - 2025-01-18

Other

  • bump hashbrown to 0.15 (#333)
  • fix typo in private module name (#332)

1.5.4 - 2025-01-13

Other

  • make doc examples testable in ci (#326)
  • add more CODEOWNERS (#327)

1.5.3 - 2024-11-13

Fixed

  • specify a minimum version for syn as 2.0.81 (#320)

1.5.2 - 2024-11-07

Added

  • ser/de for IpAddr type; schema for Ipv4Addr/Ipv6Addr/IpAddr types (#309)

Other

  • serde_json::Value bridging example/doc (#317)
  • remove dependency on syn_derive (#318)
  • cover one more syn::generics::TypeParamBound as per syntax change (#316)

1.5.1 - 2024-05-30

Added

  • (schema) for HashMap<K, V> -> HashMap<K, V, S>, for HashSet<T> -> HashSet<T, S> (#294)

Fixed

  • fixed linting warnings for Rust 1.78 stable, 1.80 nightly (#295)

1.5.0 - 2024-04-29

Added

  • implement BorshSchema for VecDeque and LinkedList (#291)

Other

  • Fix repository field of borsh-derive (#288)

1.4.0 - 2024-03-25

... (truncated)

Commits

Updates serde from 1.0.218 to 1.0.219

Release notes

Sourced from serde's releases.

v1.0.219

  • Prevent absolute_paths Clippy restriction being triggered inside macro-generated code (#2906, thanks @​davidzeng0)
Commits
  • 49d098d Release 1.0.219
  • 40f1d19 Wrap dummy.rs to 80 columns
  • 514848b Merge pull request #2906 from davidzeng0/master
  • 168b6cf fix clippy absolute paths warning
  • a8bdd17 Remove unused Punctuated import
  • 1c96013 Resolve mem_replace_with_default clippy lint
  • f0d1ae0 Ignore elidable_lifetime_names pedantic clippy lint
  • e3eaa6a Merge pull request #2896 from dtolnay/stabledoc
  • 6a630cf Also link to stable proc_macro
  • See full diff in compare view

Updates serde_with from 3.12.0 to 3.13.0

Release notes

Sourced from serde_with's releases.

serde_with v3.13.0

Added

  • Added support for schemars v0.9.0 under the schemars_0_9 feature flag by @​swlynch99 (#849)
  • Introduce SerializeDisplayAlt derive macro (#833) An alternative to the SerializeDisplay macro except instead of using the plain formatting like format!("{}", ...), it serializes with the Formatter::alternate flag set to true, like format!("{:#}", ...)

Changed

  • Generalize serde_with::rust::unwrap_or_skip to support deserializing references by @​beroal (#832)
  • Bump MSRV to 1.71, since that is required for the jsonschema dev-dependency.
  • Make serde_conv available without the std feature by @​arilou (#839)
  • Bump MSRV to 1.74, since that is required for schemars v0.9.0 by @​swlynch99 (#849)

Fixed

  • Make the DurationSeconds types and other variants more accessible even without std (#845)
Commits

Updates ethnum from 1.5.0 to 1.5.2

Release notes

Sourced from ethnum's releases.

v1.5.2

What's Changed

Full Changelog: nlordell/ethnum-rs@v1.5.1...v1.5.2

v1.5.1

What's Changed

Full Changelog: nlordell/ethnum-rs@v1.5.0...v1.5.1

Commits

Updates libm from 0.2.11 to 0.2.15

Release notes

Sourced from libm's releases.

libm-v0.2.15

Other

  • Require target_has_atomic = "ptr" for runtime feature detection

libm-v0.2.14

Other

  • Use runtime feature detection for fma routines on x86

libm-v0.2.13

Fixed

  • Switch back to workspace resolver v2 to unbreak builds without the 2024 edition

libm-v0.2.12

  • Mark generic functions #[inline]
  • Combine the source files for fmod
  • Ensure all public functions are marked no_panic
  • Add assembly version of simple operations on aarch64
  • Add roundeven{,f,f16,f128}
  • Add fminimum, fmaximum, fminimum_num, and fmaximum_num
  • Eliminate the use of force_eval! in ceil, floor, and trunc
  • Port the CORE-MATH version of cbrt
  • Add fmaf128
  • fma: Ensure zero has the correct sign
  • Add scalbnf16, scalbnf128, ldexpf16, and ldexpf128
  • Specify license as just MIT
  • Add fmodf128
  • Add fmodf16 using the generic implementation
  • Add fminf16, fmaxf16, fminf128, and fmaxf128
  • Add roundf16 and roundf128
  • Add rintf16 and rintf128
  • Add floorf16 and floorf128
  • Add ceilf16 and ceilf128
  • Add sqrtf16 and sqrtf128
  • Simplify and optimize fdim (#442)
  • Add fdimf16 and fdimf128
  • Add truncf16 and truncf128
  • Add fabsf16, fabsf128, copysignf16, and copysignf128
  • Move some numeric trait logic to default implementations
  • Add some more basic docstrings (#352)
  • Add support for loongarch64-unknown-linux-gnu
  • Add an "arch" Cargo feature that is on by default
  • Rename the special_case module to precision and move default ULP
  • Move the existing "unstable" feature to "unstable-intrinsics"

There are a number of things that changed internally, see the git log for a full list of changes.

Commits
  • a4c748f release-plz: Include the libm changelog in compiler-builtins
  • cf00941 chore: release
  • da8b582 Require target_has_atomic = "ptr" for runtime feature detection
  • 1b1b2ed ci: Mention ci: skip-extensive in the error message
  • 6d78c1a Replace super::super with crate::support where possible
  • 8e78411 docs: fix typo in Cargo.toml
  • 257dd48 chore: release
  • a2f6440 Use runtime feature detection for fma routines on x86
  • 6e4255a Rename the i686 module to x86
  • f83962e update-api-list: Match subdirectories within arch
  • Additional commits viewable in compare view

Updates serde from 1.0.218 to 1.0.219

Release notes

Sourced from serde's releases.

v1.0.219

  • Prevent absolute_paths Clippy restriction being triggered inside macro-generated code (#2906, thanks @​davidzeng0)
Commits
  • 49d098d Release 1.0.219
  • 40f1d19 Wrap dummy.rs to 80 columns
  • 514848b Merge pull request #2906 from davidzeng0/master
  • 168b6cf fix clippy absolute paths warning
  • a8bdd17 Remove unused Punctuated import
  • 1c96013 Resolve mem_replace_with_default clippy lint
  • f0d1ae0 Ignore elidable_lifetime_names pedantic clippy lint
  • e3eaa6a Merge pull request #2896 from dtolnay/stabledoc
  • 6a630cf Also link to stable proc_macro
  • See full diff in compare view

Updates quote from 1.0.39 to 1.0.40

Release notes

Sourced from quote's releases.

1.0.40

Commits
  • ab1e92c Release 1.0.40
  • 3ff6882 Merge pull request 293 from aatifsyed/master
  • 7a143c7 fix: set span on tick
  • 5998437 refactor: push_lifetime* goes through an array instead of a manual iterator
  • See full diff in compare view

Updates proc-macro2 from 1.0.94 to 1.0.95

Release notes

Sourced from proc-macro2's releases.

1.0.95

  • Update semver-exempt API under RUSTFLAGS=--cfg=procmacro2_semver_exempt to that of nightly-2025-04-16 (#497)
Commits
  • 24bbf16 Release 1.0.95
  • 835c5bd Merge pull request #497 from dtolnay/nosourcefile
  • 7bc363c Update semver-exempt API to nightly-2025-04-16
  • b867aa7 Merge pull request #496 from PaulGrandperrin/master
  • c605e8e Revert "Merge pull request #495 from dtolnay/fuzzlld"
  • 1993cd3 Merge pull request #495 from dtolnay/fuzzlld
  • cfdb567 Link to honggfuzz-rs issue
  • b09a5b0 Work around cargo-hfuzz nostart-stop-gc gold link failure
  • See full diff in compare view

Updates serde from 1.0.218 to 1.0.219

Release notes

Sourced from serde's releases.

v1.0.219

  • Prevent absolute_paths Clippy restriction being triggered inside macro-generated code (#2906, thanks @​davidzeng0)
Commits
  • 49d098d Release 1.0.219
  • 40f1d19 Wrap dummy.rs to 80 columns
  • 514848b Merge pull request #2906 from davidzeng0/master
  • 168b6cf fix clippy absolute paths warning
  • a8bdd17 Remove unused Punctuated import
  • 1c96013 Resolve mem_replace_with_default clippy lint
  • f0d1ae0 Ignore elidable_lifetime_names pedantic clippy lint
  • e3eaa6a Merge pull request #2896 from dtolnay/stabledoc
  • 6a630cf Also link to stable proc_macro
  • See full diff in compare view

Updates async-trait from 0.1.87 to 0.1.88

Release notes

Sourced from async-trait's releases.

0.1.88

  • Fix lifetime bounding on generic parameters that have cfg (#289)
Commits

Updates tokio from 1.44.2 to 1.45.1

Release notes

Sourced from tokio's releases.

Tokio v1.45.1

1.45.1 (May 24th, 2025)

This fixes a regression on the wasm32-unknown-unknown target, where code that previously did not panic due to calls to Instant::now() started failing. This is due to the stabilization of the first time-based metric.

Fixed

  • Disable time-based metrics on wasm32-unknown-unknown (#7322)

#7322: tokio-rs/tokio#7322

Tokio v1.45.0

Added

  • metrics: stabilize worker_total_busy_duration, worker_park_count, and worker_unpark_count (#6899, #7276)
  • process: add Command::spawn_with (#7249)

Changed

  • io: do not require Unpin for some trait impls (#7204)
  • rt: mark runtime::Handle as unwind safe (#7230)
  • time: revert internal sharding implementation (#7226)

Unstable

  • rt: remove alt multi-threaded runtime (#7275)

#6899: tokio-rs/tokio#6899 #7276: tokio-rs/tokio#7276 #7249: tokio-rs/tokio#7249 #7204: tokio-rs/tokio#7204 #7230: tokio-rs/tokio#7230 #7226: tokio-rs/tokio#7226 #7275: tokio-rs/tokio#7275

Commits
  • 3768696 chore: prepare Tokio v1.45.1 (#7359)
  • 421a7b0 rt: do not track time-based metrics on wasm32-unknown-unknown (#7322)
  • b1bdb3c ci: update macros_type_mismatch for Rust 1.87.0 (#7339)
  • 00754c8 chore: prepare Tokio v1.45.0 (#7308)
  • 1ae9434 time: revert "use sharding for timer implementation" related changes (#7226)
  • 8895bba ci: Test AArch64 Windows (#7288)
  • 48ca254 time: update sleep documentation to reflect maximum allowed duration (#7302)
  • a0af02a compat: add more documentation to tokio_util::compat (#7279)
  • 0ce3a11 metrics: stabilize worker_park_count and worker_unpark_count (#7276)
  • 1ea9ce1 ci: fix cfg!(miri) declarations in tests (#7286)
  • Additional commits viewable in compare view

Updates serde from 1.0.218 to 1.0.219

Release notes

Sourced from serde's releases.

v1.0.219

  • Prevent absolute_paths Clippy restriction being triggered inside macro-generated code (#2906, thanks @​davidzeng0)
Commits
  • 49d098d Release 1.0.219
  • 40f1d19 Wrap dummy.rs to 80 columns
  • 514848b Merge pull request #2906 from davidzeng0/master
  • 168b6cf fix clippy absolute paths warning
  • a8bdd17 Remove unused Punctuated import
  • 1c96013 Resolve mem_replace_with_default clippy lint
  • f0d1ae0 Ignore elidable_lifetime_names pedantic clippy lint
  • e3eaa6a Merge pull request #2896 from dtolnay/stabledoc
  • 6a630cf Also link to stable proc_macro
  • See full diff in compare view

Updates ethnum from 1.5.0 to 1.5.2

Release notes

Sourced from ethnum's releases.

v1.5.2

What's Changed

Full Changelog: nlordell/ethnum-rs@v1.5.1...v1.5.2

v1.5.1

What's Changed

Full Changelog: nlordell/ethnum-rs@v1.5.0...v1.5.1

Commits

Updates libm from 0.2.11 to 0.2.15

Release notes

Sourced from libm's releases.

libm-v0.2.15

Other

  • Require target_has_atomic = "ptr" for runtime feature detection

libm-v0.2.14

Other

  • Use runtime feature detection for fma routines on x86

libm-v0.2.13

Fixed

  • Switch back to workspace resolver v2 to unbreak builds without the 2024 edition

libm-v0.2.12

  • Mark generic functions #[inline]
  • Combine the source files for fmod
  • Ensure all public functions are marked no_panic
  • Add assembly version of simple operations on aarch64
  • Add roundeven{,f,f16,f128}
  • Add fminimum, fmaximum, fminimum_num, and fmaximum_num
  • Eliminate the use of force_eval! in ceil, floor, and trunc
  • Port the CORE-MATH version of cbrt
  • Add fmaf128
  • fma: Ensure zero has the correct sign
  • Add scalbnf16, scalbnf128, ldexpf16, and ldexpf128
  • Specify license as just MIT
  • Add fmodf128
  • Add fmodf16 using the generic implementation
  • Add fminf16, fmaxf16, fminf128, and fmaxf128
  • Add roundf16 and roundf128
  • Add rintf16 and rintf128
  • Add floorf16 and floorf128
  • Add ceilf16 and ceilf128
  • Add sqrtf16 and sqrtf128
  • Simplify and optimize fdim (#442)
  • Add fdimf16 and fdimf128
  • Add truncf16 and truncf128
  • Add fabsf16, fabsf128, copysignf16, and copysignf128
  • Move some numeric trait logic to default implementations
  • Add some more basic docstrings (#352)
  • Add support for loongarch64-unknown-linux-gnu
  • Add an "arch" Cargo feature that is on by default
  • Rename the special_case module to precision and move default ULP
  • Move the existing "unstable" feature to "unstable-intrinsics"

There are a number of things that changed internally, see the git log for a full list of changes.

Commits
  • a4c748f release-plz: Include the libm changelog in compiler-builtins
  • cf00941 chore: release
  • da8b582 Require target_has_atomic = "ptr" for runtime feature detection
  • 1b1b2ed ci: Mention ci: skip-extensive in the error message
  • 6d78c1a Replace super::super with crate::support where possible
  • 8e78411 docs: fix typo in Cargo.toml
  • 257dd48 chore: release
  • a2f6440 Use runtime feature detection for fma routines on x86
  • 6e4255a Rename the i686 module to x86
  • f83962e update-api-list: Match subdirectories within arch
  • Additional commits viewable in compare view

Updates serde from 1.0.218 to 1.0.219

Release notes

Sourced from serde's releases.

v1.0.219

  • Prevent absolute_paths Clippy restriction being triggered inside macro-generated code (#2906, thanks @​davidzeng0)
Commits
  • 49d098d Release 1.0.219
  • 40f1d19 Wrap dummy.rs to 80 columns
  • 514848b Merge pull request #2906 from davidzeng0/master
  • 168b6cf fix clippy absolute paths warning
  • a8bdd17 Remove unused Punctuated import
  • 1c96013 Resolve mem_replace_with_default clippy lint
  • f0d1ae0 Ignore elidable_lifetime_names pedantic clippy lint
  • e3eaa6a Merge pull request #2896 from dtolnay/stabledoc
  • 6a630cf Also link to stable proc_macro
  • See full diff in compare view

Updates syn from 2.0.99 to 2.0.103

Release notes

Sourced from syn's releases.

2.0.103

  • Insert parentheses around binary operation with attribute (#1871)

2.0.102

  • Fix printing of nested Expr::Index and Expr::Tuple in non-full mode (#1869)

2.0.101

  • Improve TypeGenerics::as_turbofish to return longer-lived return value (#1861)

2.0.100

  • Add Visit::visit_token_stream, VisitMut::visit_token_stream_mut, Fold::fold_token_stream for processing TokenStream during syntax tree traversals (#1852)
Commits
  • 85d4276 Release 2.0.103
  • 6f7b0f3 Merge pull request #1871 from dtolnay/binaryattr
  • 89f88fa Correctly track bailouts in parenthesized binary expressions
  • 0e07372 Add binary operator attribute bailout test
  • ca8d876 Insert parentheses around binary operation with attribute
  • 5be0f71 Add binary operator attribute tests
  • 026bb3c Discard paren attrs in unparenthesize test
  • 217dd62 Preserve attributes of Expr::Paren in FlattenParens
  • ef977c1 Update test suite to nightly-2025-06-11
  • b1cc559 Release 2.0.102
  • Additional commits viewable in compare view

Updates quote from 1.0.39 to 1.0.40

Release notes

Sourced from quote's releases.

1.0.40

Commits
  • ab1e92c Release 1.0.40
  • 3ff6882 Merge pull request 293 from aatifsyed/master
  • 7a143c7 fix: set span on tick
  • 5998437 refactor: push_lifetime* goes through an array instead of a manual iterator
  • See full diff in compare view

Updates proc-macro2 from 1.0.94 to 1.0.95

Release notes

Sourced from proc-macro2's releases.

1.0.95

  • Update semver-exempt API under RUSTFLAGS=--cfg=procmacro2_semver_exempt to that of nightly-2025-04-16 (#497)
Commits
  • 24bbf16 Release 1.0.95
  • 835c5bd Merge pull request #497 from dtolnay/nosourcefile
  • 7bc363c Update semver-exempt API to nightly-2025-04-16
  • b867aa7 Merge pull request #496 from PaulGrandperrin/master
  • c605e8e Revert "Merge pull request #495 from dtolnay/fuzzlld"
  • 1993cd3 Merge pull request #495 from dtolnay/fuzzlld
  • cfdb567 Link to honggfuzz-rs issue
  • b09a5b0 Work around cargo-hfuzz nostart-stop-gc gold link failure
  • See full diff in compare view

Updates serde from 1.0.218 to 1.0.219

Release notes

Sourced from serde's releases.

v1.0.219

  • Prevent absolute_paths Clippy restriction being triggered inside macro-generated code (#2906, thanks @​davidzeng0)
Commits

@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Jun 16, 2025
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Jun 16, 2025
@github-actions github-actions bot enabled auto-merge (squash) June 16, 2025 12:40
Bumps the program-dependencies group with 9 updates in the /rust-sdk/client directory:

| Package | From | To |
| --- | --- | --- |
| [borsh](https://github.com/near/borsh-rs) | `0.10.4` | `1.5.5` |
| [serde](https://github.com/serde-rs/serde) | `1.0.218` | `1.0.219` |
| [serde_with](https://github.com/jonasbb/serde_with) | `3.12.0` | `3.13.0` |
| [ethnum](https://github.com/nlordell/ethnum-rs) | `1.5.0` | `1.5.2` |
| [libm](https://github.com/rust-lang/compiler-builtins) | `0.2.11` | `0.2.15` |
| [quote](https://github.com/dtolnay/quote) | `1.0.39` | `1.0.40` |
| [proc-macro2](https://github.com/dtolnay/proc-macro2) | `1.0.94` | `1.0.95` |
| [async-trait](https://github.com/dtolnay/async-trait) | `0.1.87` | `0.1.88` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.44.2` | `1.45.1` |

Bumps the program-dependencies group with 6 updates in the /rust-sdk/core directory:

| Package | From | To |
| --- | --- | --- |
| [serde](https://github.com/serde-rs/serde) | `1.0.218` | `1.0.219` |
| [ethnum](https://github.com/nlordell/ethnum-rs) | `1.5.0` | `1.5.2` |
| [libm](https://github.com/rust-lang/compiler-builtins) | `0.2.11` | `0.2.15` |
| [syn](https://github.com/dtolnay/syn) | `2.0.99` | `2.0.103` |
| [quote](https://github.com/dtolnay/quote) | `1.0.39` | `1.0.40` |
| [proc-macro2](https://github.com/dtolnay/proc-macro2) | `1.0.94` | `1.0.95` |

Bumps the program-dependencies group with 3 updates in the /rust-sdk/macros directory: [syn](https://github.com/dtolnay/syn), [quote](https://github.com/dtolnay/quote) and [proc-macro2](https://github.com/dtolnay/proc-macro2).
Bumps the program-dependencies group with 13 updates in the /rust-sdk/whirlpool directory:

| Package | From | To |
| --- | --- | --- |
| [serde](https://github.com/serde-rs/serde) | `1.0.218` | `1.0.219` |
| [serde_with](https://github.com/jonasbb/serde_with) | `3.12.0` | `3.13.0` |
| [ethnum](https://github.com/nlordell/ethnum-rs) | `1.5.0` | `1.5.2` |
| [libm](https://github.com/rust-lang/compiler-builtins) | `0.2.11` | `0.2.15` |
| [quote](https://github.com/dtolnay/quote) | `1.0.39` | `1.0.40` |
| [proc-macro2](https://github.com/dtolnay/proc-macro2) | `1.0.94` | `1.0.95` |
| [spl-token](https://github.com/solana-program/token) | `6.0.0` | `7.0.0` |
| [spl-token-2022](https://github.com/solana-program/token-2022) | `4.0.0` | `7.0.0` |
| [spl-associated-token-account](https://github.com/solana-program/associated-token-account) | `4.0.0` | `6.0.0` |
| [async-trait](https://github.com/dtolnay/async-trait) | `0.1.87` | `0.1.88` |
| [base64](https://github.com/marshallpierce/rust-base64) | `0.20.0` | `0.22.1` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.43.0` | `1.45.1` |
| [spl-pod](https://github.com/solana-program/libraries) | `0.5.0` | `0.5.1` |

Bumps the program-dependencies group with 6 updates in the /ts-sdk/core directory:

| Package | From | To |
| --- | --- | --- |
| [serde](https://github.com/serde-rs/serde) | `1.0.218` | `1.0.219` |
| [ethnum](https://github.com/nlordell/ethnum-rs) | `1.5.0` | `1.5.2` |
| [libm](https://github.com/rust-lang/compiler-builtins) | `0.2.11` | `0.2.15` |
| [syn](https://github.com/dtolnay/syn) | `2.0.99` | `2.0.103` |
| [quote](https://github.com/dtolnay/quote) | `1.0.39` | `1.0.40` |
| [proc-macro2](https://github.com/dtolnay/proc-macro2) | `1.0.94` | `1.0.95` |



Updates `borsh` from 0.10.4 to 1.5.5
- [Release notes](https://github.com/near/borsh-rs/releases)
- [Changelog](https://github.com/near/borsh-rs/blob/master/CHANGELOG.md)
- [Commits](near/borsh-rs@borsh-v0.10.4...borsh-v1.5.5)

Updates `serde` from 1.0.218 to 1.0.219
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.218...v1.0.219)

Updates `serde_with` from 3.12.0 to 3.13.0
- [Release notes](https://github.com/jonasbb/serde_with/releases)
- [Commits](jonasbb/serde_with@v3.12.0...v3.13.0)

Updates `ethnum` from 1.5.0 to 1.5.2
- [Release notes](https://github.com/nlordell/ethnum-rs/releases)
- [Commits](nlordell/ethnum-rs@v1.5.0...v1.5.2)

Updates `libm` from 0.2.11 to 0.2.15
- [Release notes](https://github.com/rust-lang/compiler-builtins/releases)
- [Commits](rust-lang/compiler-builtins@libm-v0.2.11...libm-v0.2.15)

Updates `serde` from 1.0.218 to 1.0.219
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.218...v1.0.219)

Updates `quote` from 1.0.39 to 1.0.40
- [Release notes](https://github.com/dtolnay/quote/releases)
- [Commits](dtolnay/quote@1.0.39...1.0.40)

Updates `proc-macro2` from 1.0.94 to 1.0.95
- [Release notes](https://github.com/dtolnay/proc-macro2/releases)
- [Commits](dtolnay/proc-macro2@1.0.94...1.0.95)

Updates `serde` from 1.0.218 to 1.0.219
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.218...v1.0.219)

Updates `async-trait` from 0.1.87 to 0.1.88
- [Release notes](https://github.com/dtolnay/async-trait/releases)
- [Commits](dtolnay/async-trait@0.1.87...0.1.88)

Updates `tokio` from 1.44.2 to 1.45.1
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](tokio-rs/tokio@tokio-1.44.2...tokio-1.45.1)

Updates `serde` from 1.0.218 to 1.0.219
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.218...v1.0.219)

Updates `ethnum` from 1.5.0 to 1.5.2
- [Release notes](https://github.com/nlordell/ethnum-rs/releases)
- [Commits](nlordell/ethnum-rs@v1.5.0...v1.5.2)

Updates `libm` from 0.2.11 to 0.2.15
- [Release notes](https://github.com/rust-lang/compiler-builtins/releases)
- [Commits](rust-lang/compiler-builtins@libm-v0.2.11...libm-v0.2.15)

Updates `serde` from 1.0.218 to 1.0.219
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.218...v1.0.219)

Updates `syn` from 2.0.99 to 2.0.103
- [Release notes](https://github.com/dtolnay/syn/releases)
- [Commits](dtolnay/syn@2.0.99...2.0.103)

Updates `quote` from 1.0.39 to 1.0.40
- [Release notes](https://github.com/dtolnay/quote/releases)
- [Commits](dtolnay/quote@1.0.39...1.0.40)

Updates `proc-macro2` from 1.0.94 to 1.0.95
- [Release notes](https://github.com/dtolnay/proc-macro2/releases)
- [Commits](dtolnay/proc-macro2@1.0.94...1.0.95)

Updates `serde` from 1.0.218 to 1.0.219
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.218...v1.0.219)

Updates `syn` from 2.0.99 to 2.0.103
- [Release notes](https://github.com/dtolnay/syn/releases)
- [Commits](dtolnay/syn@2.0.99...2.0.103)

Updates `quote` from 1.0.39 to 1.0.40
- [Release notes](https://github.com/dtolnay/quote/releases)
- [Commits](dtolnay/quote@1.0.39...1.0.40)

Updates `proc-macro2` from 1.0.94 to 1.0.95
- [Release notes](https://github.com/dtolnay/proc-macro2/releases)
- [Commits](dtolnay/proc-macro2@1.0.94...1.0.95)

Updates `serde` from 1.0.218 to 1.0.219
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.218...v1.0.219)

Updates `serde_with` from 3.12.0 to 3.13.0
- [Release notes](https://github.com/jonasbb/serde_with/releases)
- [Commits](jonasbb/serde_with@v3.12.0...v3.13.0)

Updates `ethnum` from 1.5.0 to 1.5.2
- [Release notes](https://github.com/nlordell/ethnum-rs/releases)
- [Commits](nlordell/ethnum-rs@v1.5.0...v1.5.2)

Updates `libm` from 0.2.11 to 0.2.15
- [Release notes](https://github.com/rust-lang/compiler-builtins/releases)
- [Commits](rust-lang/compiler-builtins@libm-v0.2.11...libm-v0.2.15)

Updates `serde` from 1.0.218 to 1.0.219
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.218...v1.0.219)

Updates `quote` from 1.0.39 to 1.0.40
- [Release notes](https://github.com/dtolnay/quote/releases)
- [Commits](dtolnay/quote@1.0.39...1.0.40)

Updates `proc-macro2` from 1.0.94 to 1.0.95
- [Release notes](https://github.com/dtolnay/proc-macro2/releases)
- [Commits](dtolnay/proc-macro2@1.0.94...1.0.95)

Updates `spl-token` from 6.0.0 to 7.0.0
- [Release notes](https://github.com/solana-program/token/releases)
- [Commits](https://github.com/solana-program/token/commits/[email protected])

Updates `spl-token-2022` from 4.0.0 to 7.0.0
- [Release notes](https://github.com/solana-program/token-2022/releases)
- [Commits](https://github.com/solana-program/token-2022/commits/[email protected])

Updates `spl-memo` from 5.0.0 to 6.0.0
- [Release notes](https://github.com/solana-labs/solana-program-library/releases)
- [Commits](solana-labs/solana-program-library@memo-v5.0.0...memo-v6.0.0)

Updates `spl-associated-token-account` from 4.0.0 to 6.0.0
- [Release notes](https://github.com/solana-program/associated-token-account/releases)
- [Commits](https://github.com/solana-program/associated-token-account/commits/[email protected])

Updates `serde` from 1.0.218 to 1.0.219
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.218...v1.0.219)

Updates `solana-program-test` from 2.1.0 to 2.2.7
- [Release notes](https://github.com/anza-xyz/agave/releases)
- [Changelog](https://github.com/anza-xyz/agave/blob/master/CHANGELOG.md)
- [Commits](anza-xyz/agave@v2.1.0...v2.2.7)

Updates `solana-version` from 2.1.0 to 2.2.7
- [Release notes](https://github.com/anza-xyz/agave/releases)
- [Changelog](https://github.com/anza-xyz/agave/blob/master/CHANGELOG.md)
- [Commits](anza-xyz/agave@v2.1.0...v2.2.7)

Updates `async-trait` from 0.1.87 to 0.1.88
- [Release notes](https://github.com/dtolnay/async-trait/releases)
- [Commits](dtolnay/async-trait@0.1.87...0.1.88)

Updates `base64` from 0.20.0 to 0.22.1
- [Changelog](https://github.com/marshallpierce/rust-base64/blob/master/RELEASE-NOTES.md)
- [Commits](marshallpierce/rust-base64@v0.20.0...v0.22.1)

Updates `tokio` from 1.43.0 to 1.45.1
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](tokio-rs/tokio@tokio-1.44.2...tokio-1.45.1)

Updates `spl-pod` from 0.5.0 to 0.5.1
- [Release notes](https://github.com/solana-program/libraries/releases)
- [Commits](https://github.com/solana-program/libraries/compare/[email protected]@v0.5.1)

Updates `serde` from 1.0.218 to 1.0.219
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.218...v1.0.219)

Updates `ethnum` from 1.5.0 to 1.5.2
- [Release notes](https://github.com/nlordell/ethnum-rs/releases)
- [Commits](nlordell/ethnum-rs@v1.5.0...v1.5.2)

Updates `libm` from 0.2.11 to 0.2.15
- [Release notes](https://github.com/rust-lang/compiler-builtins/releases)
- [Commits](rust-lang/compiler-builtins@libm-v0.2.11...libm-v0.2.15)

Updates `serde` from 1.0.218 to 1.0.219
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.218...v1.0.219)

Updates `syn` from 2.0.99 to 2.0.103
- [Release notes](https://github.com/dtolnay/syn/releases)
- [Commits](dtolnay/syn@2.0.99...2.0.103)

Updates `quote` from 1.0.39 to 1.0.40
- [Release notes](https://github.com/dtolnay/quote/releases)
- [Commits](dtolnay/quote@1.0.39...1.0.40)

Updates `proc-macro2` from 1.0.94 to 1.0.95
- [Release notes](https://github.com/dtolnay/proc-macro2/releases)
- [Commits](dtolnay/proc-macro2@1.0.94...1.0.95)

Updates `serde` from 1.0.218 to 1.0.219
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.218...v1.0.219)

---
updated-dependencies:
- dependency-name: borsh
  dependency-version: 1.5.5
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: program-dependencies
- dependency-name: serde
  dependency-version: 1.0.219
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: program-dependencies
- dependency-name: serde_with
  dependency-version: 3.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: program-dependencies
- dependency-name: ethnum
  dependency-version: 1.5.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: program-dependencies
- dependency-name: libm
  dependency-version: 0.2.15
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: program-dependencies
- dependency-name: serde
  dependency-version: 1.0.219
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: program-dependencies
- dependency-name: quote
  dependency-version: 1.0.40
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: program-dependencies
- dependency-name: proc-macro2
  dependency-version: 1.0.95
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: program-dependencies
- dependency-name: serde
  dependency-version: 1.0.219
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: program-dependencies
- dependency-name: async-trait
  dependency-version: 0.1.88
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: program-dependencies
- dependency-name: tokio
  dependency-version: 1.45.1
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: program-dependencies
- dependency-name: serde
  dependency-version: 1.0.219
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: program-dependencies
- dependency-name: ethnum
  dependency-version: 1.5.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: program-dependencies
- dependency-name: libm
  dependency-version: 0.2.15
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: program-dependencies
- dependency-name: serde
  dependency-version: 1.0.219
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: program-dependencies
- dependency-name: syn
  dependency-version: 2.0.103
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: program-dependencies
- dependency-name: quote
  dependency-version: 1.0.40
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: program-dependencies
- dependency-name: proc-macro2
  dependency-version: 1.0.95
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: program-dependencies
- dependency-name: serde
  dependency-version: 1.0.219
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: program-dependencies
- dependency-name: syn
  dependency-version: 2.0.103
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: program-dependencies
- dependency-name: quote
  dependency-version: 1.0.40
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: program-dependencies
- dependency-name: proc-macro2
  dependency-version: 1.0.95
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: program-dependencies
- dependency-name: serde
  dependency-version: 1.0.219
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: program-dependencies
- dependency-name: serde_with
  dependency-version: 3.13.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: program-dependencies
- dependency-name: ethnum
  dependency-version: 1.5.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: program-dependencies
- dependency-name: libm
  dependency-version: 0.2.15
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: program-dependencies
- dependency-name: serde
  dependency-version: 1.0.219
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: program-dependencies
- dependency-name: quote
  dependency-version: 1.0.40
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: program-dependencies
- dependency-name: proc-macro2
  dependency-version: 1.0.95
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: program-dependencies
- dependency-name: spl-token
  dependency-version: 7.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: program-dependencies
- dependency-name: spl-token-2022
  dependency-version: 7.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: program-dependencies
- dependency-name: spl-memo
  dependency-version: 6.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: program-dependencies
- dependency-name: spl-associated-token-account
  dependency-version: 6.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: program-dependencies
- dependency-name: serde
  dependency-version: 1.0.219
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: program-dependencies
- dependency-name: solana-program-test
  dependency-version: 2.2.7
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: program-dependencies
- dependency-name: solana-version
  dependency-version: 2.2.7
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: program-dependencies
- dependency-name: async-trait
  dependency-version: 0.1.88
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: program-dependencies
- dependency-name: base64
  dependency-version: 0.22.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: program-dependencies
- dependency-name: tokio
  dependency-version: 1.45.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: program-dependencies
- dependency-name: spl-pod
  dependency-version: 0.5.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: program-dependencies
- dependency-name: serde
  dependency-version: 1.0.219
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: program-dependencies
- dependency-name: ethnum
  dependency-version: 1.5.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: program-dependencies
- dependency-name: libm
  dependency-version: 0.2.15
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: program-dependencies
- dependency-name: serde
  dependency-version: 1.0.219
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: program-dependencies
- dependency-name: syn
  dependency-version: 2.0.103
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: program-dependencies
- dependency-name: quote
  dependency-version: 1.0.40
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: program-dependencies
- dependency-name: proc-macro2
  dependency-version: 1.0.95
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: program-dependencies
- dependency-name: serde
  dependency-version: 1.0.219
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: program-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/cargo/rust-sdk/client/program-dependencies-476fc4ecc8 branch from 73bdadb to bbb8307 Compare June 23, 2025 14:14
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Jun 23, 2025

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Jun 23, 2025
auto-merge was automatically disabled June 23, 2025 14:26

Pull request was closed

@dependabot dependabot bot deleted the dependabot/cargo/rust-sdk/client/program-dependencies-476fc4ecc8 branch June 23, 2025 14:26
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