From d8626d4c3a6da74ae8124e5b4b33ff7e810633c4 Mon Sep 17 00:00:00 2001 From: Joseph Birr-Pixton Date: Thu, 30 Nov 2023 16:27:43 +0000 Subject: [PATCH 1/2] Take pki-types v1, pemfile v2, webpki v0.102 --- Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 583f52b..0946a50 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ homepage = "https://github.com/rustls/webpki-roots" repository = "https://github.com/rustls/webpki-roots" [dependencies] -pki-types = { package = "rustls-pki-types", version = "0.2.2", default-features = false } +pki-types = { package = "rustls-pki-types", version = "1", default-features = false } [dev-dependencies] chrono = { version = "0.4.26", default-features = false, features = ["clock"] } @@ -20,9 +20,9 @@ percent-encoding = "2.3" rcgen = "0.11.1" reqwest = { version = "0.11", features = ["rustls-tls-manual-roots"] } ring = "0.17.0" -rustls-pemfile = "=2.0.0-alpha.2" +rustls-pemfile = "2.0.0" serde = { version = "1.0.183", features = ["derive"] } tokio = { version = "1", features = ["macros", "rt-multi-thread"] } -webpki = { package = "rustls-webpki", version = "=0.102.0-alpha.7", features = ["alloc"] } +webpki = { package = "rustls-webpki", version = "0.102", features = ["alloc"] } x509-parser = "0.15.1" yasna = "0.5.2" From 63cd8795cbb340aaea11d22550c6b1ffd8dfefe9 Mon Sep 17 00:00:00 2001 From: Joseph Birr-Pixton Date: Thu, 30 Nov 2023 16:28:36 +0000 Subject: [PATCH 2/2] Bump to 0.26.0 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 0946a50..0b45bf6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "webpki-roots" -version = "0.26.0-alpha.2" +version = "0.26.0" edition = "2018" readme = "README.md" license = "MPL-2.0"