]> git.proxmox.com Git - rustc.git/blame - vendor/zeroize/Cargo.toml
New upstream version 1.76.0+dfsg1
[rustc.git] / vendor / zeroize / Cargo.toml
CommitLineData
0a29b90c
FG
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]
49aad941 13edition = "2021"
4b012472 14rust-version = "1.60"
0a29b90c 15name = "zeroize"
4b012472 16version = "1.7.0"
0a29b90c
FG
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"
41
42[package.metadata.docs.rs]
43all-features = true
44rustdoc-args = [
45 "--cfg",
46 "docsrs",
47]
48
49[dependencies.serde]
50version = "1.0"
51optional = true
52default-features = false
53
54[dependencies.zeroize_derive]
55version = "1.3"
56optional = true
57
58[features]
59aarch64 = []
60alloc = []
61default = ["alloc"]
62derive = ["zeroize_derive"]
63std = ["alloc"]