diff --git a/Cargo.lock b/Cargo.lock index 329cd4f..2bd957a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -53,7 +53,7 @@ dependencies = [ "actix-service", "actix-utils", "ahash 0.8.3", - "base64 0.21.4", + "base64", "bitflags 2.4.1", "brotli", "bytes", @@ -422,12 +422,6 @@ version = "0.21.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9ba43ea6f343b788c8764558649e08df62f86c6ef251fdaeb1ffd010a9ae50a2" -[[package]] -name = "base64" -version = "0.22.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9475866fec1451be56a3c2400fd081ff546538961565ccb5b7142cbd22bc7a51" - [[package]] name = "base64-simd" version = "0.7.0" @@ -1152,14 +1146,12 @@ version = "0.1.0" dependencies = [ "actix-files", "actix-web", - "base64 0.22.0", "cached", "chrono", "chrono-tz", "comrak", "glob", "lol_html", - "mime_guess", "minify-html", "minify-js 0.6.0", "ramhorns", @@ -1170,7 +1162,6 @@ dependencies = [ "serde_json", "serde_yml", "toml", - "urlencoding", ] [[package]] @@ -2397,7 +2388,7 @@ version = "1.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9a4a0cfc5fb21a09dc6af4bf834cf10d4a32fccd9e2ea468c4b1751a097487aa" dependencies = [ - "base64 0.21.4", + "base64", "indexmap 1.9.3", "line-wrap", "quick-xml", @@ -2722,7 +2713,7 @@ version = "0.12.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2d66674f2b6fb864665eea7a3c1ac4e3dfacd2fda83cf6f935a612e01b0e3338" dependencies = [ - "base64 0.21.4", + "base64", "bytes", "encoding_rs", "futures-core", @@ -2863,7 +2854,7 @@ version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" dependencies = [ - "base64 0.21.4", + "base64", ] [[package]] @@ -3538,12 +3529,6 @@ dependencies = [ "percent-encoding", ] -[[package]] -name = "urlencoding" -version = "2.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da" - [[package]] name = "utf8parse" version = "0.2.1" diff --git a/Cargo.toml b/Cargo.toml index 4099bd2..42bdfd2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,4 +27,7 @@ chrono = { version = "0.4", default-features = false, features = ["clock"]} chrono-tz = "0.8" rss = { version = "2.0", features = ["atom"] } lol_html = "1.2" +base64 = "0.22" +mime_guess = "2.0" +urlencoding = "2.1" regex = "1.10"