[package]
edition = "2021"
rust-version = "1.81"
name = "textstat"
version = "0.1.1"
authors = ["trananhtung"]
build = false
exclude = [
"/.github",
"/.gitignore",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Readability metrics for English text: Flesch Reading Ease, Flesch-Kincaid, Gunning Fog, SMOG, ARI, Coleman-Liau, plus word/sentence/syllable counts. Zero-dependency, no_std."
homepage = "https://github.com/trananhtung/textstat"
documentation = "https://docs.rs/textstat"
readme = "README.md"
keywords = [
"readability",
"flesch",
"text",
"nlp",
"readability-score",
]
categories = [
"text-processing",
"no-std",
"science",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/trananhtung/textstat"
[lib]
name = "textstat"
path = "src/lib.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[lints.clippy]
all = "warn"
pedantic = "warn"
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"