-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
43 lines (38 loc) · 1.14 KB
/
Cargo.toml
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
[package]
name = "sosecrets-rs"
version = "0.2.6"
edition = "2021"
authors = ["Jim Chng <jimchng@outlook.com>"]
rust-version = "1.70"
readme = "README.md"
license-file = "LICENSE"
repository = "https://github.com/jymchng/sosecrets-rs"
description = "A simple `Secret` wrapper type that reveals the secret at most `MEC: typenum::Unsigned` times with compile time guarantees."
keywords = ["security", "secrets", "exposure-control", "non-linear-types", "metaprogramming"]
categories = ["config", "no-std::no-alloc", "rust-patterns"]
exclude = [
"tests/*",
"trybuild_tests/*",
"scripts/*",
".pre-*.yaml",
".github/*",
".gitignore",
"assets",
"CHANGELOG.md"
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
typenum = "^1.17.0"
zeroize = { version = "< 1.8", optional = true}
[dev-dependencies]
fs_extra = "1.3.0"
rustversion = "1.0.15"
trybuild = "1.0.85"
[features]
cloneable-secret = []
alloc = ["zeroize/alloc"]
zeroize = ["dep:zeroize"]
debug-secret = []
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--generate-link-to-definition", "--cfg", "docsrs"]