-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
43 lines (41 loc) · 1.54 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
[workspace]
members = [
"candle-holder",
"candle-holder-examples",
"candle-holder-models",
"candle-holder-pipelines",
"candle-holder-tokenizers",
"candle-holder-serve",
]
resolver = "2"
[workspace.package]
version = "0.1.0"
edition = "2021"
authors = ["Gabriel Martín Blázquez"]
description = "transformers-like library for Rust using candle"
keywords = ["nlp", "transformers", "rust", "candle"]
categories = ["science"]
license = "MIT OR Apache-2.0"
[workspace.dependencies]
anyhow = { version = "1.0.86" }
candle-core = { git = "https://github.com/huggingface/candle", package = "candle-core" }
candle-nn = { git = "https://github.com/huggingface/candle", package = "candle-nn" }
candle-metal-kernels = { git = "https://github.com/huggingface/candle", package = "candle-metal-kernels" }
candle-flash-attn = { git = "https://github.com/huggingface/candle", package = "candle-flash-attn" }
dyn-fmt = "0.4.0"
hf-hub = "0.3.2"
lazy_static = "1.4.0"
serde = { version = "1.0.192", features = ["derive"] }
serde_json = "1.0.108"
tokenizers = { version = "0.20.0", features = ["http"] }
thiserror = "1.0.61"
accelerate-src = { version = "0.3.2" }
intel-mkl-src = { version = "0.8.1", features = ["mkl-static-lp64-iomp"] }
minijinja = "2.2.0"
minijinja-contrib = { version = "2.2.0", features = ["pycompat"] }
clap = { version = "4.5.16", features = ["derive"] }
axum = { version = "0.7.5", features = ["http2"] }
tokio = { version = "1.40.0", features = ["full"] }
tracing = { version = "0.1.40" }
tracing-subscriber = { version = "0.3.18" }
rand = "0.8.5"