From bd3b7bc6b93d60db0da93c82b891e86a71c1f8d2 Mon Sep 17 00:00:00 2001 From: Daniel McCarney Date: Mon, 5 Aug 2024 13:47:17 -0400 Subject: [PATCH] Cargo: update pki-types 1 -> 1.8 This adds a `const`-friendly `CertificateDer` constructor we will use for a new opt-in `root_certs` feature. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 4266f49..d6382f4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ repository = "https://github.com/rustls/webpki-roots" [workspace.dependencies] hex = "0.4.3" -pki-types = { package = "rustls-pki-types", version = "1", default-features = false } +pki-types = { package = "rustls-pki-types", version = "1.8", default-features = false } webpki = { package = "rustls-webpki", version = "0.102", features = ["alloc"] } x509-parser = "0.16.0" yasna = "0.5.2"