68 lines
1.6 KiB
TOML
68 lines
1.6 KiB
TOML
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
|
|
#
|
|
# When uploading crates to the registry Cargo will automatically
|
|
# "normalize" Cargo.toml files for maximal compatibility
|
|
# with all versions of Cargo and also rewrite `path` dependencies
|
|
# to registry (e.g., crates.io) dependencies.
|
|
#
|
|
# If you are reading this file be aware that the original Cargo.toml
|
|
# will likely look very different (and much more reasonable).
|
|
# See Cargo.toml.orig for the original contents.
|
|
|
|
[package]
|
|
edition = "2021"
|
|
rust-version = "1.60"
|
|
name = "secrecy"
|
|
version = "0.10.3"
|
|
authors = ["Tony Arcieri <tony@iqlusion.io>"]
|
|
build = false
|
|
autobins = false
|
|
autoexamples = false
|
|
autotests = false
|
|
autobenches = false
|
|
description = """
|
|
Wrapper types and traits for secret management which help ensure
|
|
they aren't accidentally copied, logged, or otherwise exposed
|
|
(as much as possible), and also ensure secrets are securely wiped
|
|
from memory when dropped.
|
|
"""
|
|
homepage = "https://github.com/iqlusioninc/crates/"
|
|
readme = "README.md"
|
|
keywords = [
|
|
"clear",
|
|
"memory",
|
|
"secret",
|
|
"secure",
|
|
"wipe",
|
|
]
|
|
categories = [
|
|
"cryptography",
|
|
"memory-management",
|
|
"no-std",
|
|
"os",
|
|
]
|
|
license = "Apache-2.0 OR MIT"
|
|
repository = "https://github.com/iqlusioninc/crates/tree/main/secrecy"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = [
|
|
"--cfg",
|
|
"docsrs",
|
|
]
|
|
|
|
[lib]
|
|
name = "secrecy"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies.serde]
|
|
version = "1"
|
|
features = ["alloc"]
|
|
optional = true
|
|
default-features = false
|
|
|
|
[dependencies.zeroize]
|
|
version = "1.6"
|
|
features = ["alloc"]
|
|
default-features = false
|