-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathCargo.toml
More file actions
53 lines (43 loc) · 1.02 KB
/
Cargo.toml
File metadata and controls
53 lines (43 loc) · 1.02 KB
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
[package]
name = "simdutf8-bench"
version = "0.0.1"
authors = ["Hans Kratz <hans@appfour.com>"]
edition = "2018"
description = "simdutf8 benchmark package"
documentation = "https://docs.rs/simdutf8/"
homepage = "https://github.com/rusticstuff/simdutf8"
repository = "https://github.com/rusticstuff/simdutf8"
license = "MIT OR Apache-2.0"
[features]
simdjson = [ "simdjson-utf8" ]
[dependencies]
core_affinity = "0.5"
criterion = "0.3"
simdutf8 = { version = "*", path = "..", features = ["aarch64_neon"] }
simdjson-utf8 = { version = "*", path = "simdjson-utf8", optional = true }
rand = "0.8"
[[bench]]
name = "throughput_basic"
harness = false
[[bench]]
name = "throughput_basic_noinline"
harness = false
[[bench]]
name = "throughput_compat"
harness = false
[[bench]]
name = "throughput_std"
harness = false
[[bench]]
name = "throughput_simdjson"
harness = false
required-features = ["simdjson"]
[[bench]]
name = "small_basic"
harness = false
[[bench]]
name = "small_compat"
harness = false
[[bench]]
name = "small_std"
harness = false