Skip to content

Commit

Permalink
Remove redundant import of Zeroize - fixing the build for nightly
Browse files Browse the repository at this point in the history
  • Loading branch information
brycx committed Apr 1, 2019
1 parent 6e8ed3e commit 96f7a15
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 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 = "orion"
version = "0.13.3"
version = "0.13.4"
authors = ["brycx <[email protected]>"]
description = "Easy and usable rust crypto"
keywords = [ "cryptography", "crypto", "aead", "hash", "mac" ]
Expand Down
1 change: 0 additions & 1 deletion src/hazardous/stream/chacha20.rs
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,6 @@ struct InternalState {

impl Drop for InternalState {
fn drop(&mut self) {
use zeroize::Zeroize;
self.state.zeroize();
}
}
Expand Down

0 comments on commit 96f7a15

Please sign in to comment.