memx 0.2.2

memory functions like libc memcmp(), memchr(), memmem(), memcpy(), memset()
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.65.0"
name = "memx"
version = "0.2.2"
authors = ["aki <aki.akaguma@hotmail.com>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "memory functions like libc memcmp(), memchr(), memmem(), memcpy(), memset()"
readme = "README.md"
keywords = [
    "memcmp",
    "memchr",
    "memmem",
]
categories = ["algorithms"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/aki-akaguma/memx"

[features]
default = []
test = []
test_alignment_check = ["test"]
test_pointer_width = ["test"]
test_pointer_width_32 = ["test_pointer_width"]
test_pointer_width_64 = ["test_pointer_width"]

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

[[example]]
name = "memchr1"
path = "examples/memchr1.rs"

[[example]]
name = "memcmp1"
path = "examples/memcmp1.rs"

[[example]]
name = "memcpy1"
path = "examples/memcpy1.rs"

[[example]]
name = "memeq1"
path = "examples/memeq1.rs"

[[example]]
name = "memmem1"
path = "examples/memmem1.rs"

[[example]]
name = "memset1"
path = "examples/memset1.rs"

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

[dependencies]

[dev-dependencies.cfg-iif]
version = "0.2"

[dev-dependencies.rustversion]
version = "1.0"

[build-dependencies.rustversion]
version = "1.0"

[target.'cfg(any(target_arch = "aarch64", target_arch = "x86_64", target_arch = "x86"))'.dependencies.cpufeatures]
version = "0.2"

[target.'cfg(any(target_arch = "x86_64", target_arch = "x86"))'.dev-dependencies.x86-alignment-check]
version = "0.1"

[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(has_not_static_mut_refs)"]

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

[profile.release]
lto = true