diff --git a/Cargo.lock b/Cargo.lock index 843c3dc..9b16a1a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -153,6 +153,12 @@ version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd" +[[package]] +name = "base64" +version = "0.21.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a4a4ddaa51a5bc52a6948f74c06d20aaaddb71924eab79b8c97a8c556e942d6a" + [[package]] name = "binascii" version = "0.1.4" @@ -300,7 +306,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "94d4706de1b0fa5b132270cddffa8585166037822e260a944fe161acd137ca05" dependencies = [ "aes-gcm", - "base64", + "base64 0.13.0", "hkdf", "hmac", "percent-encoding", @@ -1883,11 +1889,11 @@ dependencies = [ [[package]] name = "reqwest" -version = "0.11.13" +version = "0.11.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "68cc60575865c7831548863cc02356512e3f1dc2f3f82cb837d7fc4cc8f3c97c" +checksum = "21eed90ec8570952d53b772ecf8f206aa1ec9a3d76b2521c56c42973f2d91ee9" dependencies = [ - "base64", + "base64 0.21.0", "bytes", "encoding_rs", "futures-core", @@ -2175,7 +2181,7 @@ version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "30d904179146de381af4c93d3af6ca4984b3152db687dacb9c3c35e86f39809c" dependencies = [ - "base64", + "base64 0.13.0", "chrono", "hex", "indexmap", diff --git a/Cargo.toml b/Cargo.toml index 8b4eee0..c647639 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,7 +17,7 @@ once_cell = "1.17.0" prometheus = { version = "0.13.3", features = ["process"], default-features = false } pulldown-cmark = { version = "0.9.2", default-features = false } rand = "0.8.3" -reqwest = { version = "0.11.13", features = ["json"] } +reqwest = { version = "0.11.14", features = ["json"] } rocket = { version = "=0.5.0-rc.2", features = ["json"] } rocket_dyn_templates = { version = "=0.1.0-rc.2", features = ["tera"] } rocket_sync_db_pools = { version = "=0.1.0-rc.2", features = ["diesel_postgres_pool"] }