File: Cargo.toml

package info (click to toggle)
rust-secrecy 0.8.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 128 kB
  • sloc: makefile: 4
file content (43 lines) | stat: -rw-r--r-- 1,496 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# 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 believe there's an error in this file please file an
# issue against the rust-lang/cargo repository. If you're
# editing this file be aware that the upstream Cargo.toml
# will likely look very different (and much more reasonable)

[package]
edition = "2018"
name = "secrecy"
version = "0.8.0"
authors = ["Tony Arcieri <tony@iqlusion.io>"]
description = "Wrapper types and traits for secret management which help ensure\nthey aren't accidentally copied, logged, or otherwise exposed\n(as much as possible), and also ensure secrets are securely wiped\nfrom memory when dropped.\n"
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"
resolver = "2"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[dependencies.bytes]
version = "1"
optional = true

[dependencies.serde]
version = "1"
optional = true

[dependencies.zeroize]
version = "1.4"
default-features = false

[features]
alloc = ["zeroize/alloc"]
default = ["alloc"]