Skip to content

Commit 0bdf056

Browse files
committed
crates.io release prep
1 parent 6e92048 commit 0bdf056

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ name = "zeroizing-alloc"
33
version = "0.1.0"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
6-
publish = false
6+
repository = "https://github.com/1Password/zeroizing-alloc"
7+
description = "Minimal allocator wrapper to zero-on-free data for security"
78

89
[features]
910
reference_impl = []

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
## About
22

3-
This is a proof-of-concept crate for a [Global Allocator](https://doc.rust-lang.org/std/alloc/trait.GlobalAlloc.html) in Rust that securely zeroizes all objects
3+
[![crates.io version](https://img.shields.io/crates/v/zeroizing-alloc.svg)](https://crates.io/crates/zeroizing-alloc)
4+
[![crates.io downloads](https://img.shields.io/crates/d/zeroizing-alloc.svg)](https://crates.io/crates/zeroizing-alloc)
5+
6+
`zeroizing-alloc` is a proof-of-concept crate for a [Global Allocator](https://doc.rust-lang.org/std/alloc/trait.GlobalAlloc.html) in Rust that securely zeroizes all objects
47
upon deallocation, with a very low performance impact. It otherwise wraps the provided allocator and keeps its behavior.
58

69
### Example

0 commit comments

Comments
 (0)