[package]
edition = "2021"
rust-version = "1.79"
name = "sse2neon"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "x86 SSE-to-ARM NEON intrinsic compatibility shim"
documentation = "https://docs.rs/sse2neon"
readme = "README.md"
keywords = [
"simd",
"neon",
"sse",
"aarch64",
"intrinsics",
]
categories = [
"hardware-support",
"no-std",
]
license = "MIT"
repository = "https://github.com/hey-jj/sse2neon"
[package.metadata.docs.rs]
default-target = "aarch64-unknown-linux-gnu"
targets = ["aarch64-unknown-linux-gnu"]
[lib]
name = "sse2neon"
path = "src/lib.rs"
[[test]]
name = "aes"
path = "tests/aes.rs"
[[test]]
name = "ieee754"
path = "tests/ieee754.rs"
[[test]]
name = "impl_misc"
path = "tests/impl_misc.rs"
[[test]]
name = "impl_sse"
path = "tests/impl_sse.rs"
[[test]]
name = "impl_sse2"
path = "tests/impl_sse2.rs"
[[test]]
name = "impl_sse3_ssse3"
path = "tests/impl_sse3_ssse3.rs"
[[test]]
name = "impl_sse41_42"
path = "tests/impl_sse41_42.rs"
[[test]]
name = "loadl_storel_unaligned"
path = "tests/loadl_storel_unaligned.rs"
[[test]]
name = "nan"
path = "tests/nan.rs"
[dependencies]