Skip to content

chore(deps): bump the actions group across 1 directory with 21 updates#14

Closed
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/cargo/actions-b667fc95d4
Closed

chore(deps): bump the actions group across 1 directory with 21 updates#14
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/cargo/actions-b667fc95d4

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the actions group with 21 updates in the / directory:

Package From To
phoenix-rise 0.1.14 0.1.16
clap 4.6.0 4.6.1
tokio 1.50.0 1.52.3
serde_json 1.0.149 1.0.150
toml 0.8.23 1.1.0+spec-1.1.0
reqwest 0.12.28 0.13.3
solana-sdk 2.3.1 4.0.1
solana-keychain 1.2.0 1.3.0
solana-pubkey 2.4.0 4.2.0
solana-instruction 2.3.3 3.4.0
solana-rpc-client 2.3.13 3.1.14
aes-gcm 0.10.3 0.11.0
rand 0.8.5 0.10.1
zeroize 1.8.2 1.9.0
colored 2.2.0 3.1.1
anyhow 1.0.102 1.0.103
chrono 0.4.44 0.4.45
semver 1.0.27 1.0.28
rpassword 5.0.1 7.5.4
rmcp 1.3.0 2.0.0
dirs 5.0.1 6.0.0

Updates phoenix-rise from 0.1.14 to 0.1.16

Release notes

Sourced from phoenix-rise's releases.

Rise Rust v0.1.16

  • Rust: phoenix-rise v0.1.16

Rust

v0.1.16 - 2026-06-25

Source Phoenix commit: 2f2bb2ba1256f28465278ff1c00d61f0ffc2c5f2

Summary

  • Added builder-initiated trader onboarding support: two new ExchangeClient methods — build_register_ixs and send_register_ixs — let a builder register and onboard a trader without a referral code, using POST /v1/exchange/build-register-ixs and POST /v1/exchange/send-register-ixs.
  • Six new public types exported from the crate root (under the sdk feature): BuildRegisterIxsRequest, BuildRegisterIxsResponse, SendRegisterIxsRequest, SendRegisterIxsResponse, ApiInstructionResponse, and ApiAccountMeta.
  • New builder_onboarding_tx example (requires solana-keypair feature) demonstrates the full build-sign-submit flow; run with --trader-keypair-path and an optional --fee-payer-keypair-path.
  • Documentation updated to clarify the three distinct onboarding paths: access-code (/v1/invite/activate), referral-code (/v1/referral/activate-tx), and builder (/v1/exchange/build-register-ixs + /v1/exchange/send-register-ixs).

Breaking Changes

  • None identified in the synced diff.

Consumer Notes

  • To use the new builder onboarding APIs, call client.exchange().build_register_ixs(...) with a BuildRegisterIxsRequest (trader authority, fee payer, optional max_positions), sign the returned instructions locally, then submit the base64-encoded signed transaction via client.exchange().send_register_ixs(...). The API validates, co-signs, simulates, and broadcasts the transaction.
  • ApiInstructionResponse and ApiAccountMeta are the deserialized instruction shapes returned by build_register_ixs; downstream code that builds transactions from the response will need to import these types.
  • The max_positions field on both request types is optional (serialized only when Some); defaults to 128 on the server side.
  • trader_pda_index and trader_subaccount_index on SendRegisterIxsRequest are also optional; omit them to accept server defaults.

Rise Rust v0.1.15

  • Rust: phoenix-rise v0.1.15

Rust

v0.1.15 - 2026-06-25

Source Phoenix commit: 823bb5e64efafb221f37a7e0a8f8720da843741c

Summary

  • Added new public exports for inspecting trader activation status before building a referral activation transaction: ReferralActivationTraderStatus enum, ReferralActivationTraderStatusError error enum, fetch_referral_activation_trader_status async function, has_referral_activation_capabilities const function, and referral_activation_trader_status function.
  • The referral activation transaction now handles missing trader accounts automatically: when the trader account does not exist, the built transaction includes register_trader followed by delegated onboarding in a single atomic transaction. No separate registration step is required.
  • ReferralActivationTraderStatus::should_include_register_trader() returns true only for the Missing variant, making it straightforward to conditionally include the registration instruction when constructing activation transactions manually.

