-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (40 loc) · 1.13 KB
/
Cargo.toml
File metadata and controls
49 lines (40 loc) · 1.13 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
[package]
name = "simdeez"
version = "3.0.1"
authors = ["Jack Mott <jack.mott@gmail.com>", "Arduano"]
description = "SIMD library to abstract over different instruction sets and widths"
license = "Apache-2.0/MIT"
documentation = "https://docs.rs/simdeez/"
readme = "README.md"
keywords = ["SIMD", "avx2", "sse", "performance", "no_std"]
repository = "https://github.com/arduano/simdeez"
categories = ["hardware-support", "science", "game-engines"]
edition = "2021"
[lib]
doctest = true
[features]
default = []
no_std = ["dep:libm"]
[dependencies]
paste = "1.0.15"
cfg-if = "1.0.0"
libm = { version = "0.2.11", optional = true }
[dev-dependencies]
rand = "0.8.5"
rand_chacha = "0.3.1"
[target.'cfg(not(target_family = "wasm"))'.dev-dependencies.criterion]
version = "0.5.1"
[target.'cfg(target_family = "wasm")'.dev-dependencies.criterion]
version = "0.5.1"
default-features = false
# Default features, excluding `rayon` which isn't supported on WASM
features = ["plotters", "cargo_bench_support"]
[[bench]]
name = "numparse"
harness = false
[[bench]]
name = "simd_math"
harness = false
[[bench]]
name = "simd_math_remaining_baseline"
harness = false