From 7ba6dda76f8c17d755678e7127b0a904dced69ea Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 7 Jun 2026 13:24:47 +0000 Subject: [PATCH] deps: update sqlx-core requirement from 0.8.6 to 0.9.0 in /crablet Updates the requirements on [sqlx-core](https://github.com/launchbadge/sqlx) to permit the latest version. - [Changelog](https://github.com/transact-rs/sqlx/blob/main/CHANGELOG.md) - [Commits](https://github.com/launchbadge/sqlx/compare/v0.8.6...v0.9.0) --- updated-dependencies: - dependency-name: sqlx-core dependency-version: 0.9.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- crablet/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crablet/Cargo.toml b/crablet/Cargo.toml index 1fe354f..6b94ee0 100644 --- a/crablet/Cargo.toml +++ b/crablet/Cargo.toml @@ -29,7 +29,7 @@ axum-extra = { version = "0.9", features = ["cookie", "form", "query"], optional # 使用 rustls 避免 OpenSSL / pkg-config 系统依赖,提升 CI/容器/本地一致性 reqwest = { version = "0.12", default-features = false, features = ["json", "stream", "multipart", "cookies", "rustls-tls"] } serde = { version = "1.0", features = ["derive"] } -sqlx-core = { version = "0.8.6", default-features = false, features = ["_rt-tokio", "chrono", "migrate"] } +sqlx-core = { version = "0.9.0", default-features = false, features = ["_rt-tokio", "chrono", "migrate"] } sqlx-sqlite = { version = "0.8.6", default-features = false, features = ["bundled", "chrono", "migrate"] } clap = { version = "4.5", features = ["derive"] } teloxide = { version = "0.17", features = ["macros"], optional = true }