Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 19, 2025

Bumps the deps group with 8 updates in the /net/rs directory:

Package From To
sails-idl-parser 0.6.3 0.9.2
anyhow 1.0.98 1.0.100
convert_case 0.7.1 0.8.0
genco 0.17.10 0.18.1
insta 1.43.1 1.43.2
itertools 0.13.0 0.14.0
parity-scale-codec 3.6.12 3.7.5
serde 1.0.219 1.0.228

Updates sails-idl-parser from 0.6.3 to 0.9.2

Release notes

Sourced from sails-idl-parser's releases.

Sails-RS v0.9.2

Bump up Gear crates to v1.9.2

Full Changelog: js/v0.5.0...rs/v0.9.2

Sails-RS v0.9.1

Bump up Gear crates to v1.9.1

What's New

  • Introduce a benchmarking suite for the sails_rs

What's Changed

Full Changelog: js/v0.4.3...rs/v0.9.1

Sails-RS v0.9.0

Bump up Gear crates to v1.9.0

What's New

  • BREAKING CHANGE: the #[export] attribute must be on all methods that should be accessible via message
  • BREAKING CHANGE: use #[sails_rs::event] macro to generate encoding code for event
  • BREAKING CHANGE: require impl Default trait on program with no ctors
  • Improved handling of sync methods without gstd async runtime
  • Changing approach of funcs implementations for services
    • Service methods defined in impl Service with #[sails_rs::service] are moved to Exposure and are no longer accessible directly via the Service type.
    • Exposure implement DerefMut<Target = Service> to allow transparent access to service internals.
    • Event emission (emit_event, emit_eth_event) is permitted only within Exposure methods. This removes the need for statically storing the service route, simplifying event emission logic.
    • Base services no longer need to implement Clone, an extended service must implement Into to destruct into base services
  • new Sails program generation via cargo sails new from precompiled template

What's Changed

... (truncated)

