-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (38 loc) · 765 Bytes
/
Cargo.toml
File metadata and controls
45 lines (38 loc) · 765 Bytes
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
[package]
name = "mlxcel-core"
version = "0.1.0"
edition = "2021"
description = "Low-level MLX building blocks for mlxcel"
license = "Apache-2.0"
[lib]
crate-type = ["lib"]
[features]
default = []
metal = []
accelerate = []
cuda = []
[dependencies]
cxx = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
unicode-script = "0.5"
smallvec = { version = "1.13", features = ["serde"] }
sha2 = "0.11"
thiserror = "2.0"
tokenizers = "0.22.2"
bincode = "1"
dirs = "5"
libm = "0.2"
tracing = "0.1"
[dev-dependencies]
tempfile = "3"
tracing-test = "0.2"
[build-dependencies]
cxx-build = "1.0"
cmake = "0.1"
[[example]]
name = "benchmark"
path = "examples/benchmark.rs"
[[example]]
name = "wht_microbench"
path = "examples/wht_microbench.rs"