mirror of
https://github.com/serai-dex/serai.git
synced 2025-12-09 04:39:24 +00:00
Zeroizing allocator (#154)
* Add a zeroizing allocator * Also implement the allocator API * Add misisng license file to zalloc * Slight change to zalloc description
This commit is contained in:
19
common/zalloc/Cargo.toml
Normal file
19
common/zalloc/Cargo.toml
Normal file
@@ -0,0 +1,19 @@
|
||||
[package]
|
||||
name = "zalloc"
|
||||
version = "0.1.0"
|
||||
description = "An allocator wrapper which zeroizes memory on dealloc"
|
||||
license = "MIT"
|
||||
repository = "https://github.com/serai-dex/serai/tree/develop/common/zalloc"
|
||||
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
|
||||
keywords = []
|
||||
edition = "2021"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
all-features = true
|
||||
rustdoc-args = ["--cfg", "docsrs"]
|
||||
|
||||
[dependencies]
|
||||
zeroize = "1.5"
|
||||
|
||||
[features]
|
||||
allocator = []
|
||||
Reference in New Issue
Block a user