[package]
edition = "2021"
rust-version = "1.56"
name = "words-count"
version = "0.1.7"
authors = ["Magic Len <len@magiclen.org>"]
build = false
include = [
"src/**/*",
"Cargo.toml",
"README.md",
"LICENSE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Count the words and characters, with or without whitespaces."
homepage = "https://magiclen.org/words-count"
readme = "README.md"
keywords = [
"word",
"letter",
"count",
"utf-8",
"character",
]
categories = [
"no-std",
"text-processing",
]
license = "MIT"
repository = "https://github.com/magiclen/words-count"
[lib]
name = "words_count"
path = "src/lib.rs"
[dependencies.unicode-blocks]
version = "0.1.1"