chore: 更新 rust 依赖 (#486)

This commit is contained in:
ᴀᴍᴛᴏᴀᴇʀ
2025-10-10 12:49:11 +08:00
committed by GitHub
parent 2b046362d7
commit eadb464363
4 changed files with 249 additions and 485 deletions
Generated
+224 -452
View File
File diff suppressed because it is too large Load Diff
+25 -26
View File
@@ -15,17 +15,16 @@ publish = false
bili_sync_entity = { path = "crates/bili_sync_entity" } bili_sync_entity = { path = "crates/bili_sync_entity" }
bili_sync_migration = { path = "crates/bili_sync_migration" } bili_sync_migration = { path = "crates/bili_sync_migration" }
anyhow = { version = "1.0.98", features = ["backtrace"] } anyhow = { version = "1.0.100", features = ["backtrace"] }
arc-swap = { version = "1.7.1", features = ["serde"] } arc-swap = { version = "1.7.1", features = ["serde"] }
assert_matches = "1.5.0" assert_matches = "1.5.0"
async-std = { version = "1.13.1", features = ["attributes", "tokio1"] }
async-stream = "0.3.6" async-stream = "0.3.6"
async-trait = "0.1.88" async-trait = "0.1.89"
axum = { version = "0.8.4", features = ["macros", "ws"] } axum = { version = "0.8.6", features = ["macros", "ws"] }
base64 = "0.22.1" base64 = "0.22.1"
built = { version = "0.7.7", features = ["git2", "chrono"] } built = { version = "0.7.7", features = ["git2", "chrono"] }
chrono = { version = "0.4.41", features = ["serde"] } chrono = { version = "0.4.42", features = ["serde"] }
clap = { version = "4.5.41", features = ["env", "string"] } clap = { version = "4.5.48", features = ["env", "string"] }
cookie = "0.18.1" cookie = "0.18.1"
cow-utils = "0.1.3" cow-utils = "0.1.3"
dashmap = "6.1.0" dashmap = "6.1.0"
@@ -39,14 +38,14 @@ handlebars = "6.3.2"
hex = "0.4.3" hex = "0.4.3"
leaky-bucket = "1.1.2" leaky-bucket = "1.1.2"
md5 = "0.8.0" md5 = "0.8.0"
memchr = "2.7.5" memchr = "2.7.6"
once_cell = "1.21.3" once_cell = "1.21.3"
parking_lot = "0.12.4" parking_lot = "0.12.5"
prost = "0.14.1" prost = "0.14.1"
quick-xml = { version = "0.38.0", features = ["async-tokio"] } quick-xml = { version = "0.38.3", features = ["async-tokio"] }
rand = "0.9.1" rand = "0.9.2"
regex = "1.11.1" regex = "1.11.3"
reqwest = { version = "0.12.22", features = [ reqwest = { version = "0.12.23", features = [
"charset", "charset",
"cookies", "cookies",
"gzip", "gzip",
@@ -55,29 +54,29 @@ reqwest = { version = "0.12.22", features = [
"rustls-tls", "rustls-tls",
"stream", "stream",
], default-features = false } ], default-features = false }
rsa = { version = "0.10.0-rc.3", features = ["sha2"] } rsa = { version = "0.10.0-rc.9", features = ["sha2"] }
rust-embed-for-web = { git = "https://github.com/amtoaer/rust-embed-for-web", tag = "v1.0.0" } rust-embed-for-web = { git = "https://github.com/amtoaer/rust-embed-for-web", tag = "v1.0.0" }
sea-orm = { version = "1.1.13", features = [ sea-orm = { version = "1.1.17", features = [
"macros", "macros",
"runtime-tokio-rustls", "runtime-tokio-rustls",
"sqlx-sqlite", "sqlx-sqlite",
] } ] }
sea-orm-migration = { version = "1.1.13", features = [] } sea-orm-migration = { version = "1.1.17", features = [] }
serde = { version = "1.0.219", features = ["derive"] } serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.140" serde_json = "1.0.145"
serde_urlencoded = "0.7.1" serde_urlencoded = "0.7.1"
strum = { version = "0.27.1", features = ["derive"] } strum = { version = "0.27.2", features = ["derive"] }
sysinfo = "0.36.0" sysinfo = "0.37.2"
thiserror = "2.0.12" thiserror = "2.0.17"
tokio = { version = "1.46.1", features = ["full"] } tokio = { version = "1.47.1", features = ["full"] }
tokio-stream = { version = "0.1.17", features = ["sync"] } tokio-stream = { version = "0.1.17", features = ["sync"] }
tokio-util = { version = "0.7.15", features = ["io", "rt"] } tokio-util = { version = "0.7.16", features = ["io", "rt"] }
toml = "0.9.1" toml = "0.9.7"
tower = "0.5.2" tower = "0.5.2"
tracing = "0.1.41" tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["chrono", "json"] } tracing-subscriber = { version = "0.3.20", features = ["chrono", "json"] }
ua_generator = "0.5.22" ua_generator = "0.5.31"
uuid = { version = "1.17.0", features = ["v4"] } uuid = { version = "1.18.1", features = ["v4"] }
validator = { version = "0.20.0", features = ["derive"] } validator = { version = "0.20.0", features = ["derive"] }
[workspace.metadata.release] [workspace.metadata.release]
-1
View File
@@ -5,5 +5,4 @@ edition = { workspace = true }
publish = { workspace = true } publish = { workspace = true }
[dependencies] [dependencies]
async-std = { workspace = true }
sea-orm-migration = { workspace = true } sea-orm-migration = { workspace = true }
-6
View File
@@ -1,6 +0,0 @@
use sea_orm_migration::prelude::*;
#[async_std::main]
async fn main() {
cli::run_cli(bili_sync_migration::Migrator).await;
}