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