Skip to content

Commit 81e7a7f

Browse files
authored
Merge pull request #426 from ionut-arm/picky-bump
Bump picky- crates
2 parents 4c9b7a7 + 50d8a6b commit 81e7a7f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tss-esapi/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ regex = "1.3.9"
2727
zeroize = { version = "1.5.7", features = ["zeroize_derive"] }
2828
tss-esapi-sys = { path = "../tss-esapi-sys", version = "0.4.0" }
2929
oid = { version = "0.2.1", optional = true }
30-
picky-asn1 = { version = "0.3.0", optional = true }
31-
picky-asn1-x509 = { version = "0.6.1", optional = true }
30+
picky-asn1 = { version = "0.7.2", optional = true }
31+
picky-asn1-x509 = { version = "0.11.0", optional = true }
3232
cfg-if = "1.0.0"
3333
strum = { version = "0.25.0", optional = true }
3434
strum_macros = { version = "0.25.0", optional = true }

tss-esapi/src/abstraction/public.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ use serde::{Deserialize, Serialize};
2121
///
2222
/// Holds either [`picky_asn1_x509::RsaPublicKey`] for [`crate::structures::Public::Rsa`] or
2323
/// [`picky_asn1_x509::EcPoint`] for [`crate::structures::Public::Ecc`].
24-
#[derive(Serialize, Deserialize, Debug, PartialEq, Clone)]
24+
#[derive(Serialize, Deserialize, Debug, PartialEq, Eq, Clone)]
2525
pub enum DecodedKey {
2626
RsaPublicKey(RsaPublicKey),
2727
EcPoint(EcPoint),

0 commit comments

Comments
 (0)