Skip to content

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Mar 18, 2025

Bumps the all-cargo-version-updates group with 19 updates in the / directory:

Package From To
actix-cors 0.7.0 0.7.1
actix-http 3.9.0 3.10.0
actix-web 4.9.0 4.10.2
anyhow 1.0.95 1.0.97
async-trait 0.1.84 0.1.88
clap 4.5.23 4.5.32
indoc 2.0.5 2.0.6
insta 1.41.1 1.42.2
log 0.4.22 0.4.26
moka 0.12.9 0.12.10
postgres-protocol 0.6.7 0.6.8
semver 1.0.24 1.0.26
serde 1.0.217 1.0.219
serde_json 1.0.134 1.0.140
sqlite-hashes 0.7.8 0.7.9
testcontainers-modules 0.11.4 0.11.6
thiserror 2.0.9 2.0.12
tilejson 0.4.1 0.4.2
tokio 1.42.0 1.44.1

Updates actix-cors from 0.7.0 to 0.7.1

Release notes

Sourced from actix-cors's releases.

actix-session: v0.7.1

  • Fix interaction between session state changes and renewal. #265

#265: actix/actix-extras#265

actix-settings: v0.7.1

  • Fix doc examples.

actix-identity: v0.7.1

  • Add IdentityMiddlewareBuilder::{id_key, last_visit_unix_timestamp_key, login_unix_timestamp_key}() methods for customizing keys used in session. Defaults remain the same as before.

actix-cors: v0.7.1

  • Implement PartialEq for Cors allowing for better testing.
