-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathCargo.toml
55 lines (45 loc) · 1.36 KB
/
Cargo.toml
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
48
49
50
51
52
53
54
55
[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 = []
# deprecated - does not do anything
aarch64_neon = []
# enable aarch64 prefetching for minor speedup - requires nightly
aarch64_neon_prefetch = []
armv7_neon = []
# make the portable SIMD public implementation available (experimental, nightly only)
portable_public_imp = ["public_imp"]
# 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-wasip1"]
[dependencies]
flexpect = "0.0.4"