git-subtree-dir: vendor/ruvector git-subtree-split: b64c21726f2bb37286d9ee36a7869fef60cc6900
54 lines
1.2 KiB
TOML
54 lines
1.2 KiB
TOML
[package]
|
|
name = "ruvector-sparse-inference"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
authors.workspace = true
|
|
repository.workspace = true
|
|
rust-version.workspace = true
|
|
description = "PowerInfer-style sparse inference engine for efficient neural network inference on edge devices"
|
|
keywords = ["sparse-inference", "neural-network", "quantization", "simd", "edge-ai"]
|
|
categories = ["science", "algorithms"]
|
|
readme = "README.md"
|
|
|
|
[dependencies]
|
|
# Math and numerics
|
|
ndarray = { version = "0.16", features = ["serde"] }
|
|
rand = { workspace = true }
|
|
rand_distr = { workspace = true }
|
|
|
|
# Serialization
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
rkyv = { workspace = true }
|
|
|
|
# Error handling
|
|
thiserror = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
|
|
# Logging
|
|
tracing = { workspace = true }
|
|
|
|
# Performance
|
|
rayon = { workspace = true }
|
|
parking_lot = { workspace = true }
|
|
|
|
# Memory mapping for model loading
|
|
memmap2 = { workspace = true }
|
|
|
|
# GGUF model loading support
|
|
byteorder = "1.5"
|
|
half = "2.4"
|
|
|
|
[dev-dependencies]
|
|
criterion = { workspace = true }
|
|
proptest = { workspace = true }
|
|
mockall = { workspace = true }
|
|
|
|
[[bench]]
|
|
name = "sparse_inference_bench"
|
|
harness = false
|
|
|
|
[lib]
|
|
bench = false
|