-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
36 lines (30 loc) · 1010 Bytes
/
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
[package]
name = "veil"
version = "0.2.0"
edition = "2021"
description = "Rust derive macro for redacting sensitive data in `std::fmt::Debug`"
license = "MIT OR Apache-2.0"
repository = "https://github.com/primait/veil"
categories = ["rust-patterns", "development-tools::debugging", "value-formatting"]
keywords = ["redaction", "masking", "redact", "privacy", "sensitive"]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[workspace]
members = ["veil-macros", "veil-tests",
# Because those tests deal with global state we need to run them in a separate process.
# The easiest/only way to do this with the standard rust test harness is to put them in a
# separate crate
"veil-tests/disable-redaction-test"
]
[features]
toggle = []
[[example]]
name = "disable_redaction"
required-features = ["toggle"]
[dependencies]
veil-macros = { path = "veil-macros", version = "=0.2.0" }
once_cell = "1"
[dev-dependencies]
toml = "0.8"
serde = { version = "1", features = ["derive"] }