Skip to content

Commit

Permalink
Fix: borsh dependency should enable borsh-derive feature
Browse files Browse the repository at this point in the history
  • Loading branch information
448-OG committed Sep 8, 2023
1 parent 38160a0 commit 765a630
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "memsecurity"
version = "3.3.1"
version = "3.3.2"
authors = ["448 ENGINEERING DESIGN DEVELOPERS <superuser@448.africa>"]
license = "Apache-2.0 OR MIT"
description = "Securely hold secrets in memory and protect them against cross-protection-boundary readout via microarchitectural, via attacks on physical layout, and via coldboot attacks."
Expand All @@ -22,7 +22,11 @@ arrayvec = { version = "0.7.4", default-features = true, features = [
"zeroize",
], optional = true }
blake3 = { version = "1.4.1", default-features = true, optional = true }
borsh = { version = "1.0.0-alpha.4", features = ["bytes", "derive", "std"] }
borsh = { version = "1.0.0-alpha.4", features = [
"bytes",
"borsh-derive",
"derive",
] }
bytes = { version = "1.5.0", optional = true }
chacha20poly1305 = { version = "0.10.1", features = [
"reduced-round",
Expand Down

0 comments on commit 765a630

Please sign in to comment.