-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathCargo.toml
62 lines (57 loc) · 1.39 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[workspace.package]
# All but mlx-sys should follow the same version. mlx-sys should follow
# the version of mlx-c.
version = "0.21.0"
edition = "2021"
authors = [
"Minghua Wu <[email protected]>",
"David Chavez <[email protected]>",
]
repository = "https://github.com/oxideai/mlx-rs"
keywords = ["mlx", "deep-learning", "machine-learning"]
categories = ["science"]
license = "MIT OR Apache-2.0"
documentation = "https://oxideai.github.io/mlx-rs/mlx_rs/"
[workspace]
members = [
"mlx-macros",
"mlx-sys",
"mlx-rs",
"mlx-internal-macros",
"mlx-tests",
"examples/*",
]
resolver = "2"
[workspace.dependencies]
# workspace local dependencies
mlx-sys = { version = "0.1.0", path = "mlx-sys" }
mlx-macros = { version = "0.21.0", path = "mlx-macros" }
mlx-internal-macros = { version = "0.21.0", path = "mlx-internal-macros" }
mlx-rs = { version = "0.21.0", path = "mlx-rs" }
# external dependencies
thiserror = "1"
float_eq = "1"
pretty_assertions = "1.4.0"
dyn-clone = "1"
half = "2"
mach-sys = "0.5"
num-complex = "0.4"
num_enum = "0.7"
num-traits = "0.2"
paste = "1"
smallvec = "1"
strum = { version = "0.26", features = ["derive"] }
libc = "0.2"
parking_lot = "0.12"
tempfile = "3"
itertools = "0.14"
syn = { version = "2", features = ["full"] }
quote = "1"
darling = "0.20"
proc-macro2 = "1"
bindgen = "0.70"
cmake = "0.1"
cc = "1"
safetensors = "0.5"
bytemuck = "1"
memmap2 = "0.9"