From 58e005fcc8391e66face46db129bf3c569aa6096 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Apr 2024 18:06:17 +0800 Subject: [PATCH] chore(deps): bump rustls-pemfile from 2.1.1 to 2.1.2 (#25) Bumps [rustls-pemfile](https://github.com/rustls/pemfile) from 2.1.1 to 2.1.2. - [Release notes](https://github.com/rustls/pemfile/releases) - [Commits](https://github.com/rustls/pemfile/compare/v/2.1.1...v/2.1.2) --- updated-dependencies: - dependency-name: rustls-pemfile dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 18 ++++++++++++------ Cargo.toml | 2 +- 2 files changed, 13 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f02dbd2..4855d9d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -119,6 +119,12 @@ version = "0.21.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" +[[package]] +name = "base64" +version = "0.22.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9475866fec1451be56a3c2400fd081ff546538961565ccb5b7142cbd22bc7a51" + [[package]] name = "bitflags" version = "1.3.2" @@ -538,7 +544,7 @@ version = "3.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1b8fcc794035347fb64beda2d3b462595dd2753e3f268d89c5aae77e8cf2c310" dependencies = [ - "base64", + "base64 0.21.7", "serde", ] @@ -585,7 +591,7 @@ dependencies = [ "quinn", "rcgen", "rustls", - "rustls-pemfile 2.1.1", + "rustls-pemfile 2.1.2", "serde", "tokio", "toml", @@ -772,16 +778,16 @@ version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" dependencies = [ - "base64", + "base64 0.21.7", ] [[package]] name = "rustls-pemfile" -version = "2.1.1" +version = "2.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f48172685e6ff52a556baa527774f61fcaa884f59daf3375c62a3f1cd2549dab" +checksum = "29993a25686778eb88d4189742cd713c9bce943bc54251a33509dc63cbacf73d" dependencies = [ - "base64", + "base64 0.22.0", "rustls-pki-types", ] diff --git a/Cargo.toml b/Cargo.toml index a78c684..467b986 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,7 @@ quinn = "0.10.2" tokio = { version = "1.37.0", features = ["full"] } url = "2.5.0" rustls = { version = "0.21.10", features = ["quic","dangerous_configuration"] } -rustls-pemfile = "2.1.1" +rustls-pemfile = "2.1.2" rcgen = "0.12.1" log = { version = "0.4.21", features = ["std", "serde"] } log4rs = "1.2.0"