Skip to content

Commit

Permalink
Merge pull request #257 from dmitris/deps-der
Browse files Browse the repository at this point in the history
upgrade 'der' to 0.7.5
  • Loading branch information
viccuad authored May 16, 2023
2 parents afd20a2 + 1a2ee55 commit 95efa98
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ cached = { version = "0.42.0", optional = true }
cfg-if = "1.0.0"
chrono = { version = "0.4.23", feature = "clock" }
const-oid = "0.9.1"
der = "0.6.1"
der = "0.7.5"
digest = { version = "0.10.3", default-features = false }
ecdsa = { version = "0.15", features = [ "pkcs8", "digest", "der" ] }
ed25519 = { version = "=2.1", features = [ "alloc" ] }
Expand Down
2 changes: 1 addition & 1 deletion examples/rekor/create_log_entry/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ async fn main() {
.arg(Arg::new("key_format")
.long("key_format")
.value_name("KEY_FORMAT")
.help("Accepted formats are : pgp / x509 / minsign / ssh / tuf"))
.help("Accepted formats are : pgp / x509 / minsign / ssh / tuf"))
.arg(Arg::new("signature")
.long("signature")
.value_name("SIGNATURE")
Expand Down
2 changes: 1 addition & 1 deletion src/crypto/certificate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ mod tests {
use crate::crypto::tests::*;

use chrono::{Duration, Utc};
use der::Decode;
use x509_cert::der::Decode;

#[test]
fn verify_cert_key_usages_success() -> anyhow::Result<()> {
Expand Down
2 changes: 1 addition & 1 deletion src/crypto/verification_key.rs
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ impl CosignVerificationKey {

#[cfg(test)]
mod tests {
use der::Decode;
use x509_cert::der::Decode;
use x509_cert::Certificate;

use super::*;
Expand Down

0 comments on commit 95efa98

Please sign in to comment.