Breaking Changes

  • None identified in the synced diff.

Consumer Notes

... (truncated)

Commits
  • c0ce4a5 sync: Rise Rust v0.1.16 from phoenix 2f2bb2ba1256 (#53)
  • 93fde34 sync: Rise TypeScript v0.4.54 from phoenix 190b6af2b821 (#51)
  • add069c sync: Rise TypeScript v0.4.53 from phoenix 823bb5e64efa (#49)
  • e37e3f8 sync: Rise TypeScript v0.4.52 from phoenix f9c0326d728b (#47)
  • 5c7cb75 sync: Rise Rust v0.1.15 from phoenix 823bb5e64efa (#50)
  • See full diff in compare view

Updates clap from 4.6.0 to 4.6.1

Release notes

Sourced from clap's releases.

v4.6.1

[4.6.1] - 2026-04-15

Fixes

  • (derive) Ensure rebuilds happen when an read env variable is changed
Changelog

Sourced from clap's changelog.

[4.6.1] - 2026-04-15

Fixes

  • (derive) Ensure rebuilds happen when an read env variable is changed
Commits
  • 1420275 chore: Release
  • d2c817d docs: Update changelog
  • f88c94e Merge pull request #6341 from epage/sep
  • acbb822 fix(complete): Reduce risk of conflict with actual subcommands
  • a49fadb refactor(complete): Pull out subcommand separator
  • ddc008b Merge pull request #6332 from epage/update
  • 497dc50 chore: Update compatible dependencies
  • dca2326 Merge pull request #6331 from clap-rs/renovate/j178-prek-action-2.x
  • 54bdaa3 chore(deps): Update j178/prek-action action to v2
  • f0d30d9 chore: Release
  • Additional commits viewable in compare view

Updates tokio from 1.50.0 to 1.52.3

Release notes

Sourced from tokio's releases.

Tokio v1.52.3

1.52.3 (May 8th, 2026)

Fixed

  • sync: fix underflow in mpsc channel len() (#8062)
  • sync: notify receivers in mpsc OwnedPermit::release() method (#8075)
  • sync: require that an RwLock has max_readers != 0 (#8076)
  • sync: return Empty from try_recv() when mpsc is closed with outstanding permits (#8074)

#8062: tokio-rs/tokio#8062 #8074: tokio-rs/tokio#8074 #8075: tokio-rs/tokio#8075 #8076: tokio-rs/tokio#8076

Tokio v1.52.2

1.52.2 (May 4th, 2026)

This release reverts the LIFO slot stealing change introduced in 1.51.0 (#7431), due to [its performance impact]#8065. (#8100)

#7431: tokio-rs/tokio#7431 #8065: tokio-rs/tokio#8065 #8100: tokio-rs/tokio#8100

Tokio v1.52.1

1.52.1 (April 16th, 2026)

Fixed

  • runtime: revert #7757 to fix [a regression]#8056 that causes spawn_blocking to hang (#8057)

#7757: tokio-rs/tokio#7757 #8056: tokio-rs/tokio#8056 #8057: tokio-rs/tokio#8057

Tokio v1.52.0

1.52.0 (April 14th, 2026)

Added

  • io: AioSource::register_borrowed for I/O safety support (#7992)
  • net: add try_io function to unix::pipe sender and receiver types (#8030)

Added (unstable)

  • runtime: Builder::enable_eager_driver_handoff setting enable eager hand off of the I/O and time drivers before polling tasks (#8010)
  • taskdump: add trace_with() for customized task dumps (#8025)
  • taskdump: allow impl FnMut() in trace_with instead of just fn() (#8040)
  • fs: support io_uring in AsyncRead for File (#7907)

... (truncated)

Commits

Updates serde_json from 1.0.149 to 1.0.150

Release notes

Sourced from serde_json's releases.

v1.0.150

Commits
  • a1ae73a Release 1.0.150
  • 1a360b0 Merge pull request #1324 from puneetdixit200/reject-non-string-enum-keys
  • 2037b63 Reject non-string enum object keys
  • 5d30df6 Resolve manual_assert_eq pedantic clippy lint
  • dc8003a Raise required compiler for preserve_order feature to 1.85
  • a42fa98 Unpin CI miri toolchain
  • 684a60e Pin CI miri to nightly-2026-02-11
  • 7c7da33 Raise required compiler to Rust 1.71
  • acf4850 Simplify Number::is_f64
  • 6b8ceab Resolve unnecessary_map_or clippy lint
  • Additional commits viewable in compare view

Updates toml from 0.8.23 to 1.1.0+spec-1.1.0

Commits

Updates reqwest from 0.12.28 to 0.13.3

Release notes

Sourced from reqwest's releases.

v0.13.3

tl;dr

  • Fix CertificateRevocationList parsing of PEM values.
  • Fix logging in resolver to only show host, not full URL.
  • Fix hickory-dns to fallback to a default if /etc/resolv.conf fails.
  • Fix HTTP/3 to handle STOP_SENDING as not an error.
  • Fix HTTP/3 pool to remove timed out QUIC connections.
  • Fix HTTP/3 connection establishment picking IPv4 and IPv6.
  • Upgrade rustls-platform-verifier.
  • (wasm) Only use wasm-bindgen on unknown-* targets.

What's Changed

New Contributors

Full Changelog: seanmonstar/reqwest@v0.13.2...v0.13.3

v0.13.2

tl;dr

  • Fix HTTP/2 and native-tls ALPN feature combinations.
  • Fix HTTP/3 to send h3 ALPN.
  • (wasm) fix RequestBuilder::json() from override previously set content-type.

What's Changed

... (truncated)

Changelog

Sourced from reqwest's changelog.

v0.13.3

  • Fix CertificateRevocationList parsing of PEM values.
  • Fix logging in resolver to only show host, not full URL.
  • Fix hickory-dns to fallback to a default if /etc/resolv.conf fails.
  • Fix HTTP/3 to handle STOP_SENDING as not an error.
  • Fix HTTP/3 pool to remove timed out QUIC connections.
  • Fix HTTP/3 connection establishment picking IPv4 and IPv6.
  • Upgrade rustls-platform-verifier.
  • (wasm) Only use wasm-bindgen on unknown-* targets.

v0.13.2

  • Fix HTTP/2 and native-tls ALPN feature combinations.
  • Fix HTTP/3 to send h3 ALPN.
  • (wasm) fix RequestBuilder::json() from override previously set content-type.

v0.13.1

  • Fixes compiling with rustls on Android targets.

v0.13.0

  • Breaking changes:
    • rustls is now the default TLS backend, instead of native-tls.
    • rustls crypto provider defaults to aws-lc instead of ring. (rustls-no-provider exists if you want a different crypto provider)
    • rustls-tls has been renamed to rustls.
    • rustls roots features removed, rustls-platform-verifier is used by default.
      • To use different roots, call tls_certs_only(your_roots).
    • native-tls now includes ALPN. To disable, use native-tls-no-alpn.
    • query and form are now crate features, disabled by default.
    • Long-deprecated methods and crate features have been removed (such as trust-dns, which was renamed hickory-dns a while ago).
  • Many TLS-related methods renamed to improve autocompletion and discovery, but previous name left in place with a "soft" deprecation. (just documented, no warnings)
    • For example, prefer tls_backend_rustls() over use_rustls_tls().
Commits

Updates solana-sdk from 2.3.1 to 4.0.1

Release notes

Sourced from solana-sdk's releases.

slot-history@v3.0.1

What's new

slot-hashes@v3.0.2

What's new

last-restart-slot@v3.0.1

What's new

epoch-rewards@v3.0.2

What's new

clock@v3.1.0

What's new

frozen-abi@v3.4.0

What's new

frozen-abi-macro@v3.4.0

What's new

bls-signatures@v3.3.0

What's new

... (truncated)

Commits
  • b1bc122 Publish solana-sdk v4.0.1
  • 12b6316 Publish solana-program v4.0.0
  • 029896d Publish solana-system-transaction v4.0.0
  • 1cf4c97 Publish solana-sdk v4.0.0
  • 318e685 Publish solana-sdk-wasm-js v2.0.0
  • e8b3cb3 Publish solana-client-traits v4.0.0
  • 93adcb0 Publish solana-transaction v4.0.0
  • 8dbac59 Publish solana-nonce-account v4.0.0
  • 4ca148e Publish solana-message v4.0.0
  • 883d8f4 ci: Add run-semver option (#575)
  • Additional commits viewable in compare view

Updates solana-keychain from 1.2.0 to 1.3.0

Release notes

Sourced from solana-keychain's releases.

@​solana/keychain v1.3.0

TypeScript Packages v1.3.0

Full changelog: ts-keychain-v1.2.0...ts-keychain-v1.3.0

Published Packages

Installation

# Umbrella package (includes all signers)
pnpm add @solana/keychain
Or individual packages
pnpm add @​solana/keychain-memory @​solana/keychain-openfort

What's Changed

New Contributors

Full Changelog: solana-foundation/solana-keychain@ts-keychain-v1.2.0...ts-keychain-v1.3.0

solana-keychain v1.3.0

Release of solana-keychain v1.3.0 (Rust)

crates.io: https://crates.io/crates/solana-keychain/1.3.0

Commits
  • 0ea908a chore: release v1.3.0 (#147)
  • 2f1eeee Add Utila signer (#145)
  • 9b3a707 ci: include utila in fork live tests (#146)
  • b7d71e3 chore(deps): bump the actions group with 3 updates (#143)
  • 439e51a chore(deps): bump the npm-non-major group in /typescript with 3 updates (#144)
  • d247e78 ci: broaden miri coverage (#141)
  • 44c94e9 chore(deps): bump taiki-e/install-action in the actions group (#140)
  • eb03ac7 ci: add dependency audits and miri (#139)
  • f578ff1 chore(deps): bump @​aws-sdk/client-kms (#138)
  • 731aef0 chore(deps): bump actions/stale from 10 to 10.2.0 in the actions group (#137)
  • Additional commits viewable in compare view

Updates solana-pubkey from 2.4.0 to 4.2.0

Release notes

Sourced from solana-pubkey's releases.

big-mod-exp@v4.0.0

What's new

sysvar@v4.1.0

What's new

transaction@v4.1.4

What's new

  • Publish solana-transaction v4.1.4
  • Support and check StableAbi for message and transaction (#771) by @​kskalski
Commits

Updates solana-instruction from 2.3.3 to 3.4.0

Release notes

Sourced from solana-instruction's releases.

frozen-abi@v3.4.0

What's new

frozen-abi-macro@v3.4.0

What's new

bls-signatures@v3.3.0

What's new

short-vec@v3.2.1

What's new

... (truncated)

Commits
  • 294f64d Publish solana-account v3.4.0
  • bbd57d4 account: Temporarily revert breaking changes (#549)
  • db8feec Publish solana-example-mocks v4.0.0
  • dd8f1c2 example-mocks!: Remove dependencies (#545)
  • 9b2acfa Publish solana-short-vec v3.2.0
  • 35c914a Publish solana-feature-gate-interface v3.1.0
  • efdd803 feature-gate / vote: Deprecate functions that take in Rent (#547)
  • e4e9d29 Publish solana-rent v4.0.0
  • 690df26 rust: Bump stable toolchain to 1.93 (#543)
  • 48a2718 account: impl ReadableAccount for Deref<Target = impl ReadableAccount> (#540)
  • Additional commits viewable in compare view

Updates solana-rpc-client from 2.3.13 to 3.1.14

Release notes

Sourced from solana-rpc-client's releases.

Release v3.1.14

This a stable Mainnet release.

https://github.com/anza-xyz/agave/blob/v3.1/CHANGELOG.md

What's Changed

Full Changelog: anza-xyz/agave@v3.1.13...v3.1.14

Release v3.1.13

This a stable Mainnet release.

https://github.com/anza-xyz/agave/blob/v3.1/CHANGELOG.md

What's Changed

Full Changelog: anza-xyz/agave@v3.1.12...v3.1.13

Release v3.1.12

This a stable Mainnet release.

https://github.com/anza-xyz/agave/blob/v3.1/CHANGELOG.md

What's Changed

Bumps the actions group with 21 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [phoenix-rise](https://github.com/Ellipsis-Labs/rise-public) | `0.1.14` | `0.1.16` |
| [clap](https://github.com/clap-rs/clap) | `4.6.0` | `4.6.1` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.50.0` | `1.52.3` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.149` | `1.0.150` |
| [toml](https://github.com/toml-rs/toml) | `0.8.23` | `1.1.0+spec-1.1.0` |
| [reqwest](https://github.com/seanmonstar/reqwest) | `0.12.28` | `0.13.3` |
| [solana-sdk](https://github.com/anza-xyz/solana-sdk) | `2.3.1` | `4.0.1` |
| [solana-keychain](https://github.com/solana-foundation/solana-keychain) | `1.2.0` | `1.3.0` |
| [solana-pubkey](https://github.com/anza-xyz/solana-sdk) | `2.4.0` | `4.2.0` |
| [solana-instruction](https://github.com/anza-xyz/solana-sdk) | `2.3.3` | `3.4.0` |
| [solana-rpc-client](https://github.com/anza-xyz/agave) | `2.3.13` | `3.1.14` |
| [aes-gcm](https://github.com/RustCrypto/AEADs) | `0.10.3` | `0.11.0` |
| [rand](https://github.com/rust-random/rand) | `0.8.5` | `0.10.1` |
| [zeroize](https://github.com/RustCrypto/utils) | `1.8.2` | `1.9.0` |
| [colored](https://github.com/mackwic/colored) | `2.2.0` | `3.1.1` |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.102` | `1.0.103` |
| [chrono](https://github.com/chronotope/chrono) | `0.4.44` | `0.4.45` |
| [semver](https://github.com/dtolnay/semver) | `1.0.27` | `1.0.28` |
| [rpassword](https://github.com/conradkleinespel/rpassword) | `5.0.1` | `7.5.4` |
| [rmcp](https://github.com/modelcontextprotocol/rust-sdk) | `1.3.0` | `2.0.0` |
| [dirs](https://github.com/soc/dirs-rs) | `5.0.1` | `6.0.0` |



Updates `phoenix-rise` from 0.1.14 to 0.1.16
- [Release notes](https://github.com/Ellipsis-Labs/rise-public/releases)
- [Commits](Ellipsis-Labs/rise-public@rise-rust-v0.1.14...rise-rust-v0.1.16)

Updates `clap` from 4.6.0 to 4.6.1
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@clap_complete-v4.6.0...clap_complete-v4.6.1)

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

Updates `serde_json` from 1.0.149 to 1.0.150
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.149...v1.0.150)

Updates `toml` from 0.8.23 to 1.1.0+spec-1.1.0
- [Commits](toml-rs/toml@toml-v0.8.23...toml-v1.1.0)

Updates `reqwest` from 0.12.28 to 0.13.3
- [Release notes](https://github.com/seanmonstar/reqwest/releases)
- [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md)
- [Commits](seanmonstar/reqwest@v0.12.28...v0.13.3)

Updates `solana-sdk` from 2.3.1 to 4.0.1
- [Release notes](https://github.com/anza-xyz/solana-sdk/releases)
- [Commits](https://github.com/anza-xyz/solana-sdk/compare/sdk@v2.3.1...sdk@v4.0.1)

Updates `solana-keychain` from 1.2.0 to 1.3.0
- [Release notes](https://github.com/solana-foundation/solana-keychain/releases)
- [Commits](solana-foundation/solana-keychain@v1.2.0...v1.3.0)

Updates `solana-pubkey` from 2.4.0 to 4.2.0
- [Release notes](https://github.com/anza-xyz/solana-sdk/releases)
- [Commits](https://github.com/anza-xyz/solana-sdk/compare/pubkey@v2.4.0...hash@v4.2.0)

Updates `solana-instruction` from 2.3.3 to 3.4.0
- [Release notes](https://github.com/anza-xyz/solana-sdk/releases)
- [Commits](https://github.com/anza-xyz/solana-sdk/compare/instruction@v2.3.3...account@v3.4.0)

Updates `solana-rpc-client` from 2.3.13 to 3.1.14
- [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.3.13...v3.1.14)

Updates `aes-gcm` from 0.10.3 to 0.11.0
- [Commits](RustCrypto/AEADs@aes-gcm-v0.10.3...aes-gcm-v0.11.0)

Updates `rand` from 0.8.5 to 0.10.1
- [Release notes](https://github.com/rust-random/rand/releases)
- [Changelog](https://github.com/rust-random/rand/blob/master/CHANGELOG.md)
- [Commits](rust-random/rand@0.8.5...0.10.1)

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

Updates `colored` from 2.2.0 to 3.1.1
- [Release notes](https://github.com/mackwic/colored/releases)
- [Changelog](https://github.com/colored-rs/colored/blob/master/CHANGELOG.md)
- [Commits](colored-rs/colored@v2.2.0...v3.1.1)

Updates `anyhow` from 1.0.102 to 1.0.103
- [Release notes](https://github.com/dtolnay/anyhow/releases)
- [Commits](dtolnay/anyhow@1.0.102...1.0.103)

Updates `chrono` from 0.4.44 to 0.4.45
- [Release notes](https://github.com/chronotope/chrono/releases)
- [Changelog](https://github.com/chronotope/chrono/blob/main/CHANGELOG.md)
- [Commits](chronotope/chrono@v0.4.44...v0.4.45)

Updates `semver` from 1.0.27 to 1.0.28
- [Release notes](https://github.com/dtolnay/semver/releases)
- [Commits](dtolnay/semver@1.0.27...1.0.28)

Updates `rpassword` from 5.0.1 to 7.5.4
- [Release notes](https://github.com/conradkleinespel/rpassword/releases)
- [Upgrade guide](https://github.com/conradkleinespel/rpassword/blob/main/UPGRADE.md)
- [Commits](conradkleinespel/rpassword@v5.0.1...v7.5.4)

Updates `rmcp` from 1.3.0 to 2.0.0
- [Release notes](https://github.com/modelcontextprotocol/rust-sdk/releases)
- [Changelog](https://github.com/modelcontextprotocol/rust-sdk/blob/main/release-plz.toml)
- [Commits](modelcontextprotocol/rust-sdk@rmcp-v1.3.0...rmcp-v2.0.0)

Updates `dirs` from 5.0.1 to 6.0.0
- [Commits](https://github.com/soc/dirs-rs/commits)

---
updated-dependencies:
- dependency-name: phoenix-rise
  dependency-version: 0.1.16
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: actions
- dependency-name: clap
  dependency-version: 4.6.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: actions
- dependency-name: tokio
  dependency-version: 1.52.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: actions
- dependency-name: serde_json
  dependency-version: 1.0.150
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: actions
- dependency-name: toml
  dependency-version: 1.1.0+spec-1.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: actions
- dependency-name: reqwest
  dependency-version: 0.13.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: actions
- dependency-name: solana-sdk
  dependency-version: 4.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: actions
- dependency-name: solana-keychain
  dependency-version: 1.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: actions
- dependency-name: solana-pubkey
  dependency-version: 4.2.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: actions
- dependency-name: solana-instruction
  dependency-version: 3.4.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: actions
- dependency-name: solana-rpc-client
  dependency-version: 3.1.14
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: actions
- dependency-name: aes-gcm
  dependency-version: 0.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: actions
- dependency-name: rand
  dependency-version: 0.10.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: actions
- dependency-name: zeroize
  dependency-version: 1.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: actions
- dependency-name: colored
  dependency-version: 3.1.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: actions
- dependency-name: anyhow
  dependency-version: 1.0.103
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: actions
- dependency-name: chrono
  dependency-version: 0.4.45
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: actions
- dependency-name: semver
  dependency-version: 1.0.28
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: actions
- dependency-name: rpassword
  dependency-version: 7.5.4
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: actions
- dependency-name: rmcp
  dependency-version: 2.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: actions
- dependency-name: dirs
  dependency-version: 6.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: actions
...

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 29, 2026
@dependabot @github

dependabot Bot commented on behalf of github Jul 2, 2026

Copy link
Copy Markdown
Contributor Author

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

@dependabot dependabot Bot closed this Jul 2, 2026
@dependabot dependabot Bot deleted the dependabot/cargo/actions-b667fc95d4 branch July 2, 2026 18:15
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