forked from mlx-node/mlx-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
53 lines (48 loc) · 1.44 KB
/
Copy pathCargo.toml
File metadata and controls
53 lines (48 loc) · 1.44 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
[workspace]
members = ["crates/*"]
resolver = "3"
[workspace.package]
rust-version = "1.89.0"
edition = "2024"
version = "0.0.0"
[workspace.dependencies]
cc = "1"
criterion = "0.8"
cmake = "0.1"
futures = "0.3"
half = "2.4"
libc = "0.2"
mimalloc-safe = { version = "0.1" }
parquet = { version = "59", features = ["arrow"] }
rand = "0.10"
serde_json = { version = "1", features = ["preserve_order"] }
serde = { version = "1", features = ["derive"] }
thiserror = "2"
tokio = { version = "1.48", features = ["rt-multi-thread", "macros", "sync"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3.19", default-features = false, features = [
"std",
"fmt",
"json",
] }
tokenizers = "0.23"
minijinja = { version = "2.5", features = ["json", "preserve_order"] }
uuid = { version = "1.11", features = ["v4"] }
regex = "1.11"
sqlx = { version = "0.9", features = ["runtime-tokio", "sqlite"] }
unicode-width = "0.2.2"
rust_xlsxwriter = "0.95.0"
image = { version = "0.25", default-features = false, features = ["jpeg", "png", "webp"] }
zip = { version = "8", default-features = false, features = ["deflate"] }
# NAPI-RS
napi = { version = "3", features = ["napi10", "async", "tokio_fs", "serde-json"] }
napi-derive = "3"
napi-build = "2"
# Workspace packages
mlx-sys = { path = "crates/mlx-sys" }
mlx-core = { path = "crates/mlx-core" }
mlx-paged-attn = { path = "crates/mlx-paged-attn" }
mlx-db = { path = "crates/mlx-db" }
[profile.release]
lto = true
codegen-units = 1