Skip to content

Bump the dependencies group across 1 directory with 10 updates#19

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/cargo/dependencies-6862193be7
Open

Bump the dependencies group across 1 directory with 10 updates#19
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/cargo/dependencies-6862193be7

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github May 13, 2025

Bumps the dependencies group with 10 updates in the / directory:

Package From To
tokio 1.43.0 1.45.0
sea-orm 1.1.5 1.1.10
serde 1.0.218 1.0.219
axum 0.8.1 0.8.4
tower-http 0.6.2 0.6.4
http 1.2.0 1.3.1
lettre 0.11.13 0.11.16
thiserror 2.0.11 2.0.12
async-std 1.13.0 1.13.1
sea-orm-migration 1.1.5 1.1.10

Updates tokio from 1.43.0 to 1.45.0

Release notes

Sourced from tokio's releases.

Tokio v1.45.0

Added

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

Changed

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

Unstable

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

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

Tokio v1.44.2

This release fixes a soundness issue in the broadcast channel. The channel accepts values that are Send but !Sync. Previously, the channel called clone() on these values without synchronizing. This release fixes the channel by synchronizing calls to .clone() (Thanks Austin Bonander for finding and reporting the issue).

Fixed

  • sync: synchronize clone() call in broadcast channel (#7232)

#7232: tokio-rs/tokio#7232

Tokio v1.44.1

1.44.1 (March 13th, 2025)

Fixed

  • rt: skip defer queue in block_in_place context (#7216)

#7216: tokio-rs/tokio#7216

Tokio v1.44.0

1.44.0 (March 7th, 2025)

This release changes the from_std method on sockets to panic if a blocking socket is provided. We determined this change is not a breaking change as Tokio is not intended to operate using blocking sockets. Doing so results in runtime hangs and should be considered a bug. Accidentally passing a blocking socket to Tokio is one of the most common user mistakes. If this change causes an issue for you, please comment on #7172.

... (truncated)

Commits
  • 00754c8 chore: prepare Tokio v1.45.0 (#7308)
  • 1ae9434 time: revert "use sharding for timer implementation" related changes (#7226)
  • 8895bba ci: Test AArch64 Windows (#7288)
  • 48ca254 time: update sleep documentation to reflect maximum allowed duration (#7302)
  • a0af02a compat: add more documentation to tokio_util::compat (#7279)
  • 0ce3a11 metrics: stabilize worker_park_count and worker_unpark_count (#7276)
  • 1ea9ce1 ci: fix cfg!(miri) declarations in tests (#7286)
  • 4d4d126 chore: prepare tokio-util v0.7.15 (#7283)
  • 5490267 fs: update the mockall dev dependency to 0.13.0 (#7234)
  • 1434b32 examples: improve echo example consistency (#7256)
  • Additional commits viewable in compare view

Updates sea-orm from 1.1.5 to 1.1.10

Release notes

Sourced from sea-orm's releases.

1.1.10

Upgrades

1.1.9

Enhancements

Bug fixes

House keeping

1.1.8

New Features

  • Implement DeriveValueType for enum strings
#[derive(DeriveValueType)]
#[sea_orm(value_type = "String")]
pub enum Tag {
    Hard,
    Soft,
}
// from_str defaults to std::str::FromStr::from_str
impl std::str::FromStr for Tag {
type Err = sea_orm::sea_query::ValueTypeErr;
fn from_str(s: &str) -> Result<Self, Self::Err> { .. }
}
// to_str defaults to std::string::ToString::to_string.
impl std::fmt::Display for Tag {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { .. }
}
// you can override from_str and to_str with custom functions
#[derive(DeriveValueType)]
#[sea_orm(value_type = "String", from_str = "Tag::from_str", to_str = "Tag::to_str")]
pub enum Tag {
Color,
Grey,
</tr></table>

... (truncated)

Changelog

Sourced from sea-orm's changelog.

1.1.10 - 2025-04-14

Upgrades

1.1.9 - 2025-04-14

Enhancements

Bug fixes

House keeping

1.1.8 - 2025-03-30

New Features

  • Implement DeriveValueType for enum strings
#[derive(DeriveValueType)]
#[sea_orm(value_type = "String")]
pub enum Tag {
    Hard,
    Soft,
}
// from_str defaults to std::str::FromStr::from_str
impl std::str::FromStr for Tag {
type Err = sea_orm::sea_query::ValueTypeErr;
fn from_str(s: &str) -> Result<Self, Self::Err> { .. }
}
// to_str defaults to std::string::ToString::to_string.
impl std::fmt::Display for Tag {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { .. }
}
// you can override from_str and to_str with custom functions
#[derive(DeriveValueType)]
#[sea_orm(value_type = "String", from_str = "Tag::from_str", to_str = "Tag::to_str")]
pub enum Tag {
</tr></table>

... (truncated)

Commits

Updates serde from 1.0.218 to 1.0.219

Release notes

Sourced from serde's releases.

v1.0.219

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

Updates axum from 0.8.1 to 0.8.4

Release notes

Sourced from axum's releases.

axum v0.8.4

  • added: Router::reset_fallback (#3320)
  • added: WebSocketUpgrade::selected_protocol (#3248)
  • fixed: Panic location for overlapping method routes (#3319)
  • fixed: Don't leak a tokio task when using serve without graceful shutdown (#3129)

#3319: tokio-rs/axum#3319 #3320: tokio-rs/axum#3320 #3248: tokio-rs/axum#3248 #3129: tokio-rs/axum#3129

axum v0.8.3

  • added: Implement From<Bytes> for Message (#3273)
  • added: Implement OptionalFromRequest for Json (#3142)
  • added: Implement OptionalFromRequest for Extension (#3157)
  • added: Allow setting the read buffer capacity of WebSocketUpgrade (#3178)
  • changed: Improved code size / compile time of dependent crates (#3285, #3294)

#3273: tokio-rs/axum#3273 #3142: tokio-rs/axum#3142 #3157: tokio-rs/axum#3157 #3178: tokio-rs/axum#3178 #3285: tokio-rs/axum#3285 #3294: tokio-rs/axum#3294

axum v0.8.2

Yanked from crates.io due to unforeseen breaking change, see #3190 for details


  • added: Implement OptionalFromRequest for Json (#3142)
  • added: Implement OptionalFromRequest for Extension (#3157)
  • changed: Make the status function of rejections a const function, such as JsonRejection, QueryRejection and PathRejection (#3168)

#3142: tokio-rs/axum#3142 #3157: tokio-rs/axum#3157 #3168: tokio-rs/axum#3168

Commits

Updates tower-http from 0.6.2 to 0.6.4

Release notes

Sourced from tower-http's releases.

tower-http 0.6.4

Added

  • decompression: Support HTTP responses containing multiple ZSTD frames (#548)
  • The ServiceExt trait for chaining layers onto an arbitrary http service just like ServiceBuilderExt allows for ServiceBuilder (#563)

Fixed

  • Remove unnecessary trait bounds on S::Error for Service impls of RequestBodyTimeout<S> and ResponseBodyTimeout<S> (#533)
  • compression: Respect is_end_stream (#535)
  • Fix a rare panic in fs::ServeDir (#553)
  • Fix invalid content-lenght of 1 in response to range requests to empty files (#556)
  • In AsyncRequireAuthorization, use the original inner service after it is ready, instead of using a clone (#561)

#533: tower-rs/tower-http#533 #535: tower-rs/tower-http#535 #548: tower-rs/tower-http#548 #553: tower-rs/tower-http#556 #556: tower-rs/tower-http#556 #561: tower-rs/tower-http#561 #563: tower-rs/tower-http#563

tower-http 0.6.3

This release was yanked because its definition of ServiceExt was quite unhelpful, in a way that's very unlikely that anybody would start depending on within the small timeframe before this was yanked, but that was technically breaking to change.

Commits

Updates http from 1.2.0 to 1.3.1

Release notes

Sourced from http's releases.

v1.3.1

What's Changed

Full Changelog: hyperium/http@v1.3.0...v1.3.1

v1.3.0

What's Changed

  • Allow most UTF-8 characters in URI path and query. (hyperium/http#715)
    • This means paring Uris with previously illegal characters according the original RFC will now be accepted. They used to be rejected in the name of spec purity, but many operators were using a fork of http because reality is that most characters are seen in the real world.
  • Fix HeaderMap::reserve() to allocate sufficient capacity.

New Contributors

Thanks!

Full Changelog: hyperium/http@v1.2.0...v1.3.0

Changelog

Sourced from http's changelog.

1.3.1 (March 11, 2025)

  • Fix validation that all characters are UTF-8 in URI path and query.

1.3.0 (March 11, 2025)

  • Allow most UTF-8 characters in URI path and query.
  • Fix HeaderMap::reserve() to allocate sufficient capacity.
Commits
  • 8c1fb20 v1.3.1
  • 6637a72 fix: validate path bytes are at least utf8 (#756)
  • d0dd91e v1.3.0
  • 64bd92b docs: Fixed encryption/compression typo for 'accept-encoding: identity'. (#695)
  • b03ed6a chore: use range.contains in StatusCode methods (#748)
  • a463fb5 chore(ci): use yq to get rust-version in manifest (#746)
  • 68845bd fix: HeaderMap::reserve allocates insufficient capacity (#741)
  • 4e02046 refactor(header): remove BytesMut inline optimization when creating (#738)
  • 091ee9a feat(uri): allow utf8 char, not rfc 3986 compliant, in path and query (#715)
  • See full diff in compare view

Updates lettre from 0.11.13 to 0.11.16

Release notes

Sourced from lettre's releases.

v0.11.16

Features

  • Always implement Clone for AsyncFileTransport (#1075)

Changes

  • Tls, CertificateStore, TlsParameters, TlsParametersBuilder, Certificate and Identity are now marked as deprecated when no TLS backend is enabled. They will be properly feature gated in lettre v0.12 (#1084)

Misc

  • Gate web-time behind cfg(target_arch = "wasm32")] (#1086)
  • Add missing #[doc(cfg(...))] attributes (#1086)
  • Upgrade webpki-roots to v1 (#1088)
  • Cleanup internal TlsParameters and (Async)NetworkStream structures (#1082)
  • Feature gate internal TransportBuilder::tls to avoid recursive call site warnings (#1083)
  • Fix workaround for embedding cargo script in rustdoc output (#1077)
  • Fix clippy::io_other_error warnings (#1078)
  • Upgrade semver compatible dependencies (#1076, #1079, #1080)

v0.11.15

Upgrade notes

  • MSRV is now 1.74 (#1060)

Features

Misc

  • Deny unreachable_pub lint (#1058)
  • Bump minimum supported rustls (#1063)
  • Bump minimum supported serde (#1064)
  • Upgrade semver compatible dependencies (#1067)
  • Upgrade email-encoding to v0.4 (#1069)

v0.11.14

This release deprecates the rustls-tls, tokio1-rustls-tls and async-std1-rustls-tls features, which will be removed in lettre v0.12.

rustls users should start migrating to the rustls, tokio1-rustls and async-std1-rustls features. Unlike the deprecated *rustls-tls features, which automatically enabled the ring and webpki-roots backends, the new features do not. To complete the migration, users must either enable the aws-lc-rs or the ring feature. Additionally, those who rely on webpki-roots for TLS certificate verification must now explicitly enable its feature. Users of rustls-native-certs do not need to enable webpki-roots.

... (truncated)

Changelog

Sourced from lettre's changelog.

v0.11.16 (2025-05-12)

Features

  • Always implement Clone for AsyncFileTransport (#1075)

Changes

  • Tls, CertificateStore, TlsParameters, TlsParametersBuilder, Certificate and Identity are now marked as deprecated when no TLS backend is enabled. They will be properly feature gated in lettre v0.12 (#1084)

Misc

  • Gate web-time behind cfg(target_arch = "wasm32")] (#1086)
  • Add missing #[doc(cfg(...))] attributes (#1086)
  • Upgrade webpki-roots to v1 (#1088)
  • Cleanup internal TlsParameters and (Async)NetworkStream structures (#1082)
  • Feature gate internal TransportBuilder::tls to avoid recursive call site warnings (#1083)
  • Fix workaround for embedding cargo script in rustdoc output (#1077)
  • Fix clippy::io_other_error warnings (#1078)
  • Upgrade semver compatible dependencies (#1076, #1079, #1080)

#1075: lettre/lettre#1075 #1076: lettre/lettre#1076 #1077: lettre/lettre#1077 #1078: lettre/lettre#1078 #1079: lettre/lettre#1079 #1080: lettre/lettre#1080 #1082: lettre/lettre#1082 #1083: lettre/lettre#1083 #1084: lettre/lettre#1084 #1086: lettre/lettre#1086 #1088: lettre/lettre#1088

v0.11.15 (2025-03-10)

Upgrade notes

  • MSRV is now 1.74 (#1060)

Features

Misc

  • Deny unreachable_pub lint (#1058)
  • Bump minimum supported rustls (#1063)

... (truncated)

Commits
  • 06e381e Prepare v0.11.16 (#1089)
  • d9ce9a6 chore: deprecate ungated TLS types when no TLS backend is enabled (#1084)
  • e892b55 build(deps): upgrade webpki-roots to v1 (#1088)
  • 771d212 build: gate web-time behind cfg(target_arch = "wasm32") (#1086)
  • 83ba939 docs: add missing doc(cfg(...)) attributes (#1085)
  • de3ab00 fix: feature gate internal TransportBuilder::tls to avoid recursive call si...
  • 9504b7f refactor: cleanup internal TlsParameters and (Async)NetworkStream config ...
  • c91b356 build(deps): bump tokio from 1.44.1 to 1.44.2 (#1080)
  • 118c1ad build(deps): bump openssl from 0.10.71 to 0.10.72 (#1079)
  • 8bf4d3a style: fix clippy::io_other_error (#1078)
  • Additional commits viewable in compare view

Updates thiserror from 2.0.11 to 2.0.12

Release notes

Sourced from thiserror's releases.

2.0.12

  • Prevent elidable_lifetime_names pedantic clippy lint in generated impl (#413)
Commits
  • 95a5126 Release 2.0.12
  • 76490f7 Merge pull request #413 from dtolnay/elidablelifetime
  • 9f27b76 Ignore elidable_lifetime_names pedantic clippy lint
  • daf2a6f Resolve some elidable_lifetime_names pedantic clippy lint
  • 5f07160 Point standard library links to stable
  • 6706a51 Convert html links to intra-doc links
  • 2706873 More precise gitignore patterns
  • 70bc20d Remove **/*.rs.bk from project-specific gitignore
  • See full diff in compare view

Updates async-std from 1.13.0 to 1.13.1

Release notes

Sourced from async-std's releases.

v1.13.1

async-std has officially been discontinued. We recommend that all users and libraries migrate to the excellent smol project.

We created async-std to demonstrate the value of making a library as close to std as possible, but async. We think that demonstration was successful, and we hope it will influence future design and development directions of async in std. However, in the meantime, the smol project came about and provided a great executor and libraries for asynchronous use in the Rust ecosystem. We think that resources would be better spent consolidating around smol, rather than continuing to provide occasional maintenance of async-std. As such, we recommend that all users of async-std, and all libraries built on async-std, switch to smol instead.

In addition to the smol project as a direct replacement, you may find other parts of the futures ecosystem useful, including futures-concurrency, async-io, futures-lite, and async-compat.

Changelog

Sourced from async-std's changelog.

[1.13.1] - 2025-02-21

async-std has officially been discontinued. We recommend that all users and libraries migrate to the excellent smol project.

Commits

Updates sea-orm-migration from 1.1.5 to 1.1.10

Release notes

Sourced from sea-orm-migration's releases.

1.1.10

Upgrades

1.1.9

Enhancements

Bug fixes

House keeping

1.1.8

New Features

  • Implement DeriveValueType for enum strings
#[derive(DeriveValueType)]
#[sea_orm(value_type = "String")]
pub enum Tag {
    Hard,
    Soft,
}
// from_str defaults to std::str::FromStr::from_str
impl std::str::FromStr for Tag {
type Err = sea_orm::sea_query::ValueTypeErr;
fn from_str(s: &str) -> Result<Self, Self::Err> { .. }
}
// to_str defaults to std::string::ToString::to_string.
impl std::fmt::Display for Tag {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { .. }
}
// you can override from_str and to_str with custom functions
#[derive(DeriveValueType)]
#[sea_orm(value_type = "String", from_str = "Tag::from_str", to_str = "Tag::to_str")]
pub enum Tag {
Color,
Grey,
</tr></table>

... (truncated)

Changelog

Sourced from sea-orm-migration's changelog.

1.1.10 - 2025-04-14

Upgrades

1.1.9 - 2025-04-14

Enhancements

Bug fixes

House keeping

1.1.8 - 2025-03-30

New Features

  • Implement DeriveValueType for enum strings
#[derive(DeriveValueType)]
#[sea_orm(value_type = "String")]
pub enum Tag {
    Hard,
    Soft,
}
// from_str defaults to std::str::FromStr::from_str
impl std::str::FromStr for Tag {
type Err = sea_orm::sea_query::ValueTypeErr;
fn from_str(s: &str) -> Result<Self, Self::Err> { .. }
}
// to_str defaults to std::string::ToString::to_string.
impl std::fmt::Display for Tag {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { .. }
}
// you can override from_str and to_str with custom functions
#[derive(DeriveValueType)]
#[sea_orm(value_type = "String", from_str = "Tag::from_str", to_str = "Tag::to_str")]
pub enum Tag {
</tr></table>

... (truncated)

Commits

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

Bumps the dependencies group with 10 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [tokio](https://github.com/tokio-rs/tokio) | `1.43.0` | `1.45.0` |
| [sea-orm](https://github.com/SeaQL/sea-orm) | `1.1.5` | `1.1.10` |
| [serde](https://github.com/serde-rs/serde) | `1.0.218` | `1.0.219` |
| [axum](https://github.com/tokio-rs/axum) | `0.8.1` | `0.8.4` |
| [tower-http](https://github.com/tower-rs/tower-http) | `0.6.2` | `0.6.4` |
| [http](https://github.com/hyperium/http) | `1.2.0` | `1.3.1` |
| [lettre](https://github.com/lettre/lettre) | `0.11.13` | `0.11.16` |
| [thiserror](https://github.com/dtolnay/thiserror) | `2.0.11` | `2.0.12` |
| [async-std](https://github.com/async-rs/async-std) | `1.13.0` | `1.13.1` |
| [sea-orm-migration](https://github.com/SeaQL/sea-orm) | `1.1.5` | `1.1.10` |



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

Updates `sea-orm` from 1.1.5 to 1.1.10
- [Release notes](https://github.com/SeaQL/sea-orm/releases)
- [Changelog](https://github.com/SeaQL/sea-orm/blob/master/CHANGELOG.md)
- [Commits](SeaQL/sea-orm@1.1.5...1.1.10)

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

Updates `axum` from 0.8.1 to 0.8.4
- [Release notes](https://github.com/tokio-rs/axum/releases)
- [Changelog](https://github.com/tokio-rs/axum/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tokio-rs/axum/commits/axum-v0.8.4)

Updates `tower-http` from 0.6.2 to 0.6.4
- [Release notes](https://github.com/tower-rs/tower-http/releases)
- [Commits](tower-rs/tower-http@tower-http-0.6.2...tower-http-0.6.4)

Updates `http` from 1.2.0 to 1.3.1
- [Release notes](https://github.com/hyperium/http/releases)
- [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md)
- [Commits](hyperium/http@v1.2.0...v1.3.1)

Updates `lettre` from 0.11.13 to 0.11.16
- [Release notes](https://github.com/lettre/lettre/releases)
- [Changelog](https://github.com/lettre/lettre/blob/master/CHANGELOG.md)
- [Commits](lettre/lettre@v0.11.13...v0.11.16)

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

Updates `async-std` from 1.13.0 to 1.13.1
- [Release notes](https://github.com/async-rs/async-std/releases)
- [Changelog](https://github.com/async-rs/async-std/blob/main/CHANGELOG.md)
- [Commits](async-rs/async-std@v1.13.0...v1.13.1)

Updates `sea-orm-migration` from 1.1.5 to 1.1.10
- [Release notes](https://github.com/SeaQL/sea-orm/releases)
- [Changelog](https://github.com/SeaQL/sea-orm/blob/master/CHANGELOG.md)
- [Commits](SeaQL/sea-orm@1.1.5...1.1.10)

---
updated-dependencies:
- dependency-name: tokio
  dependency-version: 1.45.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: sea-orm
  dependency-version: 1.1.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: serde
  dependency-version: 1.0.219
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: axum
  dependency-version: 0.8.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: tower-http
  dependency-version: 0.6.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: http
  dependency-version: 1.3.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: lettre
  dependency-version: 0.11.16
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: thiserror
  dependency-version: 2.0.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: async-std
  dependency-version: 1.13.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: sea-orm-migration
  dependency-version: 1.1.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
...

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 May 13, 2025
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