-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
65 lines (60 loc) · 1.79 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
63
64
65
[workspace]
members = [
"rai",
"rai-core",
"rai-nn",
"rai-opt",
"rai-models",
"rai-datasets",
"rai-derive",
"examples/*",
]
resolver = "2"
[workspace.package]
version = "0.11.0"
edition = "2021"
readme = "README.md"
license = "MIT OR Apache-2.0"
categories = ["science"]
[workspace.dependencies]
rai-core = { path = "rai-core", version = "0.11.0" }
rai-derive = { path = "rai-derive", version = "0.11.0" }
rai-nn = { path = "rai-nn", version = "0.11.0" }
rai-opt = { path = "rai-opt", version = "0.11.0" }
rai = { path = "rai", version = "0.11.0" }
rai-models = { path = "rai-models", version = "0.11.0" }
rai-datasets = { path = "rai-datasets", version = "0.11.0" }
safetensors = "0.4"
candle-core = { version = "0.6" }
candle-flash-attn = { version = "0.6" }
candle-nn = { version = "0.6" }
candle-datasets = { version = "0.6" }
paste = "1.0"
dyn-clone = "1.0.16"
once_cell = "1.19.0"
thiserror = "1.0.51"
anyhow = { version = "1", features = ["backtrace"] }
criterion = "0.3"
tracing = "0.1.40"
tracing-tree = "0.3.0"
tracing-test = "0.1"
tracing-subscriber = "0.3.18"
colored = "2.1.0"
tokenizers = { version = "0.15.0", features = ["onig"] }
clap = { version = "4.2.4", features = ["derive"] }
hf-hub = "0.3.0"
serde = { version = "1.0.171", features = ["derive"] }
serde_json = "1.0.99"
half = { version = "2.3.1", features = ["num-traits", "use-intrinsics", "rand_distr"] }
num-traits = "0.2.17"
image = { version = "0.24.7", default-features = false, features = ["jpeg", "png"] }
imageproc = { version = "0.23.0", default-features = false }
reqwest = { version = "0.11", features = ["blocking", "json"] }
parquet = { version = "50.0.0" }
rand = "0.8.5"
rustc-hash = "2.0"
[profile.release-with-debug]
inherits = "release"
debug = true
[workspace.metadata.workspaces]
no_individual_tags = true