-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (23 loc) · 727 Bytes
/
Copy pathCargo.toml
File metadata and controls
27 lines (23 loc) · 727 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
[package]
name = "chat"
version = "0.7.0"
edition = "2021"
description = "Example: chat for llama-cpp-4"
license = "MIT OR Apache-2.0"
publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
llama-cpp-4 = { path = "../../llama-cpp-4", version = "0.7.0" }
llama-cpp-sys-4 = { path = "../../llama-cpp-sys-4", version = "0.7.0" }
hf-hub = { workspace = true }
clap = { workspace = true , features = ["derive"] }
anyhow = { workspace = true }
encoding_rs = { workspace = true }
colored = "3.1.1"
[features]
cuda = ["llama-cpp-4/cuda"]
metal = ["llama-cpp-4/metal"]
native = ["llama-cpp-4/native"]
vulkan = ["llama-cpp-4/vulkan"]
[lints]
workspace = true