2022-11-11 05:34:40 +00:00
|
|
|
[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"
|
2023-08-02 18:17:57 +00:00
|
|
|
rust-version = "1.60"
|
2022-11-11 05:34:40 +00:00
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
|
|
|
|
[dependencies]
|
2023-07-26 07:03:44 +00:00
|
|
|
zeroize = { version = "^1.5", default-features = false }
|
2022-11-11 05:34:40 +00:00
|
|
|
|
|
|
|
[features]
|
2023-10-31 11:41:23 +00:00
|
|
|
std = ["zeroize/std"]
|
|
|
|
default = ["std"]
|
2022-11-11 06:23:35 +00:00
|
|
|
# Commented for now as it requires nightly and we don't use nightly
|
|
|
|
# allocator = []
|