Skip to content

Commit

Permalink
chore: update to x509-parser 0.16.0 and asn1-rs 0.6.2
Browse files Browse the repository at this point in the history
The two dependencies have version dependencies so we update them
together.

Signed-off-by: Xynnn007 <[email protected]>
  • Loading branch information
Xynnn007 committed Dec 26, 2024
1 parent abd4f4b commit 9fc5ba7
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 34 deletions.
49 changes: 18 additions & 31 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions deps/verifier/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ se-verifier = [ "openssl", "pv", "serde_with", "tokio/sync" ]
[dependencies]
anyhow.workspace = true
thiserror.workspace = true
asn1-rs = { version = "0.5.1", optional = true }
asn1-rs = { version = "0.6.2", optional = true }
async-trait.workspace = true
az-snp-vtpm = { version = "0.7.0", default-features = false, features = ["verifier"], optional = true }
az-tdx-vtpm = { version = "0.7.0", default-features = false, features = ["verifier"], optional = true }
Expand Down Expand Up @@ -48,7 +48,7 @@ intel-tee-quote-verification-rs = { git = "https://github.com/intel/SGXDataCente
strum.workspace = true
veraison-apiclient = { git = "https://github.com/chendave/rust-apiclient", branch = "token", optional = true }
ear = { git = "https://github.com/veraison/rust-ear", rev = "43f7f480d09ea2ebc03137af8fbcd70fe3df3468", optional = true }
x509-parser = { version = "0.14.0", optional = true }
x509-parser = { version = "0.16.0", optional = true }
reqwest.workspace = true

[build-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion deps/verifier/src/snp/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use log::{debug, warn};
extern crate serde;
use self::serde::{Deserialize, Serialize};
use super::*;
use asn1_rs::{oid, Integer, OctetString, Oid};
use asn1_rs::{oid, FromDer, Integer, OctetString, Oid};
use async_trait::async_trait;
use openssl::{
ec::EcKey,
Expand Down

0 comments on commit 9fc5ba7

Please sign in to comment.