2023-09-03 01:59:07 +00:00
|
|
|
[package]
|
|
|
|
|
name = "llama-cpp-bindings"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
|
cxx-build = "1.0"
|
|
|
|
|
cmake = "0.1"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
cxx = "1.0"
|
|
|
|
|
async-trait = { workspace = true }
|
|
|
|
|
tokio = { workspace = true, features = ["rt"] }
|
|
|
|
|
tabby-inference = { path = "../tabby-inference" }
|
|
|
|
|
derive_builder = { workspace = true }
|
|
|
|
|
tokenizers = { workspace = true }
|
|
|
|
|
stop-words = { version = "0.1.0", path = "../stop-words" }
|
2023-09-03 02:15:54 +00:00
|
|
|
tokio-util = { workspace = true }
|