From e28bea6dade7f2b7227cd56ed07866372edf0cad Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 15 Jun 2023 18:19:54 -0700 Subject: [PATCH] fix(deps): update rust crate rcgen to 0.11 (#21) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [rcgen](https://togithub.com/est31/rcgen) | dependencies | minor | `0.10` -> `0.11` | --- ### Release Notes
est31/rcgen ### [`v0.11.0`](https://togithub.com/est31/rcgen/blob/HEAD/CHANGELOG.md#Release-0110---June-15-2023) [Compare Source](https://togithub.com/est31/rcgen/compare/v0.10.0...v0.11.0) - Parse IP-address subject alternative names. Contributed by [iamjpotts](https://togithub.com/iamjpotts). - Emit platform-apropriate line endings. Contributed by [frjonsen](https://togithub.com/frjonsen). - Support larger serial numbers. Contributed by [andrenth](https://togithub.com/andrenth). - Parse more certificate parameters. Contributed by [andrenth](https://togithub.com/andrenth). - Output `SanType::IpAddress` when calling `CertificateParams::new` or `generate_simple_self_signed`. Contributed by [rukai](https://togithub.com/rukai). - Update pem to 2.0. Contributed by [koushiro](https://togithub.com/koushiro).
--- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/akrantz01/lers). Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index bc50cf1..12bce3c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -34,7 +34,7 @@ hyper = { version = "0.14", features = ["server", "tcp"], optional = true } once_cell = { version = "1", features = ["parking_lot"] } openssl = "0.10" parking_lot = "0.12" -rcgen = { version = "0.10", default-features = false, optional = true } +rcgen = { version = "0.11", default-features = false, optional = true } reqwest = { version = "0.11", default-features = false, features = ["json", "native-tls"] } serde = { version = "1", features = ["derive"] } serde_json = "1"