[package]
edition = "2021"
name = "simdeez"
version = "3.0.0"
authors = [
"Jack Mott <jack.mott@gmail.com>",
"Arduano",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "SIMD library to abstract over different instruction sets and widths"
documentation = "https://docs.rs/simdeez/"
readme = "README.md"
keywords = [
"SIMD",
"avx2",
"sse",
"performance",
"no_std",
]
categories = [
"hardware-support",
"science",
"game-engines",
]
license = "Apache-2.0/MIT"
repository = "https://github.com/arduano/simdeez"
[features]
default = []
no_std = ["dep:libm"]
[lib]
name = "simdeez"
path = "src/lib.rs"
doctest = true
[[example]]
name = "string_parse_sum"
path = "examples/string_parse_sum.rs"
[[bench]]
name = "numparse"
path = "benches/numparse.rs"
harness = false
[[bench]]
name = "simd_math"
path = "benches/simd_math.rs"
harness = false
[[bench]]
name = "simd_math_remaining_baseline"
path = "benches/simd_math_remaining_baseline.rs"
harness = false
[dependencies.cfg-if]
version = "1.0.0"
[dependencies.libm]
version = "0.2.11"
optional = true
[dependencies.paste]
version = "1.0.15"
[dev-dependencies.rand]
version = "0.8.5"
[dev-dependencies.rand_chacha]
version = "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"
features = [
"plotters",
"cargo_bench_support",
]
default-features = false