forked from utilityai/llama-cpp-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (32 loc) · 783 Bytes
/
Cargo.toml
File metadata and controls
37 lines (32 loc) · 783 Bytes
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
[workspace]
resolver = "2"
members = [
"llama-cpp-bindings-build",
"llama-cpp-bindings-sys",
"llama-cpp-bindings",
]
[workspace.package]
edition = "2024"
[workspace.dependencies]
# core
encoding_rs = "0.8.35"
enumflags2 = "0.7.12"
llama-cpp-bindings = { path = "llama-cpp-bindings", version = "0.4.1" }
llama-cpp-bindings-sys = { path = "llama-cpp-bindings-sys", version = "0.4.1" }
thiserror = "2"
tracing = "0.1"
tracing-core = "0.1"
# build
bindgen = "0.72.1"
cc = "1.2.58"
cmake = "0.1"
find_cuda_helper = "0.2.0"
glob = "0.3.3"
llama-cpp-bindings-build = { path = "llama-cpp-bindings-build", version = "0.4.1" }
walkdir = "2"
# dev
anyhow = "1.0.102"
hf-hub = "0.5.0"
serde_json = "1.0"
serial_test = "3"
tracing-subscriber = { version = "0.3", features = ["json"] }