We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c93891d commit 735d6c4Copy full SHA for 735d6c4
2 files changed
.changes/fix-digest-algorithm-typo.md
@@ -0,0 +1,5 @@
1
+---
2
+"cargo-packager": patch
3
4
+
5
+Fixed a typo on the `digest_algorithm` config (was `digest-algorithim`).
crates/packager/src/config/mod.rs
@@ -1398,7 +1398,7 @@ impl NsisConfig {
1398
#[non_exhaustive]
1399
pub struct WindowsConfig {
1400
/// The file digest algorithm to use for creating file signatures. Required for code signing. SHA-256 is recommended.
1401
- #[serde(alias = "digest-algorithim", alias = "digest_algorithim")]
+ #[serde(alias = "digest-algorithm", alias = "digest_algorithm")]
1402
pub digest_algorithm: Option<String>,
1403
/// The SHA1 hash of the signing certificate.
1404
#[serde(alias = "certificate-thumbprint", alias = "certificate_thumbprint")]
0 commit comments