[package]
name = "fearless_simd"
version = "0.6.0"
license.workspace = true
edition.workspace = true
repository.workspace = true
rust-version.workspace = true
authors = ["Raph Levien <raph.levien@gmail.com>"]
keywords = ["simd"]
categories = ["hardware-support"]
description = "Safer and easier SIMD"
readme = "README.md"
[package.metadata.docs.rs]
all-features = true
targets = [
"x86_64-unknown-linux-gnu",
"i686-unknown-linux-gnu",
"aarch64-apple-darwin",
"wasm32-unknown-unknown",
]
rustdoc-args = [
"--cfg",
'target_feature="simd128"',
]
[features]
default = ["std"]
std = []
libm = ["dep:libm"]
force_support_fallback = []
[lints]
workspace = true
[dependencies]
libm = { version = "0.2.15", optional = true }