unicode-truncate 2.0.1

Unicode-aware algorithm to pad or truncate `str` in terms of displayed width.
Documentation
[[bench]]
harness = false
name = "benchmark"
path = "benches/benchmark.rs"

[dependencies.itertools]
default-features = false
version = "0.14"

[dependencies.unicode-segmentation]
default-features = false
version = "1"

[dependencies.unicode-width]
version = "0.2"

[dev-dependencies.criterion]
version = "0.8"

[features]
default = ["std"]
std = []

[lib]
bench = false
name = "unicode_truncate"
path = "src/lib.rs"

[package]
authors = ["Aetf <aetf@unlimitedcodeworks.xyz>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = """
Unicode-aware algorithm to pad or truncate `str` in terms of displayed width.
"""
edition = "2018"
exclude = ["benches/data/*"]
homepage = "https://github.com/Aetf/unicode-truncate"
keywords = ["text", "width", "unicode", "truncate", "pad"]
license = "MIT OR Apache-2.0"
name = "unicode-truncate"
readme = "README.md"
repository = "https://github.com/Aetf/unicode-truncate"
rust-version = "1.66"
version = "2.0.1"

[profile.bench]
codegen-units = 1
lto = true

[[test]]
name = "integration"
path = "tests/integration.rs"
required-features = ["std"]

[[test]]
name = "no_std"
path = "tests/no_std.rs"