# 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" name = "veil" version = "0.2.0" build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Rust derive macro for redacting sensitive data in `std::fmt::Debug`" readme = "README.md" keywords = [ "redaction", "masking", "redact", "privacy", "sensitive", ] categories = [ "rust-patterns", "development-tools::debugging", "value-formatting", ] license = "MIT OR Apache-2.0" repository = "https://github.com/primait/veil" [package.metadata.docs.rs] all-features = true rustdoc-args = [ "--cfg", "docsrs", ] [lib] name = "veil" path = "src/lib.rs" [[example]] name = "customer" path = "examples/customer.rs" [[example]] name = "disable_redaction" path = "examples/disable_redaction.rs" required-features = ["toggle"] [[example]] name = "enums" path = "examples/enums.rs" [[example]] name = "manual_builder" path = "examples/manual_builder.rs" [[example]] name = "manual_redactable" path = "examples/manual_redactable.rs" [[example]] name = "nested" path = "examples/nested.rs" [dependencies.once_cell] version = "1" [dependencies.veil-macros] version = "=0.2.0" [dev-dependencies.serde] version = "1" features = ["derive"] [dev-dependencies.toml] version = "0.8" [features] toggle = []