[package]
edition = "2024"
rust-version = "1.88"
name = "safe_unaligned_simd"
version = "0.2.4"
build = false
exclude = [
".github",
"tests",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Safe SIMD wrappers for unaligned load and store operations."
homepage = "https://github.com/okaneco/safe_unaligned_simd"
readme = "README.md"
keywords = [
"simd",
"vector",
"unaligned",
"load",
"store",
]
categories = [
"hardware-support",
"api-bindings",
"no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/okaneco/safe_unaligned_simd"
[package.metadata.docs.rs]
no-default-features = true
features = ["avx512"]
default-target = "x86_64-unknown-linux-gnu"
targets = [
"aarch64-apple-darwin",
"aarch64-unknown-linux-gnu",
"i686-unknown-linux-gnu",
"wasm32-wasip1",
]
[features]
_assembly_x86 = []
_avx_test = []
avx512 = []
default = []
nightly = []
[lib]
name = "safe_unaligned_simd"
path = "src/lib.rs"
[dependencies]
[dev-dependencies]
[target.'cfg(not(target_os = "wasi"))'.dev-dependencies.compiletest_rs]
version = "0.11.0"