forked from huggingface/text-embeddings-inference
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (28 loc) · 1.21 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
[workspace]
members = [
"backends",
"backends/candle",
"backends/core",
"backends/python",
"backends/grpc-client",
"core",
"router",
]
resolver = "2"
[workspace.package]
version = "0.6.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 = "c19522f1e411ab453d71bdfad3383b118cd4216f" }
candle = { git = "https://github.com/OlivierDehaene/candle", rev = "7a181166d96480ec0302b496469427b3db0ab71b", package = "candle-core" }
candle-nn = { git = "https://github.com/OlivierDehaene/candle", rev = "7a181166d96480ec0302b496469427b3db0ab71b", package = "candle-nn" }
candle-transformers = { git = "https://github.com/OlivierDehaene/candle", rev = "7a181166d96480ec0302b496469427b3db0ab71b", package = "candle-transformers" }
candle-flash-attn = { git = "https://github.com/OlivierDehaene/candle", rev = "7a181166d96480ec0302b496469427b3db0ab71b", package = "candle-flash-attn" }
hf-hub = { git = "https://github.com/huggingface/hf-hub", rev = "b167f69692be5f49eb8003788f7f8a499a98b096" }
[profile.release]
debug = 1
incremental = true
lto = "off"
panic = "abort"