mirror of
https://github.com/serai-dex/serai.git
synced 2024-11-17 17:37:37 +00:00
35ca220bcc
Prevents it from turning on with --all-features, forcing nightly.
20 lines
503 B
TOML
20 lines
503 B
TOML
[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]
|
|
# Commented for now as it requires nightly and we don't use nightly
|
|
# allocator = []
|