From ed8dec3b3f115354a8a063e21e8744439b766374 Mon Sep 17 00:00:00 2001 From: Jose Quintana Date: Fri, 30 Sep 2022 22:18:57 +0200 Subject: [PATCH] chore: bump `rustls-pemfile` up to `1.0` which provides: - Enable parsing PEM files with non-UTF-8 content between items - Add SEC1 EC key format support (ie, "EC PRIVATE KEY" sections) --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index bdfcf40..afe31a9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -844,9 +844,9 @@ dependencies = [ [[package]] name = "rustls-pemfile" -version = "0.2.1" +version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5eebeaeb360c87bfb72e84abdb3447159c0eaececf1bef2aecd65a8be949d1c9" +checksum = "0864aeff53f8c05aa08d86e5ef839d3dfcf07aeba2db32f12db0ef716e87bd55" dependencies = [ "base64", ] diff --git a/Cargo.toml b/Cargo.toml index 66510b8..8a6d3d7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -45,7 +45,7 @@ mime_guess = "2.0" num_cpus = { version = "1.13" } percent-encoding = "2.1" pin-project = "1.0" -rustls-pemfile = "0.2" +rustls-pemfile = "1.0" serde = { version = "1.0", default-features = false, features = ["derive"] } serde_ignored = "0.1" serde_repr = "0.1" -- libgit2 1.7.2