diff --git a/Cargo.lock b/Cargo.lock index 4821259..8d66edf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1259,9 +1259,21 @@ dependencies = [ [[package]] name = "regex" -version = "1.8.4" +version = "1.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d0ab3ca65655bb1e41f2a8c8cd662eb4fb035e67c3f78da1d61dffe89d07300f" +checksum = "89089e897c013b3deb627116ae56a6955a72b8bed395c9526af31c9fe528b484" +dependencies = [ + "aho-corasick", + "memchr", + "regex-automata", + "regex-syntax", +] + +[[package]] +name = "regex-automata" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fa250384981ea14565685dea16a9ccc4d1c541a13f82b9c168572264d1df8c56" dependencies = [ "aho-corasick", "memchr", @@ -1270,9 +1282,9 @@ dependencies = [ [[package]] name = "regex-syntax" -version = "0.7.2" +version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "436b050e76ed2903236f032a59761c1eb99e1b0aead2c257922771dab1fc8c78" +checksum = "2ab07dc67230e4a4718e70fd5c20055a4334b121f1f9db8fe63ef39ce9b8c846" [[package]] name = "reqwest" diff --git a/Cargo.toml b/Cargo.toml index af05195..fb0ec9a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ image = "0.24.6" mimalloc = "0.1.37" once_cell = "1.18.0" qstring = "0.7.2" -regex = "1.8.4" +regex = "1.9.0" reqwest = {version = "0.11.18", features = ["rustls-tls", "stream", "brotli", "gzip"], default-features = false} tokio = {version = "1.29.1", features = ["full"]} webp = "0.2.2"