[package]
edition = "2021"
name = "multiversed"
version = "0.3.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Attribute macros wrapping multiversion with predefined SIMD target presets"
readme = "README.md"
keywords = [
"simd",
"multiversion",
"avx2",
"neon",
"performance",
]
categories = [
"development-tools::procedural-macro-helpers",
"hardware-support",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/imazen/multiversed"
[package.metadata.docs.rs]
all-features = true
[features]
arm64 = ["arm64-v2"]
arm64-v2 = []
arm64-v3 = []
default = [
"x86-64-v3",
"x86-64-v4x",
"arm64-v2",
"wasm32-simd128",
]
force-disable = []
wasm32-simd128 = []
x86-64-v2 = []
x86-64-v3 = []
x86-64-v4 = []
x86-64-v4-modern = ["x86-64-v4x"]
x86-64-v4x = []
[lib]
name = "multiversed"
path = "src/lib.rs"
proc-macro = true
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "runtime_report"
path = "tests/runtime_report.rs"
[[bench]]
name = "dispatch_overhead"
path = "benches/dispatch_overhead.rs"
harness = false
[dependencies.proc-macro2]
version = "1.0"
[dependencies.quote]
version = "1.0"
[dependencies.syn]
version = "2.0"
features = [
"full",
"parsing",
]
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.multiversion]
version = "0.8"