From 511daa176811e65e70571061576e0f7f209bcc45 Mon Sep 17 00:00:00 2001 From: amtoaer Date: Sun, 31 Mar 2024 18:24:26 +0800 Subject: [PATCH] =?UTF-8?q?deps:=20=E5=8A=A0=E5=85=A5=E6=A0=BC=E5=BC=8F?= =?UTF-8?q?=E5=8C=96=E6=96=87=E4=BB=B6=E5=90=8D=E7=9A=84=E4=BE=9D=E8=B5=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Cargo.lock | 10 ++++++++++ Cargo.toml | 1 + 2 files changed, 11 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index 1b4817a..8898f5e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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" diff --git a/Cargo.toml b/Cargo.toml index fa02633..1035999 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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"] }