diff options
author | dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> | 2022-02-06 11:31:50 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-06 11:31:50 +0000 |
commit | dd44ce37c9c5bdfcd0df4a7b14d52e9abd51389e (patch) | |
tree | 6487ee47fad5c5f86a6b3e3e8fb3a7d7d14302b2 | |
parent | Merge pull request #725 from aliemjay/update_actix_web (diff) | |
download | miniserve-dd44ce37c9c5bdfcd0df4a7b14d52e9abd51389e.tar.gz miniserve-dd44ce37c9c5bdfcd0df4a7b14d52e9abd51389e.zip |
Bump rustls-pemfile from 0.2.1 to 0.3.0
Bumps [rustls-pemfile](https://github.com/rustls/pemfile) from 0.2.1 to 0.3.0.
- [Release notes](https://github.com/rustls/pemfile/releases)
- [Commits](https://github.com/rustls/pemfile/compare/v/0.2.1...v/0.3.0)
---
updated-dependencies:
- dependency-name: rustls-pemfile
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
-rw-r--r-- | Cargo.lock | 13 | ||||
-rw-r--r-- | Cargo.toml | 2 |
2 files changed, 12 insertions, 3 deletions
@@ -1437,7 +1437,7 @@ dependencies = [ "reqwest", "rstest", "rustls", - "rustls-pemfile", + "rustls-pemfile 0.3.0", "select", "serde", "sha2", @@ -2029,7 +2029,7 @@ dependencies = [ "percent-encoding", "pin-project-lite", "rustls", - "rustls-pemfile", + "rustls-pemfile 0.2.1", "serde", "serde_json", "serde_urlencoded", @@ -2108,6 +2108,15 @@ dependencies = [ ] [[package]] +name = "rustls-pemfile" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1ee86d63972a7c661d1536fefe8c3c8407321c3df668891286de28abcd087360" +dependencies = [ + "base64", +] + +[[package]] name = "rustversion" version = "1.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -51,7 +51,7 @@ httparse = "1" http = "0.2" atty = "0.2" rustls = { version = "0.20", optional = true } -rustls-pemfile = { version = "0.2", optional = true } +rustls-pemfile = { version = "0.3", optional = true } socket2 = "0.4" get_if_addrs = "0.5" |