[package]
edition = "2021"
rust-version = "1.56"
name = "utf8-width"
version = "0.1.9"
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 = "To determine the width of a UTF-8 character by providing its first byte."
homepage = "https://magiclen.org/utf8-width"
readme = "README.md"
keywords = [
"utf-8",
"width",
"length",
"character",
]
categories = [
"no-std",
"encoding",
]
license = "MIT"
repository = "https://github.com/magiclen/utf8-width"
[lib]
name = "utf8_width"
path = "src/lib.rs"
[dependencies]
[dev-dependencies.bencher]
version = "0.1.5"