-
-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathCargo.toml
More file actions
67 lines (64 loc) · 2.02 KB
/
Copy pathCargo.toml
File metadata and controls
67 lines (64 loc) · 2.02 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[workspace]
members = [
"crates/aarambh-studio-core",
"crates/aarambh-studio-tokenizer",
"crates/aarambh-studio-data",
"crates/aarambh-studio-nn",
"crates/aarambh-studio-kernel",
"crates/aarambh-studio-model",
"crates/aarambh-studio-weights",
"crates/aarambh-studio-quant",
"crates/aarambh-studio-train",
"crates/aarambh-studio-finetune",
"crates/aarambh-studio-inference",
"crates/aarambh-studio-agent",
"crates/aarambh-studio-safety",
"crates/aarambh-studio-selflearn",
"crates/aarambh-studio-eval",
"crates/aarambh-studio-vision",
"crates/aarambh-studio-audio",
"crates/aarambh-studio-distill",
"crates/aarambh-studio-serve",
"aarambh-studio",
]
resolver = "2"
[workspace.package]
version = "4.0.0-alpha.3"
edition = "2024"
rust-version = "1.89"
description = "From first principles. From zero. From Rust."
[workspace.dependencies]
candle-core = { version = "0.10" }
candle-nn = { version = "0.10" }
half = "2"
tokenizers = "0.22"
anyhow = "1"
thiserror = "2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
csv = "1"
toml = "0.8"
tokio = { version = "1", features = ["full"] }
clap = { version = "4", features = ["derive"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
rayon = "1"
cc = "1"
which = "6"
criterion = "0.5"
sha2 = "0.10"
image = { version = "0.25", default-features = false, features = ["jpeg", "png"] }
hayro = { version = "=0.4.0", features = ["jpeg2000"] }
mp4 = "=0.14.0"
openh264 = "=0.9.7"
axum = "=0.8.9"
tower = "0.5"
tower-http = "0.7"
tokio-stream = "0.1"
futures-util = "0.3"
http-body-util = "0.1"
[profile.release]
opt-level = 3
lto = "thin"
codegen-units = 1
strip = "debuginfo"