Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
Signed-off-by: Li Chaoran <[email protected]>
  • Loading branch information
pkking committed Nov 9, 2023
1 parent 7ef35e3 commit 411d1c6
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
22 changes: 10 additions & 12 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "efi_signer"
version = "0.2.4"
version = "0.2.5"
edition = "2021"
authors = ["Li Chaoran <[email protected]>"]
description = "A crates for signing and parsing EFI image"
Expand All @@ -11,25 +11,23 @@ readme = "README.md"

[dependencies]
byteorder = "1.4.3"
cms = { version = "0.2.1", features = ["pem"] }
der = "0.7.2"
digest = "0.10.6"
cms = { version = "0.2.2", features = ["pem"] }
der = "0.7.8"
digest = "0.10.7"
goblin = "0.6.1"
log = "0.4.17"
md-5 = "0.10.5"
md-5 = "0.10.6"
openssl = "0.10.52"
openssl-sys = "0.9.87"
picky = { version = "7.0.0-rc.5", features = ["pkcs7", "wincert", "ec", "time_conversion", "ctl", "ctl_http_fetch"] }
picky-asn1-x509 = "0.9.0"
pkcs7 = "0.4.0"
picky = { version = "7.0.0-rc.8", features = ["pkcs7", "wincert", "time_conversion", "ctl", "ctl_http_fetch"] }
picky-asn1-x509 = "0.12.0"
serde = "1.0.159"
sha1 = "0.10.5"
sha2 = "0.10.6"
sha1 = "0.10.6"
sha2 = "0.10.8"
snafu = { version = "0.7.4", features = ["backtraces", "backtraces-impl-std", "unstable-provider-api"] }
x509-cert = "0.2.1"
x509-cert = "0.2.4"


[dev-dependencies]
clap = { version = "4.2.4", features = ["derive"] }
env_logger = "0.10.0"

4 changes: 2 additions & 2 deletions examples/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,10 @@ struct Parse {
#[derive(Args)]
struct Sign {
#[arg(long, short, required(true))]
#[arg(help = "Private key in p7b format")]
#[arg(help = "Private key in PEM format")]
key: String,
#[arg(long, short, required(true))]
#[arg(help = "Certificate in PEM format")]
#[arg(help = "Certificate in pkcs7 format")]
cert: String,
#[arg(long, short, required(false))]
#[arg(help = "Whether to generate a detach signature")]
Expand Down
2 changes: 2 additions & 0 deletions rust-toolchain
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[toolchain]
channel = "nightly-2023-08-08"

0 comments on commit 411d1c6

Please sign in to comment.