1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
[package]
name = "simdutf8"
version = "0.1.4"
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"]
|