1# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
2#
3# When uploading crates to the registry Cargo will automatically
4# "normalize" Cargo.toml files for maximal compatibility
5# with all versions of Cargo and also rewrite `path` dependencies
6# to registry (e.g., crates.io) dependencies.
7#
8# If you are reading this file be aware that the original Cargo.toml
9# will likely look very different (and much more reasonable).
10# See Cargo.toml.orig for the original contents.
11
12[package]
13edition = "2021"
14rust-version = "1.56"
15name = "zeroize"
16version = "1.6.0"
17authors = ["The RustCrypto Project Developers"]
18description = """
19Securely clear secrets from memory with a simple trait built on
20stable Rust primitives which guarantee memory is zeroed using an
21operation will not be 'optimized away' by the compiler.
22Uses a portable pure Rust implementation that works everywhere,
23even WASM!
24"""
25readme = "README.md"
26keywords = [
27    "memory",
28    "memset",
29    "secure",
30    "volatile",
31    "zero",
32]
33categories = [
34    "cryptography",
35    "memory-management",
36    "no-std",
37    "os",
38]
39license = "Apache-2.0 OR MIT"
40repository = "https://github.com/RustCrypto/utils/tree/master/zeroize"
41resolver = "1"
42
43[package.metadata.docs.rs]
44all-features = true
45rustdoc-args = [
46    "--cfg",
47    "docsrs",
48]
49
50[dependencies.serde]
51version = "1.0"
52optional = true
53default-features = false
54
55[dependencies.zeroize_derive]
56version = "1.3"
57optional = true
58
59[features]
60aarch64 = []
61alloc = []
62default = ["alloc"]
63derive = ["zeroize_derive"]
64std = ["alloc"]
65