Skip to content

Commit

Permalink
Bump
Browse files Browse the repository at this point in the history
  • Loading branch information
jedisct1 committed Dec 13, 2023
1 parent 534f239 commit c21067c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmsign2-cli"
version = "0.1.7"
version = "0.2.0"
edition = "2021"
authors = ["Frank Denis <[email protected]>"]
description = "CLI tool to sign and verify WebAssembly modules"
Expand Down
14 changes: 7 additions & 7 deletions src/lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmsign2"
version = "0.1.13"
version = "0.2.0"
edition = "2021"
authors = ["Frank Denis <[email protected]>"]
description = "An implementation of the WebAssembly modules signatures proposal"
Expand All @@ -12,15 +12,15 @@ repository = "https://github.com/wasm-signatures/wasmsign2"
categories = ["cryptography", "wasm"]

[dependencies]
anyhow = "1.0.68"
anyhow = "1.0.75"
ct-codecs = "1.1.1"
ed25519-compact = { version = "2.0.4", features = ["pem"] }
getrandom = { version = "0.2.8", features = ["js"] }
hmac-sha256 = "1.1.6"
log = "0.4.17"
regex = "1.7.0"
getrandom = { version = "0.2.11", features = ["js"] }
hmac-sha256 = "1.1.7"
log = "0.4.20"
regex = "1.10.2"
ssh-keys = "0.1.4"
thiserror = "1.0.38"
thiserror = "1.0.50"

[profile.release]
codegen-units = 1
Expand Down
2 changes: 1 addition & 1 deletion src/lib/src/signature/sig_sections.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ impl SignatureForHashes {
} else {
varint::put(&mut writer, 0)?;
}
writer.write(&[self.alg_id])?;
writer.write_all(&[self.alg_id])?;
varint::put_slice(&mut writer, &self.signature)?;
Ok(writer.into_inner().unwrap())
}
Expand Down

0 comments on commit c21067c

Please sign in to comment.