[package]
edition = "2024"
rust-version = "1.94"
name = "qubit-sanitize"
version = "0.2.1"
authors = ["Haixing Hu <starfish.hu@gmail.com>"]
build = false
include = [
"/Cargo.toml",
"/LICENSE",
"/README.md",
"/README.zh_CN.md",
"/RUST_CODING_STYLE.md",
"/RUST_CODING_STYLE.zh_CN.md",
"/doc/**/user_guide*.md",
"/examples/**",
"/resources/**",
"/src/**",
"/tests/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Reusable field and structured object sanitization utilities for Rust"
homepage = "https://github.com/qubit-ltd/rs-sanitize"
documentation = "https://docs.rs/qubit-sanitize"
readme = "README.md"
keywords = [
"sanitize",
"mask",
"redact",
"logging",
"qubit",
]
categories = [
"development-tools",
"value-formatting",
]
license = "Apache-2.0"
repository = "https://github.com/qubit-ltd/rs-sanitize"
[lib]
name = "qubit_sanitize"
path = "src/lib.rs"
doctest = true
[[test]]
name = "adapter_tests"
path = "tests/adapter_tests.rs"
[[test]]
name = "core_tests"
path = "tests/core_tests.rs"
[[test]]
name = "lib_tests"
path = "tests/lib_tests.rs"
[dependencies.http]
version = "1.4"
[dependencies.serde_json]
version = "1.0"
[dependencies.url]
version = "2.5"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(coverage)"]