From 76df0388f5ef0be6fa05f8a7630d77c1957f2d92 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Sep 2023 23:52:59 +0000 Subject: [PATCH] Bump poem from 1.3.55 to 1.3.58 Bumps [poem](https://github.com/poem-web/poem) from 1.3.55 to 1.3.58. - [Release notes](https://github.com/poem-web/poem/releases) - [Commits](https://github.com/poem-web/poem/commits) --- updated-dependencies: - dependency-name: poem dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 33 +++++++++++++++++++-------------- create-rust-app/Cargo.toml | 2 +- 2 files changed, 20 insertions(+), 15 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1c8675ac..64da0ffb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -182,7 +182,7 @@ dependencies = [ "bytes", "bytestring", "cfg-if", - "cookie", + "cookie 0.16.2", "derive_more", "encoding_rs", "futures-core", @@ -723,12 +723,6 @@ version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" -[[package]] -name = "base64" -version = "0.20.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0ea22880d78093b0cbe17c89f64a7d457941e65759157ec6cb31a31d652b05e5" - [[package]] name = "base64" version = "0.21.2" @@ -1111,9 +1105,20 @@ name = "cookie" version = "0.16.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e859cd57d0710d9e06c381b550c06e76992472a8c6d527aecd2fc673dcc231fb" +dependencies = [ + "percent-encoding", + "time 0.3.21", + "version_check", +] + +[[package]] +name = "cookie" +version = "0.17.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7efb37c3e1ccb1ff97164ad95ac1606e8ccd35b3fa0a7d99a304c7f4a428cc24" dependencies = [ "aes-gcm", - "base64 0.20.0", + "base64 0.21.2", "hkdf", "hmac", "percent-encoding", @@ -3168,15 +3173,15 @@ checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" [[package]] name = "poem" -version = "1.3.55" +version = "1.3.58" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c0608069d4999c3c02d49dff261663f2e73a8f7b00b7cd364fb5e93e419dafa1" +checksum = "ebc7ae19f3e791ae8108b08801abb3708d64d3a16490c720e0b81040cae87b5d" dependencies = [ "anyhow", "async-trait", "bytes", "chrono", - "cookie", + "cookie 0.17.0", "futures-util", "headers", "http", @@ -3203,14 +3208,14 @@ dependencies = [ [[package]] name = "poem-derive" -version = "1.3.55" +version = "1.3.58" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3b839bad877aa933dd00901abd127a44496130e3def48e079d60e43f2c8a33cc" +checksum = "2550a0bce7273b278894ef3ccc5a6869e7031b6870042f3cc6826ed9faa980a6" dependencies = [ "proc-macro-crate", "proc-macro2", "quote", - "syn 1.0.109", + "syn 2.0.18", ] [[package]] diff --git a/create-rust-app/Cargo.toml b/create-rust-app/Cargo.toml index acbbf94c..6e0098f4 100644 --- a/create-rust-app/Cargo.toml +++ b/create-rust-app/Cargo.toml @@ -92,7 +92,7 @@ fang = { optional = true, version = "0.10.3" } ## # poem dependencies -poem = { optional = true, version = "1.3.55", features = [ +poem = { optional = true, version = "1.3.58", features = [ "anyhow", "cookie", "static-files",