-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
44 lines (38 loc) · 973 Bytes
/
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
[package]
name = "cetana"
version = "0.0.0"
edition = "2021"
description = "Yet Another Neural Network Library"
license = "Apache-2.0"
categories = ["science"]
build = "build.rs"
authors = ["SkuldNorniern <skuldnorniern@gmail.com>"]
[features]
default = ["cpu"]
cpu = []
cuda = []
vulkan = ["dep:ash", "dep:vulkano"]
mps = ["dep:metal"]
wgpu = []
opencl = []
rayon = ["dep:rayon"]
[dependencies]
aporia = "0.1.1"
ash = { version = "0.38.0", optional = true, features = ["linked","debug","std"] }
log = "0.4.22"
metal = { version = "0.30.0", optional = true, features = ["mps"] }
rayon = { version = "1.10.0", optional = true }
vulkano = { version = "0.34.1", optional = true }
[dev-dependencies]
csv = "1.3"
rand = "0.8.5"
pinax = "0.1.0"
flate2 = "1.0.34"
reqwest = { version = "0.12.9", features = ["json","blocking"] }
tokio = { version = "1.41.0", features = ["full"] }
[build-dependencies]
cmake = "0.1"
[profile.dev]
debug = true
[profile.release]
opt-level = 3