forked from huggingface/text-embeddings-inference
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
30 lines (27 loc) · 1.09 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
[workspace]
members = [
"backends",
"backends/candle",
"backends/core",
"backends/python",
"backends/grpc-client",
"core",
"router",
]
resolver = "2"
[workspace.package]
version = "0.2.0"
edition = "2021"
authors = ["Olivier Dehaene"]
homepage = "https://github.com/huggingface/text-embeddings-inference"
[patch.crates-io]
cudarc = { git = "https://github.com/OlivierDehaene/cudarc", rev = "4c8e6d36a4a4c31e2e4649ae5246226452a01fc1" }
candle = { git = "https://github.com/huggingface/candle", rev = "122da875806f274a7aa9048f76d7a676b473e56f", package = "candle-core" }
candle-nn = { git = "https://github.com/huggingface/candle", rev = "122da875806f274a7aa9048f76d7a676b473e56f", package = "candle-nn" }
candle-transformers = { git = "https://github.com/huggingface/candle", rev = "122da875806f274a7aa9048f76d7a676b473e56f", package = "candle-transformers" }
candle-flash-attn = { git = "https://github.com/huggingface/candle", rev = "122da875806f274a7aa9048f76d7a676b473e56f", package = "candle-flash-attn" }
[profile.release]
debug = 1
incremental = true
lto = "off"
panic = "abort"