33 lines
946 B
TOML
33 lines
946 B
TOML
[package]
|
|
name = "text-generation-backend-llamacpp"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
homepage.workspace = true
|
|
|
|
[dependencies]
|
|
async-trait = "0.1"
|
|
async-channel = "2.3"
|
|
clap = { version = "4.5.19", features = ["derive"] }
|
|
cxx = "1.0"
|
|
num_cpus = "1"
|
|
hf-hub = { workspace = true }
|
|
image = { version = "0.25.1", features = ["default-formats"] }
|
|
metrics = { workspace = true }
|
|
metrics-exporter-prometheus = { workspace = true }
|
|
serde_json = "1.0.128"
|
|
text-generation-router = { path = "../../router" }
|
|
thiserror = "1.0.64"
|
|
tokio = "1.40.0"
|
|
tokio-stream = "0.1.16"
|
|
tokenizers = { workspace = true }
|
|
tracing = "0.1"
|
|
tracing-opentelemetry = "0.27.0"
|
|
tracing-subscriber = { version = "0.3", features = ["json", "env-filter"] }
|
|
utoipa = { version = "4.2.3", features = ["axum_extras"] }
|
|
log = "0.4.22"
|
|
|
|
[build-dependencies]
|
|
cmake = "0.1"
|
|
cxx-build = { version = "1.0", features = ["parallel"] }
|
|
pkg-config = "0.3" |