Files
2026-08-01 16:11:49 +03:00

48 lines
1.2 KiB
TOML

[package]
name = "simdutf8"
version = "0.1.5"
authors = ["Hans Kratz <hans@appfour.com>"]
edition = "2018"
description = "SIMD-accelerated UTF-8 validation."
documentation = "https://docs.rs/simdutf8/"
homepage = "https://github.com/rusticstuff/simdutf8"
repository = "https://github.com/rusticstuff/simdutf8"
readme = "README.md"
keywords = ["utf-8", "unicode", "string", "validation", "simd"]
categories = ["encoding", "algorithms", "no-std"]
license = "MIT OR Apache-2.0"
exclude = [
"/.gitignore",
"/.github",
"/.vscode",
"/bench",
"/fuzzing",
"/img",
"/inlining",
"TODO.md",
]
[features]
default = ["std"]
# enable CPU feature detection, on by default, turn off for no-std support
std = []
# expose SIMD implementations in basic::imp::* and compat::imp::*
public_imp = []
# aarch64 NEON SIMD implementation - requires Rust 1.59.0 or later
aarch64_neon = []
# enable aarch64 prefetching for minor speedup - requires nightly
aarch64_neon_prefetch = []
# deprecated - does not do anything
hints = []
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
default-target = "x86_64-unknown-linux-gnu"
targets = ["aarch64-unknown-linux-gnu", "wasm32-unknown-unknown", "wasm32-wasi"]