Commits
  • b95595b chore(actix-cors): prepare release 0.7.1
  • 4b3f87e build(deps): update redis requirement from 0.28 to 0.29 (#510)
  • 144c7f9 build(deps): bump taiki-e/install-action from 2.47.32 to 2.49.9 (#505)
  • c71b9dd build(deps): bump codecov/codecov-action from 5.3.1 to 5.4.0 (#506)
  • 282d56e build(deps): bump actions-rust-lang/setup-rust-toolchain from 1.10.1 to 1.11....
  • d514ad3 build(deps): update rand requirement from 0.8 to 0.9 (#498)
  • 109e6a4 ci: fix test-msrv recipe
  • bb0c7f2 ci: fix msrv by downgrading native-tls
  • 3f7a479 chore: update redis dependency to 0.28
  • fc4b656 chore: address clippy lints
  • Additional commits viewable in compare view

Updates actix-http from 3.9.0 to 3.10.0

Release notes

Sourced from actix-http's releases.

actix-http: v3.10.0

Added

  • Add header::CLEAR_SITE_DATA constant.
  • Add Extensions::get_or_insert[_with]() methods.
  • Implement From<Bytes> for Payload.
  • Implement From<Vec<u8>> for Payload.

Changed

  • Update brotli dependency to 7.
  • Minimum supported Rust version (MSRV) is now 1.75.
Commits
  • e8351cc build(deps): bump taiki-e/install-action from 2.49.10 to 2.49.17 (#3597)
  • f63cf69 docs: remove "copyright"
  • 92c1e22 chore(awc): prepare release 3.6.0
  • 4bb495a chore(actix-web): prepare release 4.10.0
  • aa000b4 chore(actix-http): prepare release 3.10.0
  • df0885c Add from_bytes/u8_bytes to dev::Payload (#3595)
  • 0796f8e build(deps): bump actions-rust-lang/setup-rust-toolchain from 1.10.1 to 1.11....
  • a2307fb build(deps): bump codecov/codecov-action from 5.3.1 to 5.4.0 (#3591)
  • 98ced47 build(deps): bump ilammy/setup-nasm from 1.5.1 to 1.5.2 (#3593)
  • 98c263b build(deps): bump taiki-e/install-action from 2.49.0 to 2.49.10 (#3590)
  • Additional commits viewable in compare view

Updates actix-web from 4.9.0 to 4.10.2

Release notes

Sourced from actix-web's releases.

actix-web: v4.10.2

  • No significant changes since 4.10.1.

actix-web: v4.10.1

  • No significant changes since 4.10.0.

actix-web: v4.10.0

Added

  • Implement Responder for Result<(), E: Into<Error>>. Returning Ok(()) responds with HTTP 204 No Content.

Changed

  • On Windows, an error is now returned from HttpServer::bind() (or TLS variants) when binding to a socket that's already in use.
  • Update brotli dependency to 7.
  • Minimum supported Rust version (MSRV) is now 1.75.
Commits
  • cede0c6 chore(actix-web): prepare release 4.10.2
  • 1005b6a chore: fix actix-http ver req
  • d898e8f chore(actix-web): prepare release 4.10.1
  • 353873f chore: fix derive-more feature selection
  • 1390e29 docs: fix lint
  • c6e7ebd refactor: use Payload::from internally
  • e8351cc build(deps): bump taiki-e/install-action from 2.49.10 to 2.49.17 (#3597)
  • f63cf69 docs: remove "copyright"
  • 92c1e22 chore(awc): prepare release 3.6.0
  • 4bb495a chore(actix-web): prepare release 4.10.0
  • Additional commits viewable in compare view

Updates anyhow from 1.0.95 to 1.0.97

Release notes

Sourced from anyhow's releases.

1.0.97

  • Documentation improvements

1.0.96

  • Documentation improvements
Commits
  • bfb89ef Release 1.0.97
  • c7fca9b Ignore elidable_lifetime_names pedantic clippy lint
  • 427c0bb Point standard library links to stable
  • f0aa0d3 Release 1.0.96
  • bc33c24 Convert html links to intra-doc links
  • 1cff785 Unset doc-scrape-examples for lib target
  • d71c806 More precise gitignore patterns
  • 3e40975 Remove **/*.rs.bk from project-specific gitignore
  • b880dd0 Ignore Cargo-generated tests/crate/target directory
  • 8891ce3 Merge pull request #404 from dtolnay/missingabi
  • Additional commits viewable in compare view

Updates async-trait from 0.1.84 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)

0.1.87

  • Documentation improvements

0.1.86

  • Documentation improvements

0.1.85

  • Omit Self: 'async_trait bound in impl when not needed by signature (#284)
Commits
  • b3a5919 Release 0.1.88
  • a306be8 Merge pull request #289 from dtolnay/cfg
  • d305984 Fix lifetime bounding on generic parameters that have cfg
  • 78506f1 Add regression test for issue 288
  • a11384e Add issue 283 link in test
  • 32540aa Release 0.1.87
  • 137d14c Resolve mem_replace_with_default clippy lint
  • 45fd82a Ignore elidable_lifetime_names pedantic clippy lint
  • ea2f2a2 Point standard library links to stable
  • 3b78161 Update ui test suite to nightly-2025-02-12
  • Additional commits viewable in compare view

Updates clap from 4.5.23 to 4.5.32

Release notes

Sourced from clap's releases.

v4.5.32

[4.5.32] - 2025-03-10

Features

  • Add Error::remove

Documentation

  • (cookbook) Switch from humantime to jiff
  • (tutorial) Better cover required vs optional

Internal

  • Update pulldown-cmark

v4.5.31

[4.5.31] - 2025-02-24

Features

  • Add ValueParserFactory for Saturating<T>

v4.5.30

[4.5.30] - 2025-02-17

Fixes

  • (assert) Allow num_args(0..=1) to be used with SetTrue
  • (assert) Clean up rendering of takes_values assertions

v4.5.29

[4.5.29] - 2025-02-11

Fixes

  • Change ArgMatches::args_present so not-present flags are considered not-present (matching the documentation)

v4.5.28

[4.5.28] - 2025-02-03

Features

  • (derive) Unstable support for full markdown syntax for doc comments, enabled with unstable-markdown

v4.5.27

[4.5.27] - 2025-01-20

Documentation

... (truncated)

Changelog

Sourced from clap's changelog.

[4.5.32] - 2025-03-10

Features

  • Add Error::remove

Documentation

  • (cookbook) Switch from humantime to jiff
  • (tutorial) Better cover required vs optional

Internal

  • Update pulldown-cmark

[4.5.31] - 2025-02-24

Features

  • Add ValueParserFactory for Saturating<T>

[4.5.30] - 2025-02-17

Fixes

  • (assert) Allow num_args(0..=1) to be used with SetTrue
  • (assert) Clean up rendering of takes_values assertions

[4.5.29] - 2025-02-11

Fixes

  • Change ArgMatches::args_present so not-present flags are considered not-present (matching the documentation)

[4.5.28] - 2025-02-03

Features

  • (derive) Unstable support for full markdown syntax for doc comments, enabled with unstable-markdown

[4.5.27] - 2025-01-20

Documentation

  • Iterate on tutorials and reference based on feedback

[4.5.26] - 2025-01-09

Fixes

... (truncated)

Commits
  • 81b9db2 chore: Release
  • d3d7a17 chore: Merge branch 'master' into upstream/master
  • 361114e chore: Release
  • b693fc0 docs: Update changelog
  • 7100091 Merge pull request #5765 from epage/complete
  • e90b2da refactor(complete): Pull our registration writing
  • 95e99ef refactor(complete): Pull out shell lookup
  • 4af0cd6 fix(complete): Loosen requirements on Command factory
  • f40b37f chore: Release
  • 63bfe1a docs: Update changelog
  • Additional commits viewable in compare view

Updates indoc from 2.0.5 to 2.0.6

Release notes

Sourced from indoc's releases.

2.0.6

  • Documentation improvements
Commits
  • f5934e4 Release 2.0.6
  • 382de61 Point standard library links to stable
  • aed1b60 Unset doc-scrape-examples for lib target
  • 3840e47 More precise gitignore patterns
  • 8304a10 Prevent upload-artifact step from causing CI failure
  • eac624b Work around needless_raw_string_hashes pedantic clippy lint in test
  • 64949e1 Resolve needless_lifetimes clippy lint
  • 0d37b42 Ignore needless_lifetimes clippy lint
  • 78289e3 Upload CI Cargo.lock for reproducing failures
  • 9ee9ca9 Fill in ignore reasons in all #[ignore] attributes
  • Additional commits viewable in compare view

Updates insta from 1.41.1 to 1.42.2

Release notes

Sourced from insta's releases.

1.42.2

Release Notes

  • Support other indention characters than spaces in inline snapshots. #679
  • Fix an issue where multiple targets with the same root would cause too many pending snapshots to be reported. #730
  • Hide unseen option in CLI, as it's pending deprecation. #732
  • Stop \t and \x1b (ANSI color escape) from causing snapshots to be escaped. #715
  • Improved handling of inline snapshots within allow_duplicates! { .. }. #712

Install cargo-insta 1.42.2

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/mitsuhiko/insta/releases/download/1.42.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.42.2/cargo-insta-installer.ps1 | iex"

Download cargo-insta 1.42.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

1.42.1

Release Notes

  • Improved handling of control characters in inline snapshots. #713

Install cargo-insta 1.42.1

Install prebuilt binaries via shell script

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

Install prebuilt binaries via powershell script

powershell -ExecutionPolicy ByPass -c "irm https://github.com/mitsuhiko/insta/releases/download/1.42.1/cargo-insta-installer.ps1 | iex"
</tr></table> 

... (truncated)

Changelog

Sourced from insta's changelog.

1.42.2

  • Support other indention characters than spaces in inline snapshots. #679
  • Fix an issue where multiple targets with the same root would cause too many pending snapshots to be reported. #730
  • Hide unseen option in CLI, as it's pending deprecation. #732
  • Stop \t and \x1b (ANSI color escape) from causing snapshots to be escaped. #715
  • Improved handling of inline snapshots within allow_duplicates! { .. }. #712

1.42.1

  • Improved handling of control characters in inline snapshots. #713
  • Add pending deprecation warning for --accept-unseen. We've left an issue open at mitsuhiko/insta#659 eliciting feedback on whether anyone uses this for a few months. A warning will now be printed when --accept-unseen is used, and we'll eventually remove the feature unless we get some feedback that it's useful. #668

1.42.0

  • Text snapshots no longer contain snapshot_type: text in their metadata. For context, we originally added this in the prior release (1.41.0) to support binary snapshots, but some folks disliked the diff noise on any snapshot changes, and the maintainers' weighted votes favored reverting. I apologize that this will cause some additional churn for those who used cargo insta test --force-update-snapshots to update their snapshots to the 1.41 format; running this again with 1.42 will remove those metadata entries. To confirm: this doesn't affect whether snapshot tests pass or fail — the worst impact is some additional diffs in metadata. #690
  • Pending snapshots are no longer removed throughout the workspace by cargo-insta before running tests. Instead, running a test will overwrite or remove its own pending snapshot. To remove all pending snapshots, use cargo insta reject or run tests with --unreferenced=delete. #651
  • insta::internals::SettingsBindDropGuard (returned from Settings::bind_to_scope) no longer implements Send. This was incorrect and any tests relying on this behavior where not working properly. Fixes #694 in #695 by @​jalil-salame
Commits
  • e81bae9 Bump versions to 1.42.2 (#733)
  • df78d98 Hide unseen from --help (#732)
  • 7a5e938 Fix duplicate snapshots on multiple targets with identical roots (#730)
  • b72bfba Improve functional test docs (#731)
  • e6469ac Qualify all references in macros to avoid name clashes (#729)
  • b6ecee1 Add changelog for INSTA_WORKSPACE_ROOT at compile time (#727)
  • ef4703f Allow setting INSTA_WORKSPACE_ROOT at compile time (#726)
  • 04a98c3 Fix inline snapshot handling within allow_duplicates! block (#722)
  • 24f32aa Fix crash on scanning indentation of arbitrary lines (#723)
  • 759283e [ISSUE-718] Allow specifying cargo-nextest bin (#721)
  • Additional commits viewable in compare view

Updates log from 0.4.22 to 0.4.26

Release notes

Sourced from log's releases.

0.4.26

What's Changed

Full Changelog: rust-lang/log@0.4.25...0.4.26

0.4.25

What's Changed

Full Changelog: rust-lang/log@0.4.24...0.4.25

0.4.24 (yanked)

What's Changed

Full Changelog: rust-lang/log@0.4.23...0.4.24

0.4.23 (yanked)

What's Changed

New Contributors

Full Changelog: rust-lang/log@0.4.22...0.4.23

Changelog

Sourced from log's changelog.

[0.4.26] - 2025-02-18

What's Changed

Full Changelog: rust-lang/log@0.4.25...0.4.26

[0.4.25] - 2025-01-14

What's Changed

Full Changelog: rust-lang/log@0.4.24...0.4.25

[0.4.24] - 2025-01-11

What's Changed

Full Changelog: rust-lang/log@0.4.23...0.4.24

[0.4.23] - 2025-01-10 (yanked)

What's Changed

New Contributors

Full Changelog: rust-lang/log@0.4.22...0.4.23

Commits
  • 5a91554 Merge pull request #670 from rust-lang/cargo/0.4.26
  • 5aba0c2 prepare for 0.4.26 release
  • 0551261 Merge pull request #669 from SpriteOvO/crate-doc-update
  • 3ff3bdc Merge pull request #668 from SpriteOvO/value-clone
  • 931d883 Add spdlog-rs link to crate doc
  • 310c9b4 Derive Clone for kv::Value
  • 22be810 Merge pull request #663 from rust-lang/cargo/0.4.25
  • 0279730 prepare for 0.4.25 release
  • 4099bcb Merge pull request #662 from rust-lang/fix/cargo-features
  • 36e7e3f revert loosening of kv cargo features
  • Additional commits viewable in compare view

Updates moka from 0.12.9 to 0.12.10

Changelog

Sourced from moka's changelog.

Version 0.12.10

Changed

  • Disable the quanta feature by default. (#482[gh-pull-0482])
  • Replaced most uses of quanta::Instant with std::time::Instant to increase the accuracy of time measurements (#481[gh-pull-0481]):
    • When quanta feature is enabled, quanta::Instant is used for some performance critical parts in the cache, and std::time::Instant is used for the rest of the parts.
    • However, as of this version, enabling the quanta feature will not make any noticeable difference in the performance.
    • When quanta feature is disabled (default), std::time::Instant is used for all time measurements.
  • Switched to AtomicU64 of the portable-atomic crate, which provides fallback implementations for platforms where std AtomicU64 is not available (#480[gh-pull-0480]):
    • moka's atomic64 feature no longer has any effect on the build as AtomicU64 is now always available on all platforms. But we keep the atomic64 feature in Cargo.toml for backward compatibility.
Commits
  • de0b2d6 Merge pull request #483 from moka-rs/prepare-v0-12-10
  • c7aec09 Update the README; remove a broken link to the troubleshooting section
  • 101e3a9 Merge pull request #482 from moka-rs/disable-quanta-by-default
  • 9764df5 Merge pull request #481 from moka-rs/increase-time-accuracy
  • 5d03e02 Minor tweaks in the clock module
  • 5dbd7ab Merge pull request #480 from moka-rs/portable-atomic
  • f7d2d29 Update the change log
  • 0a6b6a4 Disable the quanta feature by default
  • d22f4f3 Update the change log
  • 668bdc0 Remove commented out codes
  • Additional commits viewable in compare view

Updates postgres-protocol from 0.6.7 to 0.6.8

Commits

Updates semver from 1.0.24 to 1.0.26

Release notes

Sourced from semver's releases.

1.0.26

  • Documentation improvements

1.0.25

  • Enable serde impls on play.rust-lang.org (#330, thanks @​jofas)
Commits
  • 3e64fdb Release 1.0.26
  • dd8dc0a Point standard library links to stable
  • 479518d Unset doc-scrape-examples for lib target
  • 4fa7acb More precise gitignore patterns
  • b1e2848 Release 1.0.25
  • 1fb55fc Merge pull request 330 from jofas/serde-on-playground
  • 2bf9708 Enabled 'serde' feature on playground
  • See full diff in compare view

Updates serde from 1.0.217 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)

v1.0.218

  • Documentation improvements
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
  • 7bfd518 Release 1.0.218
  • Additional commits viewable in compare view

Updates serde_json from 1.0.134 to 1.0.140

Release notes

Sourced from serde_json's releases.

v1.0.140

  • Documentation improvements

v1.0.139

  • Documentation improvements

v1.0.138

  • Documentation improvements

v1.0.137

  • Turn on "float_roundtrip" and "unbounded_depth" features for serde_json in play.rust-lang.org (#1231)

v1.0.136

  • Optimize serde_json::value::Serializer::serialize_map by using Map::with_capacity (#1230, thanks @​goffrie)

v1.0.135

Commits
  • 7627834 Release 1.0.140
  • d77a498 Merge pull request #1245 from serde-rs/powerpc
  • b34d317 Delete unused gcc installation
  • f7200c3 Ignore unbuffered_bytes clippy lint
  • 76cd4fb Ignore elidable_lifetime_names pedantic clippy lint
  • 400eaa9 Point standard library links to stable
  • 4d4f53c Release 1.0.139
  • 5d6b32f Merge pull request #1242 from dtolnay/writefloat
  • e5bb8bd Document behavior of write_f32/f64 on non-finite floats
  • 7a79781 Merge pull request #1241 from dtolnay/doclink
  • Additional commits viewable in compare view

Updates sqlite-hashes from 0.7.8 to 0.7.9

Release notes

Sourced from sqlite-hashes's releases.

v0.7.9

What's Changed

  • Fix rusqlite and update deps, pre-commit hooks by @​nyurik in nyurik/sqlite-hashes#54
    • Keep rusqlite dependency to be >= 0.30, < 0.33. The 0.33 introduces an incompatible change.

Full Changelog: nyurik/sqlite-hashes@v0.7.8...v0.7.9

Commits

Updates testcontainers-modules from 0.11.4 to 0.11.6

Release notes

Sourced from testcontainers-modules's releases.

v0.11.6

Features

  • Allow enabling jetstream for nats (#268)
  • Add Foundry Anvil image impl (#272)
  • Add method latest to anvil node impl (#277)

Testing

  • Fix broken test in CI (#281)

v0.11.5

Bug Fixes

  • Fix clippy errors (#251)

Documentation

  • Add nats example (#239)

Features

  • Add "pro" variant for LocalStack image (#255)
  • Add Valkey module (#252)
  • Add RQLite module (#261)

Miscellaneous Tasks

  • Update async-nats requirement from 0.37.0 to 0.38.0 (#245)
  • Fix oracle tests (#263)
  • Bump MSRV to 1.81 (#264)
  • Utilize cargo-hack partitions to speed up tests (

…ory with 19 updates

Bumps the all-cargo-version-updates group with 19 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [actix-cors](https://github.com/actix/actix-extras) | `0.7.0` | `0.7.1` |
| [actix-http](https://github.com/actix/actix-web) | `3.9.0` | `3.10.0` |
| [actix-web](https://github.com/actix/actix-web) | `4.9.0` | `4.10.2` |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.95` | `1.0.97` |
| [async-trait](https://github.com/dtolnay/async-trait) | `0.1.84` | `0.1.88` |
| [clap](https://github.com/clap-rs/clap) | `4.5.23` | `4.5.32` |
| [indoc](https://github.com/dtolnay/indoc) | `2.0.5` | `2.0.6` |
| [insta](https://github.com/mitsuhiko/insta) | `1.41.1` | `1.42.2` |
| [log](https://github.com/rust-lang/log) | `0.4.22` | `0.4.26` |
| [moka](https://github.com/moka-rs/moka) | `0.12.9` | `0.12.10` |
| [postgres-protocol](https://github.com/sfackler/rust-postgres) | `0.6.7` | `0.6.8` |
| [semver](https://github.com/dtolnay/semver) | `1.0.24` | `1.0.26` |
| [serde](https://github.com/serde-rs/serde) | `1.0.217` | `1.0.219` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.134` | `1.0.140` |
| [sqlite-hashes](https://github.com/nyurik/sqlite-hashes) | `0.7.8` | `0.7.9` |
| [testcontainers-modules](https://github.com/testcontainers/testcontainers-rs-modules-community) | `0.11.4` | `0.11.6` |
| [thiserror](https://github.com/dtolnay/thiserror) | `2.0.9` | `2.0.12` |
| [tilejson](https://github.com/georust/tilejson) | `0.4.1` | `0.4.2` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.42.0` | `1.44.1` |



Updates `actix-cors` from 0.7.0 to 0.7.1
- [Release notes](https://github.com/actix/actix-extras/releases)
- [Commits](actix/actix-extras@cors-v0.7.0...cors-v0.7.1)

Updates `actix-http` from 3.9.0 to 3.10.0
- [Release notes](https://github.com/actix/actix-web/releases)
- [Changelog](https://github.com/actix/actix-web/blob/master/CHANGES.md)
- [Commits](actix/actix-web@http-v3.9.0...http-v3.10.0)

Updates `actix-web` from 4.9.0 to 4.10.2
- [Release notes](https://github.com/actix/actix-web/releases)
- [Changelog](https://github.com/actix/actix-web/blob/master/CHANGES.md)
- [Commits](actix/actix-web@web-v4.9.0...web-v4.10.2)

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

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

Updates `clap` from 4.5.23 to 4.5.32
- [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.5.23...clap_complete-v4.5.32)

Updates `indoc` from 2.0.5 to 2.0.6
- [Release notes](https://github.com/dtolnay/indoc/releases)
- [Commits](dtolnay/indoc@2.0.5...2.0.6)

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

Updates `log` from 0.4.22 to 0.4.26
- [Release notes](https://github.com/rust-lang/log/releases)
- [Changelog](https://github.com/rust-lang/log/blob/master/CHANGELOG.md)
- [Commits](rust-lang/log@0.4.22...0.4.26)

Updates `moka` from 0.12.9 to 0.12.10
- [Changelog](https://github.com/moka-rs/moka/blob/main/CHANGELOG.md)
- [Commits](moka-rs/moka@v0.12.9...v0.12.10)

Updates `postgres-protocol` from 0.6.7 to 0.6.8
- [Release notes](https://github.com/sfackler/rust-postgres/releases)
- [Commits](rust-postgres/rust-postgres@postgres-protocol-v0.6.7...postgres-protocol-v0.6.8)

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

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

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

Updates `sqlite-hashes` from 0.7.8 to 0.7.9
- [Release notes](https://github.com/nyurik/sqlite-hashes/releases)
- [Commits](nyurik/sqlite-hashes@v0.7.8...v0.7.9)

Updates `testcontainers-modules` from 0.11.4 to 0.11.6
- [Release notes](https://github.com/testcontainers/testcontainers-rs-modules-community/releases)
- [Changelog](https://github.com/testcontainers/testcontainers-rs-modules-community/blob/main/CHANGELOG.md)
- [Commits](testcontainers/testcontainers-rs-modules-community@v0.11.4...v0.11.6)

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

Updates `tilejson` from 0.4.1 to 0.4.2
- [Release notes](https://github.com/georust/tilejson/releases)
- [Changelog](https://github.com/georust/tilejson/blob/main/CHANGELOG.md)
- [Commits](https://github.com/georust/tilejson/commits/v0.4.2)

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

---
updated-dependencies:
- dependency-name: actix-cors
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-cargo-version-updates
- dependency-name: actix-http
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-cargo-version-updates
- dependency-name: actix-web
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-cargo-version-updates
- dependency-name: anyhow
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-cargo-version-updates
- dependency-name: async-trait
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-cargo-version-updates
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-cargo-version-updates
- dependency-name: indoc
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-cargo-version-updates
- dependency-name: insta
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-cargo-version-updates
- dependency-name: log
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-cargo-version-updates
- dependency-name: moka
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-cargo-version-updates
- dependency-name: postgres-protocol
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-cargo-version-updates
- dependency-name: semver
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-cargo-version-updates
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-cargo-version-updates
- dependency-name: serde_json
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-cargo-version-updates
- dependency-name: sqlite-hashes
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-cargo-version-updates
- dependency-name: testcontainers-modules
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-cargo-version-updates
- dependency-name: thiserror
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-cargo-version-updates
- dependency-name: tilejson
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-cargo-version-updates
- dependency-name: tokio
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-cargo-version-updates
...

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 Mar 18, 2025
@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Mar 25, 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 rebase.

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