-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
47 lines (42 loc) · 1.13 KB
/
Cargo.toml
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
[package]
name = "neuron"
version = "0.1.0"
edition = "2021"
[features]
default = [ "gpu_accel", "async_impls" ]
gpu_accel = [ "dep:bytemuck", "dep:naga", "dep:vulkano" ]
async_impls = [ "dep:tokio" ]
[dependencies]
counter = "0.5.7"
csv = "1.3.0"
float-derive = "0.1.0"
float-derive-macros = "0.1.0"
micromath = "2.1.0"
ndarray = {version = "0.15.6", features = ["std", "serde", "rayon"]}
ndarray-linalg = { version = "0.16.0", features = ["intel-mkl-static"]}
num-order = "1.2.0"
num-traits = "0.2.18"
ordered-float = "4.2.0"
prettytable = "0.10.0"
rand = "0.8.5"
rand_chacha = "0.3.1"
thiserror = "1.0.58"
tokio = { version = "1.37.0", features = ["sync"], optional = true }
# gpu_accel deps
bytemuck = { version = "1.15", optional = true }
naga = { version = "0.19", optional = true }
vulkano = { version = "0.34", optional = true }
log = "0.4.21"
either = "1.12.0"
rayon = "1.10.0"
ball-tree = "0.5.0"
petal-neighbors = "0.10.0"
kdtree = "0.7.0"
phf = {version = "0.11.2", features = ["macros"]}
indexmap = "2.3.0"
neuron-macros = {path = "neuron-macros"}
lru = "0.12.4"
[dev-dependencies]
criterion = "0.3"
[workspace]
members = ["neuron-macros"]