[package]
edition = "2021"
rust-version = "1.74"
name = "rtl-flip-detect"
version = "0.1.0"
authors = ["Mukunda Rao Katta <mukunda.vjcs6@gmail.com>"]
build = false
exclude = [
".github/*",
"target/*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Detect right-to-left override (U+202E) and other bidi-control characters that flip rendering of strings. Used in filename-spoof and prompt-injection attacks. Zero deps."
homepage = "https://github.com/MukundaKatta/rtl-flip-detect"
documentation = "https://docs.rs/rtl-flip-detect"
readme = "README.md"
keywords = [
"unicode",
"bidi",
"rtl",
"security",
"spoof",
]
categories = ["text-processing"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/MukundaKatta/rtl-flip-detect"
[lib]
name = "rtl_flip_detect"
path = "src/lib.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"