# 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 = "untrusted_value" version = "0.3.1" build = false autobins = false autoexamples = false autotests = false autobenches = false description = """ This crate aim to provide a type-safe way to handle and sanitize potentially untrusted values like user input.""" homepage = "https://github.com/0xCCF4/UntrustedValue" documentation = "https://docs.rs/untrusted_value" readme = "README.md" keywords = [ "security", "sanitization", "validation", "taint", "static-analyis", ] license = "MIT" repository = "https://github.com/0xCCF4/UntrustedValue" [lib] name = "untrusted_value" path = "src/lib.rs" [[example]] name = "manual_sanitize_trait" path = "examples/manual_sanitize_trait.rs" [[example]] name = "manual_sanitize_with" path = "examples/manual_sanitize_with.rs" [[example]] name = "manual_untrusted_variant_no_nesting" path = "examples/manual_untrusted_variant_no_nesting.rs" [[example]] name = "untrusted_inputs" path = "examples/untrusted_inputs.rs" [[example]] name = "untrusted_inputs_nested_structs" path = "examples/untrusted_inputs_nested_structs.rs" [[example]] name = "untrusted_outputs" path = "examples/untrusted_outputs.rs" [dependencies.untrusted_value_derive] version = "0.3.1" optional = true [dependencies.untrusted_value_derive_internals] version = "0.3.1" [features] default = ["derive"] derive = ["dep:untrusted_value_derive"] derive_harden_sanitize = [ "derive", "untrusted_value_derive/harden_sanitize", ]