-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathCargo.toml
43 lines (38 loc) · 846 Bytes
/
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
[package]
authors = ["mdrokz <[email protected]>"]
name = "llama_cpp_rs"
description = "Rust bindings for LLAMA.CPP inference"
categories = [
"api-bindings",
"development-tools::ffi",
"development-tools::build-utils",
"science",
]
keywords = [
"machine-learning",
"api-bindings",
"llama",
"llama-cpp",
"inference",
]
exclude = ["/examples", "/example_test"]
license-file = "LICENSE"
readme = "README.md"
repository = "https://github.com/mdrokz/rust-llama.cpp"
version = "0.3.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
lazy_static = "1.4.0"
[build-dependencies]
cc = "1.0.79"
bindgen = "0.66.1"
[lib]
name = "llama_cpp_rs"
path = "src/lib.rs"
[features]
opencl = []
cuda = []
metal = []
openblas = []
blis = []