From 0847f5c0af3293079a2951be62b4552767825902 Mon Sep 17 00:00:00 2001 From: "Christopher R. Wood" Date: Tue, 10 Sep 2024 14:12:29 -0400 Subject: [PATCH] Fetch "rsa" crate from git For compatibility with pkcs8-0.11: https://github.com/RustCrypto/RSA/pull/446 --- Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index de229ed..e3136af 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,7 +23,8 @@ crate-type = ["cdylib", "rlib"] bitcoin_hashes = "0.14.0" data-encoding = "2.6.0" pyo3 = "0.22.2" -rsa = "0.10.0-pre.2" +# For compatibility with pkcs8-0.11: https://github.com/RustCrypto/RSA/pull/446 +rsa = { git = "https://github.com/RustCrypto/RSA.git", rev = "aeedb5adf5297892fcb9e11f7c0f6c0157005c58" } [dev-dependencies] rand = "0.8.5"