-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
245bef3
commit 1d85bf4
Showing
11 changed files
with
64 additions
and
27 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
[package] | ||
name = "zeroize" | ||
description = """ | ||
Securely clear secrets from memory with a simple trait built on | ||
stable Rust primitives which guarantee memory is zeroed using an | ||
operation will not be 'optimized away' by the compiler. | ||
Uses a portable pure Rust implementation that works everywhere, | ||
even WASM! | ||
""" | ||
version = "1.0.0-pre" # Also update html_root_url in lib.rs when bumping this | ||
Securely clear secrets from memory with a simple trait built on | ||
stable Rust primitives which guarantee memory is zeroed using an | ||
operation will not be 'optimized away' by the compiler. | ||
Uses a portable pure Rust implementation that works everywhere, | ||
even WASM! | ||
""" | ||
version = "1.0.0" # Also update html_root_url in lib.rs when bumping this | ||
authors = ["Tony Arcieri <[email protected]>"] | ||
license = "Apache-2.0 OR MIT" | ||
edition = "2018" | ||
|
@@ -17,17 +17,17 @@ readme = "README.md" | |
categories = ["cryptography", "memory-management", "no-std", "os"] | ||
keywords = ["memory", "memset", "secure", "volatile", "zero"] | ||
|
||
[package.metadata.docs.rs] | ||
all-features = true | ||
|
||
[badges] | ||
maintenance = { status = "actively-developed" } | ||
maintenance = { status = "passively-maintained" } | ||
|
||
[dependencies] | ||
zeroize_derive = { version = "1.0.0-pre", path = "../zeroize_derive", optional = true } | ||
zeroize_derive = { version = "1.0.0", path = "../zeroize_derive", optional = true } | ||
bytes = { version = "0.4", optional = true } | ||
|
||
[features] | ||
default = ["alloc"] | ||
alloc = [] | ||
bytes-preview = ["bytes"] | ||
|
||
[package.metadata.docs.rs] | ||
all-features = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
## [1.0.0] (2019-10-13) | ||
|
||
- Initial 1.0 release | ||
|
||
[1.0.0]: https://github.com/iqlusioninc/crates/pull/279 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "zeroize_derive" | ||
description = "Custom derive support for zeroize" | ||
version = "1.0.0-pre" | ||
version = "1.0.0" | ||
authors = ["Tony Arcieri <[email protected]>"] | ||
license = "Apache-2.0 OR MIT" | ||
edition = "2018" | ||
|
@@ -14,6 +14,9 @@ keywords = ["memory", "memset", "secure", "volatile", "zero"] | |
[lib] | ||
proc-macro = true | ||
|
||
[badges] | ||
maintenance = { status = "passively-maintained" } | ||
|
||
[dependencies] | ||
proc-macro2 = "1" | ||
quote = "1" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters