Skip to content

Commit f7f60da

Browse files
authored
fix: build on aarch64-pc-windows-msvc (#140)
1 parent 4074259 commit f7f60da

3 files changed

Lines changed: 24 additions & 66 deletions

File tree

Cargo.lock

Lines changed: 22 additions & 64 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/plume_core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ rsa = "0.9.8"
3838
x509-certificate = "0.24.0"
3939
pem = "3.0.5"
4040
pem-rfc7468 = "0.7.0"
41-
rcgen = "0.9.3"
41+
rcgen = "0.12.1"
4242
sha1 = "0.10.6" # p12
4343
p12-keystore = "0.2.0" # p12 crate only supports legacy PKCS#12
4444
# Apple

crates/plume_core/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ pub enum Error {
6161
#[error("PKCS8 RSA error: {0}")]
6262
PKCS8(#[from] rsa::pkcs8::Error),
6363
#[error("RCGen error: {0}")]
64-
RcGen(#[from] rcgen::RcgenError),
64+
RcGen(#[from] rcgen::Error),
6565
#[error("AES-GCM error: {0}")]
6666
AesGcm(#[from] aes_gcm::Error),
6767
#[error("AES-GCM slice error: {0}")]

0 commit comments

Comments
 (0)