27 lines
800 B
TOML
27 lines
800 B
TOML
|
[package]
|
||
|
name = "text-generation-backends-trtllm"
|
||
|
version.workspace = true
|
||
|
edition.workspace = true
|
||
|
authors.workspace = true
|
||
|
homepage.workspace = true
|
||
|
|
||
|
[dependencies]
|
||
|
async-trait = "0.1"
|
||
|
async-stream = "0.3"
|
||
|
cxx = "1.0"
|
||
|
text-generation-router = { path = "../../router" }
|
||
|
tokenizers = { version = "0.19", features = ["hf-hub"] }
|
||
|
tokio = { version = "1.38", features = ["rt", "rt-multi-thread", "parking_lot", "signal", "sync"] }
|
||
|
tokio-stream = "0.1.15"
|
||
|
clap = { version = "4.5", features = ["derive"] }
|
||
|
thiserror = "1.0.62"
|
||
|
tracing = "0.1"
|
||
|
tracing-opentelemetry = "0.24"
|
||
|
tracing-subscriber = { version = "0.3", features = ["json", "env-filter"] }
|
||
|
log = { version = "0.4", features = [] }
|
||
|
|
||
|
[build-dependencies]
|
||
|
cmake = "0.1"
|
||
|
cxx-build = { version = "1.0", features = ["parallel"] }
|
||
|
pkg-config = "0.3"
|