forked from ruvnet/RuVector
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
53 lines (43 loc) · 1.22 KB
/
Cargo.toml
File metadata and controls
53 lines (43 loc) · 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[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