From 71cf4a9c17b9e67d241caaa3f0319c6fa34bea31 Mon Sep 17 00:00:00 2001 From: Ken Simon Date: Thu, 23 Oct 2025 17:11:30 -0400 Subject: [PATCH] Bump version for picky-asn1 to avoid rust incompatibility warnings In a project with tss-esapi as a dependency, I'm getting this warning on my builds since rust 1.90: ``` warning: the following packages contain code that will be rejected by a future version of Rust: picky-asn1-x509 v0.12.0 ``` The latest versions seem to compile cleanly and works for me. Signed-off-by: Ken Simon --- tss-esapi/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tss-esapi/Cargo.toml b/tss-esapi/Cargo.toml index 36aa3c03..d4b29503 100644 --- a/tss-esapi/Cargo.toml +++ b/tss-esapi/Cargo.toml @@ -25,8 +25,8 @@ regex = "1.3.9" zeroize = { version = "1.1.0", features = ["zeroize_derive"] } tss-esapi-sys = { path = "../tss-esapi-sys", version = "0.5.0" } oid = "0.2.1" -picky-asn1 = "0.8.0" -picky-asn1-x509 = "0.12.0" +picky-asn1 = "0.10.0" +picky-asn1-x509 = "0.15.2" getrandom = "0.2.11" [dev-dependencies]