deps: 加入格式化文件名的依赖

This commit is contained in:
amtoaer
2024-03-31 18:24:26 +08:00
parent 243a6b5d62
commit 511daa1768
2 changed files with 11 additions and 0 deletions

10
Cargo.lock generated
View File

@@ -402,6 +402,7 @@ dependencies = [
"dirs",
"entity",
"env_logger",
"filenamify",
"futures",
"futures-core",
"futures-util",
@@ -957,6 +958,15 @@ version = "2.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5"
[[package]]
name = "filenamify"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b781e8974b2cc71ac3c587c881c11ee5fe9a379f43503674e1e1052647593b4c"
dependencies = [
"regex",
]
[[package]]
name = "finl_unicode"
version = "1.2.0"

View File

@@ -17,6 +17,7 @@ reqwest = { version = "0.12.0", features = [
"cookies",
"gzip",
] }
filenamify = "0.1.0"
cookie = { version = "0.18.0", features = ["percent-encode"] }
tokio = { version = "1", features = ["full"] }
strum = { version = "0.26", features = ["derive"] }