[package]
authors = ["Ash Vardanian <1983160+ashvardanian@users.noreply.github.com>"]
categories = [
"mathematics",
"hardware-support",
"no-std",
"wasm",
"external-ffi-bindings",
]
description = "Portable mixed-precision BLAS-like vector math library for x86 and ARM"
documentation = "https://docs.rs/numkong"
edition = "2021"
homepage = "https://ashvardanian.com/posts/numkong-faster-scipy"
include = ["rust/**", "c/**", "include/**/*.h", "build.rs"]
keywords = ["simd", "search", "linear-algebra", "vector"]
license = "Apache-2.0"
name = "numkong"
readme = "rust/README.md"
repository = "https://github.com/ashvardanian/NumKong"
rust-version = "1.64"
version = "7.1.0"
[lib]
name = "numkong"
path = "rust/numkong.rs"
[build-dependencies]
cc = "1.2.36"
[profile.bench]
codegen-units = 1
lto = true
opt-level = 3
rpath = false
[features]
default = []
parallel = ["dep:fork_union", "std"]
std = []
wasm-runtime = []
[dependencies]
fork_union = {version = "2.3", optional = true}
[dev-dependencies]
half = {version = "2.6.0"}
rand = {version = "0.10.0"}
wasmtime = {version = "42.0"}
wasmtime-wasi = {version = "42.0"}