[package]
edition = "2021"
name = "panko"
version = "0.2.0"
authors = ["Lev Kudryashov <lev.kudryashov1994@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A small, zero-copy text tokenizer that crumbles strings into Words, Symbols, and Newlines."
homepage = "https://github.com/LEVLLN/panko"
documentation = "https://docs.rs/panko"
readme = "README.md"
keywords = [
"tokenizer",
"text",
"unicode",
"split",
"nlp",
]
categories = [
"text-processing",
"parser-implementations",
]
license = "MIT"
repository = "https://github.com/LEVLLN/panko"
[lib]
name = "panko"
path = "src/lib.rs"
[dependencies.itertools]
version = "0.14.0"
[dependencies.unicase]
version = "2.9.0"
[dev-dependencies.insta]
version = "1.47.2"
features = ["yaml"]
[dev-dependencies.rstest]
version = "0.26.1"
[lints.clippy]
all = "deny"
cast_possible_truncation = "deny"
cast_possible_wrap = "deny"
cast_precision_loss = "deny"
cast_sign_loss = "deny"
clone_on_copy = "deny"
dbg_macro = "deny"
expect_used = "deny"
explicit_into_iter_loop = "deny"
explicit_iter_loop = "deny"
fallible_impl_from = "deny"
if_not_else = "deny"
implicit_clone = "deny"
indexing_slicing = "deny"
match_same_arms = "deny"
match_wildcard_for_single_variants = "deny"
needless_continue = "deny"
panic = "deny"
redundant_clone = "deny"
undocumented_unsafe_blocks = "deny"
unimplemented = "deny"
unwrap_used = "deny"
[lints.rust]
warnings = "deny"