truecase 0.3.1

Restore correct letter casings in arbitrary text using a statistical model
Documentation
[package]
authors = ["Aleksei Voronov <despawn@gmail.com>"]
description = "Restore correct letter casings in arbitrary text using a statistical model"
documentation = "https://docs.rs/truecase"
license = "MIT OR Apache-2.0"
repository = "https://github.com/despawnerer/truecase"
name = "truecase"
version = "0.3.1"
readme = "README.md"
exclude = ["testing-data/*"]
edition = "2018"

[[bench]]
harness = false
name = "all"

[dependencies]
clap = { version = "2.33", optional = true }
lazy_static = "1.4"
regex = "1.5"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
indexmap = "1.7"
thiserror = "1.0"
anyhow = { version = "1.0", optional = true }

[dev-dependencies]
criterion = "0.3"

[features]
default = []
cli = ["clap", "anyhow"]

[[bin]]
name = "truecase"
required-features = ["cli"]