Commits
  • 38ec129 build(tmpl): update version to v0.9.2 in contract template
  • 0538b78 build(rs): update version to v0.9.2
  • 8e60ae8 chore: bump gear crates to v1.9.2
  • 9d06272 [depbot] Bump the development group with 5 updates (#1062)
  • 9c49cd2 [depbot] bump the development group with 6 updates (#1060)
  • a46f48c chore(js): migrate from lerna to pnpm (#1059)
  • 30ae2c0 feat(js): introduce query builder (#1054)
  • 37aa118 fix(js): create message with a single argument (#1051)
  • 2df41f8 release: sync Sails-RS v0.9.1 to master (#1049)
  • c15d7f1 chore: bump gear crates to v1.9.1 (#1048)
  • Additional commits viewable in compare view

Updates anyhow from 1.0.98 to 1.0.100

Release notes

Sourced from anyhow's releases.

1.0.100

  • Teach clippy to lint formatting arguments in bail!, ensure!, anyhow! (#426)

1.0.99

  • Allow build-script cleanup failure with NFSv3 output directory to be non-fatal (#420)
Commits
  • 18c2598 Release 1.0.100
  • f271988 Merge pull request #426 from dtolnay/clippyfmt
  • 52f2115 Mark macros with clippy::format_args
  • da5fd9d Raise minimum tested compiler to rust 1.76
  • 211e409 Opt in to generate-macro-expansion when building on docs.rs
  • b48fc02 Enforce trybuild >= 1.0.108
  • d5f59fb Update ui test suite to nightly-2025-09-07
  • 238415d Update ui test suite to nightly-2025-08-24
  • 3bab070 Update actions/checkout@v4 -> v5
  • 4249254 Order cap-lints flag in the same order as thiserror build script
  • Additional commits viewable in compare view

Updates convert_case from 0.7.1 to 0.8.0

Commits

Updates genco from 0.17.10 to 0.18.1

Release notes

Sourced from genco's releases.

0.18.1

What's Changed

New Contributors

Full Changelog: udoprog/genco@0.18.0...0.18.1

0.18.0

What's Changed

Full Changelog: udoprog/genco@0.17.10...0.18.0

Commits

Updates insta from 1.43.1 to 1.43.2

Release notes

Sourced from insta's releases.

1.43.2

Release Notes

  • Fix panics when cargo metadata fails to execute or parse (e.g., when cargo is not in PATH or returns invalid output). Now falls back to using the manifest directory as the workspace root. #798 (@​adriangb)
  • Fix clippy uninlined_format_args lint warnings. #801
  • Changed diff line numbers to 1-based indexing. #799
  • Preserve snapshot names with INSTA_GLOB_FILTER. #786
  • Bumped libc crate to 0.2.174, fixing building on musl targets, and increasing the MSRV of insta to 1.64.0 (released Sept 2022). #784
  • Fix clippy 1.88 errors. #783
  • Fix source path in snapshots for non-child workspaces. #778
  • Add lifetime to Selector in redaction iterator. #779

Install cargo-insta 1.43.2

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/mitsuhiko/insta/releases/download/1.43.2/cargo-insta-installer.sh | sh

Install prebuilt binaries via powershell script

powershell -ExecutionPolicy ByPass -c "irm https://github.com/mitsuhiko/insta/releases/download/1.43.2/cargo-insta-installer.ps1 | iex"

Download cargo-insta 1.43.2

File Platform Checksum
cargo-insta-aarch64-apple-darwin.tar.xz Apple Silicon macOS checksum
cargo-insta-x86_64-apple-darwin.tar.xz Intel macOS checksum
cargo-insta-x86_64-pc-windows-msvc.zip x64 Windows checksum
cargo-insta-x86_64-unknown-linux-gnu.tar.xz x64 Linux checksum
cargo-insta-x86_64-unknown-linux-musl.tar.xz x64 MUSL Linux checksum
Changelog

Sourced from insta's changelog.

1.43.2

  • Fix panics when cargo metadata fails to execute or parse (e.g., when cargo is not in PATH or returns invalid output). Now falls back to using the manifest directory as the workspace root. #798 (@​adriangb)
  • Fix clippy uninlined_format_args lint warnings. #801
  • Changed diff line numbers to 1-based indexing. #799
  • Preserve snapshot names with INSTA_GLOB_FILTER. #786
  • Bumped libc crate to 0.2.174, fixing building on musl targets, and increasing the MSRV of insta to 1.64.0 (released Sept 2022). #784
  • Fix clippy 1.88 errors. #783
  • Fix source path in snapshots for non-child workspaces. #778
  • Add lifetime to Selector in redaction iterator. #779
Commits
  • 01fc57f Fix Windows runner configuration for releases
  • 88c9a2f Prepare CHANGELOG for 1.43.2 release (#802)
  • d03c2a6 Improve error handling for cargo workspace detection (#800)
  • 55987ac Fix clippy uninlined_format_args lint warnings (#801)
  • ae26e81 Change diff line numbers to 1-based indexing (#799)
  • 26efb60 Release insta 1.43.2 (#791)
  • 7793782 Preserve snapshot names with INSTA_GLOB_FILTER (#786)
  • 1d6e0c7 chore: bump libc crate (#784)
  • 1a17ea9 chore: fix clippy 1.88 errors (#783)
  • 7d0de48 Fix source path in snapshots for non-child workspaces (#778)
  • Additional commits viewable in compare view

Updates itertools from 0.13.0 to 0.14.0

Changelog

Sourced from itertools's changelog.

0.14.0

Breaking

  • Increased MSRV to 1.63.0 (#960)
  • Removed generic parameter from cons_tuples (#988)

Added

  • Added array_combinations (#991)
  • Added k_smallest_relaxed and variants (#925)
  • Added next_array and collect_array (#560)
  • Implemented DoubleEndedIterator for FilterOk (#948)
  • Implemented DoubleEndedIterator for FilterMapOk (#950)

Changed

  • Allow Q: ?Sized in Itertools::contains (#971)
  • Improved hygiene of chain! (#943)
  • Improved into_group_map_by documentation (#1000)
  • Improved tree_reduce documentation (#955)
  • Improved discoverability of merge_join_by (#966)
  • Improved discoverability of take_while_inclusive (#972)
  • Improved documentation of find_or_last and find_or_first (#984)
  • Prevented exponentially large type sizes in tuple_combinations (#945)
  • Added track_caller attr for asser_equal (#976)

Notable Internal Changes

  • Fixed clippy lints (#956, #987, #1008)
  • Addressed warnings within doctests (#964)
  • CI: Run most tests with miri (#961)
  • CI: Speed up "cargo-semver-checks" action (#938)
  • Changed an instance of default_features in Cargo.toml to default-features (#985)
Commits
  • a015a68 Add next_array and collect_array
  • a1213e1 Prepare v0.14.0 release
  • ff0c942 fix clippy lints
  • f80883b Fix into_group_map_by documentation errors
  • b793238 Add track_caller for asser_equal
  • 5d4056b default_features is deprecated - switch it to default-features
  • a447b68 doc for added trait
  • d0479b0 "nitpicks"
  • 35c78ce IndexMut -> BorrowMut<slice>
  • deb53ba refactored to share code
  • Additional commits viewable in compare view

Updates parity-scale-codec from 3.6.12 to 3.7.5

Changelog

Sourced from parity-scale-codec's changelog.

[3.7.5] - 2025-05-20

Fixed

  • Implement on_before_alloc_mem() for CountedInput #716
  • Fix derive(Decode) for enums with lifetime parameters and struct-like variants #726
  • Fix performance regression (#731)
  • Fix DecodeWithMemTracking bounds for Cow #735

[3.7.4] - 2025-02-05

Added

  • Disallow duplicate indexes using constant evaluation (#653)

[3.7.3] - 2025-01-30

Added

  • Fix added bounds in Encode and other derive macros. (#689)

[3.7.0] - 2024-11-18

Added

  • Allow decoding with a memory limit. (616)
  • Introduce CountedInput, an wrapper on Input that counts the bytes read. (630)

Changed

  • This release bumps some dependencies, primarily bumping syn to 2. (#640).

Fixed

  • Fix MaxEncodedLen derive macro for enum with skipped variant (#622)
  • Use MAX_PREALLOCATION consistently #605

[3.6.4] - 2023-07-14

Added

  • Now #[derive(Encode)] implements the size_hint() method for structures and enumerations. This improves the performance of the encode() method by pre-allocating memory.

[3.6.3] - 2023-07-03

Fixed

... (truncated)

Commits

Updates serde from 1.0.219 to 1.0.228

Release notes

Sourced from serde's releases.

v1.0.228

  • Allow building documentation with RUSTDOCFLAGS='--cfg=docsrs' set for the whole dependency graph (#2995)

v1.0.227

  • Documentation improvements (#2991)

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

Commits
  • a866b33 Release 1.0.228
  • 5adc9e8 Merge pull request #2995 from dtolnay/rustdocflags
  • ab58178 Workaround for RUSTDOCFLAGS='--cfg=docsrs'
  • 415d9fc Release 1.0.227
  • 7c58427 Merge pull request #2991 from dtolnay/inlinecoredoc
  • 9d3410e Merge pull request #2992 from dtolnay/inplaceseed
  • 2fb6748 Remove InPlaceSeed public re-export
  • f8137c7 Inline serde_core into serde in docsrs mode
  • b7dbf7e Merge pull request #2990 from dtolnay/integer128
  • 7c83691 No longer macro_use integer128 module
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Oct 19, 2025
@dependabot dependabot bot force-pushed the dependabot/cargo/net/rs/deps-d49ca0292e branch 2 times, most recently from 6a5f12e to b711d4e Compare November 2, 2025 18:04
@dependabot dependabot bot force-pushed the dependabot/cargo/net/rs/deps-d49ca0292e branch from b711d4e to 8a65846 Compare November 9, 2025 18:04
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 16, 2025

Dependabot tried to update this pull request, but something went wrong. We're looking into it, but in the meantime you can retry the update by commenting @dependabot recreate.

@dependabot dependabot bot force-pushed the dependabot/cargo/net/rs/deps-d49ca0292e branch from 8a65846 to a7d1593 Compare November 23, 2025 18:04
Bumps the deps group with 8 updates in the /net/rs directory:

| Package | From | To |
| --- | --- | --- |
| [sails-idl-parser](https://github.com/gear-tech/sails) | `0.6.3` | `0.9.2` |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.98` | `1.0.100` |
| [convert_case](https://github.com/rutrum/convert-case) | `0.7.1` | `0.8.0` |
| [genco](https://github.com/udoprog/genco) | `0.17.10` | `0.18.1` |
| [insta](https://github.com/mitsuhiko/insta) | `1.43.1` | `1.43.2` |
| [itertools](https://github.com/rust-itertools/itertools) | `0.13.0` | `0.14.0` |
| [parity-scale-codec](https://github.com/paritytech/parity-scale-codec) | `3.6.12` | `3.7.5` |
| [serde](https://github.com/serde-rs/serde) | `1.0.219` | `1.0.228` |



Updates `sails-idl-parser` from 0.6.3 to 0.9.2
- [Release notes](https://github.com/gear-tech/sails/releases)
- [Commits](rs/v0.6.3...rs/v0.9.2)

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

Updates `convert_case` from 0.7.1 to 0.8.0
- [Commits](https://github.com/rutrum/convert-case/commits)

Updates `genco` from 0.17.10 to 0.18.1
- [Release notes](https://github.com/udoprog/genco/releases)
- [Changelog](https://github.com/udoprog/genco/blob/main/CHANGELOG.md)
- [Commits](udoprog/genco@0.17.10...0.18.1)

Updates `insta` from 1.43.1 to 1.43.2
- [Release notes](https://github.com/mitsuhiko/insta/releases)
- [Changelog](https://github.com/mitsuhiko/insta/blob/master/CHANGELOG.md)
- [Commits](mitsuhiko/insta@1.43.1...1.43.2)

Updates `itertools` from 0.13.0 to 0.14.0
- [Changelog](https://github.com/rust-itertools/itertools/blob/master/CHANGELOG.md)
- [Commits](rust-itertools/itertools@v0.13.0...v0.14.0)

Updates `parity-scale-codec` from 3.6.12 to 3.7.5
- [Release notes](https://github.com/paritytech/parity-scale-codec/releases)
- [Changelog](https://github.com/paritytech/parity-scale-codec/blob/master/CHANGELOG.md)
- [Commits](paritytech/parity-scale-codec@v3.6.12...v3.7.5)

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

---
updated-dependencies:
- dependency-name: sails-idl-parser
  dependency-version: 0.9.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: anyhow
  dependency-version: 1.0.100
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: convert_case
  dependency-version: 0.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: genco
  dependency-version: 0.18.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: insta
  dependency-version: 1.43.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: itertools
  dependency-version: 0.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: parity-scale-codec
  dependency-version: 3.7.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: serde
  dependency-version: 1.0.228
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/cargo/net/rs/deps-d49ca0292e branch from a7d1593 to e96515b Compare November 30, 2025 18:05
@vobradovich vobradovich closed this Dec 1, 2025
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 1, 2025

This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.

To ignore these dependencies, configure ignore rules in dependabot.yml

@dependabot dependabot bot deleted the dependabot/cargo/net/rs/deps-d49ca0292e branch December 1, 2025 17:29
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.

2 participants