[package]
edition = "2021"
rust-version = "1.56"
name = "derive-masked"
version = "0.1.0"
authors = ["okcodes <code@ok.codes>"]
include = [
"/benches/**",
"/Cargo.toml",
"/LICENSE-APACHE",
"/LICENSE-MIT",
"/README.md",
"/src/**",
"/examples/**",
"/tests/**",
]
description = "Adds #[derive(x)] macros for implementing the Debug and Display traits masking out sensitive fields"
homepage = "https://github.com/okcodes/derive-masked"
documentation = "https://docs.rs/derive-masked"
readme = "README.md"
keywords = [
"macros",
"derive",
"password",
"redact",
"sensitive",
]
categories = [
"development-tools::procedural-macro-helpers",
"value-formatting",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/okcodes/derive-masked"
[lib]
proc-macro = true
[dependencies.quote]
version = "1.0.36"
[dependencies.syn]
version = "2.0.67"