[package]
edition = "2021"
rust-version = "1.89"
name = "haagenti-simd"
version = "0.1.0"
authors = ["Daemoniorum Engineering <engineering@daemoniorum.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "SIMD-accelerated primitives for Haagenti"
readme = false
keywords = [
"simd",
"avx2",
"neon",
"performance",
]
categories = [
"compression",
"hardware-support",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/daemoniorum/haagenti"
[features]
auto-detect = []
avx2 = []
avx512 = []
default = [
"std",
"auto-detect",
]
neon = []
std = ["haagenti-core/std"]
[lib]
name = "haagenti_simd"
path = "src/lib.rs"
[dependencies.haagenti-core]
version = "0.1.0"
[dependencies.safe_arch]
version = "0.7"
[dependencies.wide]
version = "0.7"
[dev-dependencies.proptest]
version = "1.5"