str-utils 0.3.2

This crate provides some traits to extend `[u8]`, `str` and `Cow<str>`.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.80"
name = "str-utils"
version = "0.3.2"
authors = ["Magic Len <len@magiclen.org>"]
build = false
include = [
    "src/**/*",
    "Cargo.toml",
    "README.md",
    "LICENSE",
    "benches/**/*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "This crate provides some traits to extend `[u8]`, `str` and `Cow<str>`."
homepage = "https://magiclen.org/str-utils"
readme = "README.md"
keywords = [
    "string",
    "character",
    "cow",
    "fluent",
]
categories = [
    "no-std",
    "text-processing",
]
license = "MIT"
repository = "https://github.com/magiclen/str-utils"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
alloc = []
default = [
    "std",
    "unicase",
]
std = ["alloc"]
unicase = ["dep:unicase"]

[lib]
name = "str_utils"
path = "src/lib.rs"

[[bench]]
name = "eq_ignore_ascii_case"
path = "benches/eq_ignore_ascii_case.rs"
harness = false

[[bench]]
name = "eq_ignore_ascii_case_multiple"
path = "benches/eq_ignore_ascii_case_multiple.rs"
harness = false

[[bench]]
name = "eq_multiple"
path = "benches/eq_multiple.rs"
harness = false

[dependencies.unicase]
version = "2"
optional = true

[dependencies.utf8-width]
version = "0.1"

[dev-dependencies.bencher]
version = "0.1.5"

[dev-dependencies.manifest-dir-macros]
version = "0.1.6"