Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 22, 2025

Bumps the program-dependencies group with 4 updates in the /rust-sdk/client directory: borsh, serde, serde_with and thiserror.
Bumps the program-dependencies group with 3 updates in the /rust-sdk/core directory: serde, ethnum and libm.
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 6 updates in the /rust-sdk/whirlpool directory:

Package From To
serde 1.0.218 1.0.226
spl-associated-token-account 4.0.0 6.0.0
serde_json 1.0.140 1.0.145
async-trait 0.1.87 0.1.89
base64 0.20.0 0.22.1
tokio 1.43.0 1.46.1

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.226

Release notes

Sourced from serde's releases.

v1.0.226

  • Deduplicate variant matching logic inside generated Deserialize impl for adjacently tagged enums (#2935, thanks @​Mingun)

v1.0.225

  • Avoid triggering a deprecation warning in derived Serialize and Deserialize impls for a data structure that contains its own deprecations (#2879, thanks @​rcrisanti)

v1.0.224

  • Remove private types being suggested in rustc diagnostics (#2979)

v1.0.223

  • Fix serde_core documentation links (#2978)

v1.0.222

  • Make serialize_with attribute produce code that works if respanned to 2024 edition (#2950, thanks @​aytey)

v1.0.221

  • Documentation improvements (#2973)
  • Deprecate serde_if_integer128! macro (#2975)

v1.0.220

v1.0.219

  • Prevent absolute_paths Clippy restriction being triggered inside macro-generated code (#2906, thanks @​davidzeng0)
Commits
  • 1799547 Release 1.0.226
  • 2dbeefb Merge pull request #2935 from Mingun/dedupe-adj-enums
  • 8a3c29f Merge pull request #2986 from dtolnay/didnotwork
  • defc24d Remove "did not work" comment from test suite
  • 2316610 Merge pull request #2929 from Mingun/flatten-enum-tests
  • c09e2bd Add tests for flatten unit variant in adjacently tagged (tag + content) enums
  • fe7dcc4 Test all possible orders of map entries for enum-flatten-in-struct representa...
  • a20e66e Check serialization in flatten::enum_::internally_tagged::unit_enum_with_unkn...
  • 1c1a5d9 Reorder struct_ and newtype tests of adjacently_tagged enums to match order i...
  • ee3c237 Opt in to generate-macro-expansion when building on docs.rs
  • Additional commits viewable in compare view

Updates serde_with from 3.12.0 to 3.14.1

Release notes

Sourced from serde_with's releases.

serde_with v3.14.1

Fixed

  • Show macro expansion in the docs.rs generated rustdoc. Since macros are used to generate trait implementations, this is useful to understand the exact generated code.

serde_with v3.14.0

Added

  • Add support for Range, RangeFrom, RangeTo, RangeInclusive (#851) RangeToInclusive is currently unsupported by serde.
  • Add schemars implementations for Bound, Range, RangeFrom, RangeTo, RangeInclusive.
  • Added support for schemars v1 under the schemars_1 feature flag

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 thiserror from 2.0.12 to 2.0.16

Release notes

Sourced from thiserror's releases.

2.0.16

  • Add to "no-std" crates.io category (#429)

2.0.15

  • Prevent Error::provide API becoming unavailable from a future new compiler lint (#427)

2.0.14

  • Allow build-script cleanup failure with NFSv3 output directory to be non-fatal (#426)

2.0.13

  • Documentation improvements
Commits
  • 40b5853 Release 2.0.16
  • 83dfb5f Merge pull request #429 from dtolnay/nostd
  • 9b4a99f Add to "no-std" crates.io category
  • f6145eb Release 2.0.15
  • 2717177 Merge pull request #427 from dtolnay/caplints
  • 2cd13e6 Make error_generic_member_access compatible with -Dwarnings
  • eea6799 Release 2.0.14
  • a2aa6d7 Merge pull request #426 from dtolnay/enotempty
  • f00ebc5 Allow build-script cleanup failure with NFSv3 output directory to be non-fatal
  • 61f28da Release 2.0.13
  • Additional commits viewable in compare view

Updates serde from 1.0.218 to 1.0.226

Release notes

Sourced from serde's releases.

v1.0.226

  • Deduplicate variant matching logic inside generated Deserialize impl for adjacently tagged enums (#2935, thanks @​Mingun)

v1.0.225

  • Avoid triggering a deprecation warning in derived Serialize and Deserialize impls for a data structure that contains its own deprecations (#2879, thanks @​rcrisanti)

v1.0.224

  • Remove private types being suggested in rustc diagnostics (#2979)

v1.0.223

  • Fix serde_core documentation links (#2978)

v1.0.222

  • Make serialize_with attribute produce code that works if respanned to 2024 edition (#2950, thanks @​aytey)

v1.0.221

  • Documentation improvements (#2973)
  • Deprecate serde_if_integer128! macro (#2975)

v1.0.220

v1.0.219

  • Prevent absolute_paths Clippy restriction being triggered inside macro-generated code (#2906, thanks @​davidzeng0)
Commits
  • 1799547 Release 1.0.226
  • 2dbeefb Merge pull request #2935 from Mingun/dedupe-adj-enums
  • 8a3c29f Merge pull request #2986 from dtolnay/didnotwork
  • defc24d Remove "did not work" comment from test suite
  • 2316610 Merge pull request #2929 from Mingun/flatten-enum-tests
  • c09e2bd Add tests for flatten unit variant in adjacently tagged (tag + content) enums
  • fe7dcc4 Test all possible orders of map entries for enum-flatten-in-struct representa...
  • a20e66e Check serialization in flatten::enum_::internally_tagged::unit_enum_with_unkn...
  • 1c1a5d9 Reorder struct_ and newtype tests of adjacently_tagged enums to match order i...
  • ee3c237 Opt in to generate-macro-expansion when building on docs.rs
  • Additional commits viewable in compare view

Updates serde from 1.0.218 to 1.0.226

Release notes

Sourced from serde's releases.

v1.0.226

  • Deduplicate variant matching logic inside generated Deserialize impl for adjacently tagged enums (#2935, thanks @​Mingun)

v1.0.225

  • Avoid triggering a deprecation warning in derived Serialize and Deserialize impls for a data structure that contains its own deprecations (#2879, thanks @​rcrisanti)

v1.0.224

  • Remove private types being suggested in rustc diagnostics (#2979)

v1.0.223

  • Fix serde_core documentation links (#2978)

v1.0.222

  • Make serialize_with attribute produce code that works if respanned to 2024 edition (#2950, thanks @​aytey)

v1.0.221

  • Documentation improvements (#2973)
  • Deprecate serde_if_integer128! macro (#2975)

v1.0.220

v1.0.219

  • Prevent absolute_paths Clippy restriction being triggered inside macro-generated code (#2906, thanks @​davidzeng0)
Commits
  • 1799547 Release 1.0.226
  • 2dbeefb Merge pull request #2935 from Mingun/dedupe-adj-enums
  • 8a3c29f Merge pull request #2986 from dtolnay/didnotwork
  • defc24d Remove "did not work" comment from test suite
  • 2316610 Merge pull request #2929 from Mingun/flatten-enum-tests
  • c09e2bd Add tests for flatten unit variant in adjacently tagged (tag + content) enums
  • fe7dcc4 Test all possible orders of map entries for enum-flatten-in-struct representa...
  • a20e66e Check serialization in flatten::enum_::internally_tagged::unit_enum_with_unkn...
  • 1c1a5d9 Reorder struct_ and newtype tests of adjacently_tagged enums to match order i...
  • ee3c237 Opt in to generate-macro-expansion when building on docs.rs
  • Additional commits viewable in compare view

Updates serde from 1.0.218 to 1.0.226

Release notes

Sourced from serde's releases.

v1.0.226

  • Deduplicate variant matching logic inside generated Deserialize impl for adjacently tagged enums (#2935, thanks @​Mingun)

v1.0.225

  • Avoid triggering a deprecation warning in derived Serialize and Deserialize impls for a data structure that contains its own deprecations (#2879, thanks @​rcrisanti)

v1.0.224

  • Remove private types being suggested in rustc diagnostics (#2979)

v1.0.223

  • Fix serde_core documentation links (#2978)

v1.0.222

  • Make serialize_with attribute produce code that works if respanned to 2024 edition (#2950, thanks @​aytey)

v1.0.221

  • Documentation improvements (#2973)
  • Deprecate serde_if_integer128! macro (#2975)

v1.0.220

v1.0.219

  • Prevent absolute_paths Clippy restriction being triggered inside macro-generated code (#2906, thanks @​davidzeng0)
Commits
  • 1799547 Release 1.0.226
  • 2dbeefb Merge pull request #2935 from Mingun/dedupe-adj-enums
  • 8a3c29f Merge pull request #2986 from dtolnay/didnotwork
  • defc24d Remove "did not work" comment from test suite
  • 2316610 Merge pull request #2929 from Mingun/flatten-enum-tests
  • c09e2bd Add tests for flatten unit variant in adjacently tagged (tag + content) enums
  • fe7dcc4 Test all possible orders of map entries for enum-flatten-in-struct representa...
  • a20e66e Check serialization in flatten::enum_::internally_tagged::unit_enum_with_unkn...
  • 1c1a5d9 Reorder struct_ and newtype tests of adjacently_tagged enums to match order i...
  • ee3c237 Opt in to generate-macro-expansion when building on docs.rs
  • Additional commits viewable 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.226

Release notes

Sourced from serde's releases.

v1.0.226

  • Deduplicate variant matching logic inside generated Deserialize impl for adjacently tagged enums (#2935, thanks @​Mingun)

v1.0.225

  • Avoid triggering a deprecation warning in derived Serialize and Deserialize impls for a data structure that contains its own deprecations (#2879, thanks @​rcrisanti)

v1.0.224

  • Remove private types being suggested in rustc diagnostics (#2979)

v1.0.223

  • Fix serde_core documentation links (#2978)

v1.0.222

  • Make serialize_with attribute produce code that works if respanned to 2024 edition (#2950, thanks @​aytey)

v1.0.221

  • Documentation improvements (#2973)
  • Deprecate serde_if_integer128! macro (#2975)

v1.0.220

v1.0.219

  • Prevent absolute_paths Clippy restriction being triggered inside macro-generated code (#2906, thanks @​davidzeng0)
Commits
  • 1799547 Release 1.0.226
  • 2dbeefb Merge pull request #2935 from Mingun/dedupe-adj-enums
  • 8a3c29f Merge pull request #2986 from dtolnay/didnotwork
  • defc24d Remove "did not work" comment from test suite
  • 2316610 Merge pull request #2929 from Mingun/flatten-enum-tests
  • c09e2bd Add tests for flatten unit variant in adjacently tagged (tag + content) enums
  • fe7dcc4 Test all possible orders of map entries for enum-flatten-in-struct representa...
  • a20e66e Check serialization in flatten::enum_::internally_tagged::unit_enum_with_unkn...
  • 1c1a5d9 Reorder struct_ and newtype tests of adjacently_tagged enums to match order i...
  • ee3c237 Opt in to generate-macro-expansion when building on docs.rs
  • Additional commits viewable in compare view

Updates serde from 1.0.218 to 1.0.226

Release notes

Sourced from serde's releases.

v1.0.226

  • Deduplicate variant matching logic inside generated Deserialize impl for adjacently tagged enums (#2935, thanks @​Mingun)

v1.0.225

  • Avoid triggering a deprecation warning in derived Serialize and Deserialize impls for a data structure that contains its own deprecations (#2879, thanks @​rcrisanti)

v1.0.224

  • Remove private types being suggested in rustc diagnostics (#2979)

v1.0.223

  • Fix serde_core documentation links (#2978)

v1.0.222

  • Make serialize_with attribute produce code that works if respanned to 2024 edition (#2950, thanks @​aytey)

v1.0.221

  • Documentation improvements (#2973)
  • Deprecate serde_if_integer128! macro (#2975)

v1.0.220

v1.0.219

  • Prevent absolute_paths Clippy restriction being triggered inside macro-generated code (#2906, thanks @​davidzeng0)
Commits
  • 1799547 Release 1.0.226
  • 2dbeefb Merge pull request #2935 from Mingun/dedupe-adj-enums
  • 8a3c29f Merge pull request #2986 from dtolnay/didnotwork
  • defc24d Remove "did not work" comment from test suite
  • 2316610 Merge pull request #2929 from Mingun/flatten-enum-tests
  • c09e2bd Add tests for flatten unit variant in adjacently tagged (tag + content) enums
  • fe7dcc4 Test all possible orders of map entries for enum-flatten-in-struct representa...
  • a20e66e Check serialization in flatten::enum_::internally_tagged::unit_enum_with_unkn...
  • 1c1a5d9 Reorder struct_ and newtype tests of adjacently_tagged enums to match order i...
  • ee3c237 Opt in to generate-macro-expansion when building on docs.rs
  • Additional commits viewable in compare view

Updates syn from 2.0.99 to 2.0.106

Release notes

Sourced from syn's releases.

2.0.106

  • Replace ~const syntax with [const] conditionally const syntax in trait bounds (#1896, rust-lang/rust#139858)
  • Support conditionally const impl Trait types (#1897)
  • Reject polarity modifier and lifetime binder used in the same trait bound (#1899, rust-lang/rust#127054)
  • Parse const trait bounds with bound lifetimes (#1902)
  • Parse bound lifetimes with lifetime bounds (#1903)
  • Allow type parameters and const parameters in trait bounds and generic closures (#1904, #1907, #1908, #1909)

2.0.105

2.0.104

  • Disallow attributes on range expression (#1872)

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
  • 0e4bc64 Release 2.0.106
  • 4fb776a Merge pull request #1910 from dtolnay/traitboundissue
  • 41b24a5 Fix duplicated async trait bound issue
  • a64f024 Merge pull request #1909 from dtolnay/fortype
  • 176099e Parse type parameter introducer on closures
  • b790b39 Merge pull request #1908 from dtolnay/genericvsqpath
  • 9649639 Synchronize generics-vs-qpath heuristic with rust parser
  • 60de331 Merge pull request #1907 from dtolnay/forconst
  • 2aac6d7 Allow const parameters in for<>
  • 11934e5 Merge pull request #1905 from dtolnay/unsafestatic
  • 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.101

Release notes

Sourced from proc-macro2's releases.

1.0.101

  • Optimize Span location accessors (#519)

1.0.100

  • Stabilize Span methods on Rust 1.88+: start, end, line, column, file, local_file (#517, #518)

1.0.99

  • Prevent Span's unstable API becoming unavailable from a future new compiler lint (#515)

1.0.98

1.0.97

  • Allow build-script cleanup failure with NFSv3 output directory to be non-fatal (#505, #512, thanks @​davvid)

1.0.96

  • Simplify how rustdoc flags are decided during docs.rs builds (#511)

1.0.95

  • Update semver-exempt API under RUSTFLAGS=--cfg=procmacro2_semver_exempt to that of nightly-2025-04-16 (#497)
Commits

Bumps the program-dependencies group with 4 updates in the /rust-sdk/client directory: [borsh](https://github.com/near/borsh-rs), [serde](https://github.com/serde-rs/serde), [serde_with](https://github.com/jonasbb/serde_with) and [thiserror](https://github.com/dtolnay/thiserror).
Bumps the program-dependencies group with 3 updates in the /rust-sdk/core directory: [serde](https://github.com/serde-rs/serde), [ethnum](https://github.com/nlordell/ethnum-rs) and [libm](https://github.com/rust-lang/compiler-builtins).
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 6 updates in the /rust-sdk/whirlpool directory:

| Package | From | To |
| --- | --- | --- |
| [serde](https://github.com/serde-rs/serde) | `1.0.218` | `1.0.226` |
| [spl-associated-token-account](https://github.com/solana-program/associated-token-account) | `4.0.0` | `6.0.0` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.140` | `1.0.145` |
| [async-trait](https://github.com/dtolnay/async-trait) | `0.1.87` | `0.1.89` |
| [base64](https://github.com/marshallpierce/rust-base64) | `0.20.0` | `0.22.1` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.43.0` | `1.46.1` |



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.226
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.218...v1.0.226)

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

Updates `thiserror` from 2.0.12 to 2.0.16
- [Release notes](https://github.com/dtolnay/thiserror/releases)
- [Commits](dtolnay/thiserror@2.0.12...2.0.16)

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

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

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

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.226
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.218...v1.0.226)

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

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

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.101
- [Release notes](https://github.com/dtolnay/proc-macro2/releases)
- [Commits](dtolnay/proc-macro2@1.0.94...1.0.101)

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

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

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.226
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.218...v1.0.226)

Updates `serde_json` from 1.0.140 to 1.0.145
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.140...v1.0.145)

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

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.46.1
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](tokio-rs/tokio@tokio-1.43.0...tokio-1.46.1)

---
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.226
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: program-dependencies
- dependency-name: serde_with
  dependency-version: 3.14.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: program-dependencies
- dependency-name: thiserror
  dependency-version: 2.0.16
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: program-dependencies
- dependency-name: serde
  dependency-version: 1.0.226
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: program-dependencies
- dependency-name: serde
  dependency-version: 1.0.226
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: program-dependencies
- dependency-name: serde
  dependency-version: 1.0.226
  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.226
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: program-dependencies
- dependency-name: serde
  dependency-version: 1.0.226
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: program-dependencies
- dependency-name: syn
  dependency-version: 2.0.106
  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.101
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: program-dependencies
- dependency-name: serde
  dependency-version: 1.0.226
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: program-dependencies
- dependency-name: serde
  dependency-version: 1.0.226
  dependency-type: direct:production
  update-type: version-update:semver-patch
  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.226
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: program-dependencies
- dependency-name: serde_json
  dependency-version: 1.0.145
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: program-dependencies
- dependency-name: async-trait
  dependency-version: 0.1.89
  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.46.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: program-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Sep 22, 2025
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Sep 22, 2025
@github-actions github-actions bot enabled auto-merge (squash) September 22, 2025 11:47
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Sep 26, 2025

Superseded by #1075.

@dependabot dependabot bot closed this Sep 26, 2025
auto-merge was automatically disabled September 26, 2025 11:30

Pull request was closed

@dependabot dependabot bot deleted the dependabot/cargo/rust-sdk/client/program-dependencies-9b540068db branch September 26, 2025 11:30
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