移除sqlx无用feature声明

This commit is contained in:
李运家 2024-10-12 18:34:37 +08:00
parent 04d66f73d3
commit aeec41f083
2 changed files with 3 additions and 3 deletions

4
Cargo.lock generated
View File

@ -2688,9 +2688,9 @@ dependencies = [
[[package]]
name = "tokio-stream"
version = "0.1.15"
version = "0.1.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "267ac89e0bec6e691e5813911606935d77c476ff49024f98abcea3e7b15e37af"
checksum = "4f4e6ce100d0eb49a2734f8c0812bcd324cf357d21810932c5df6b96ef2b86f1"
dependencies = [
"futures-core",
"pin-project-lite",

View File

@ -11,7 +11,7 @@ tracing = { workspace = true }
tracing-appender = { workspace = true }
tracing-subscriber = { workspace = true, features = ["json"] }
chrono = { workspace = true }
sqlx = { workspace = true, features = ["mysql", "runtime-tokio-rustls", "macros", "json"] }
sqlx = { workspace = true, features = ["runtime-tokio-rustls", "macros", "json"] }
sqlx-postgres = { workspace = true, features = ["json"] }
axum = { workspace = true }
axum-extra = { workspace = true }