[package]
edition = "2021"
rust-version = "1.74"
name = "readsight"
version = "1.0.1"
build = false
exclude = ["temp/"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Multilingual readability library — 86 languages, 17 formulas, TeX-based syllable counting via the Frank M. Liang algorithm."
homepage = "https://github.com/MADEVAL/ReadSight"
readme = "README.md"
keywords = [
"readability",
"syllable",
"hyphenation",
"flesch-kincaid",
"multilingual",
]
categories = [
"text-processing",
"internationalization",
]
license = "MIT"
repository = "https://github.com/MADEVAL/ReadSight"
[lib]
name = "readsight"
path = "src/lib.rs"
[[example]]
name = "demo"
path = "examples/demo.rs"
[[example]]
name = "multilingual"
path = "examples/multilingual.rs"
[[test]]
name = "coverage"
path = "tests/coverage.rs"
[[test]]
name = "engine"
path = "tests/engine.rs"
[[test]]
name = "formula"
path = "tests/formula.rs"
[[test]]
name = "golden"
path = "tests/golden.rs"
[[test]]
name = "hyphenation"
path = "tests/hyphenation.rs"
[[test]]
name = "multilingual"
path = "tests/multilingual.rs"
[[test]]
name = "syllable"
path = "tests/syllable.rs"
[[test]]
name = "text"
path = "tests/text.rs"
[dependencies.fancy-regex]
version = "0.13"
[dependencies.include_dir]
version = "0.7"
[dependencies.indexmap]
version = "2"
features = ["serde"]
[dependencies.regex]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
features = ["preserve_order"]
[dev-dependencies.serde]
version = "1"
features = ["derive"]
[dev-dependencies.serde_json]
version = "1"
features = ["preserve_order"]
[profile.test]
opt-level = 2