hf_text-generation-inference/router/Cargo.toml

35 lines
929 B
TOML
Raw Normal View History

2022-10-08 04:30:12 -06:00
[package]
2022-10-17 06:59:00 -06:00
name = "text-generation-router"
version = "0.2.0"
2022-10-08 04:30:12 -06:00
edition = "2021"
2022-10-17 10:27:33 -06:00
authors = ["Olivier Dehaene"]
description = "Text Generation Webserver"
2022-10-08 04:30:12 -06:00
2022-10-17 06:59:00 -06:00
[lib]
path = "src/lib.rs"
[[bin]]
name = "text-generation-router"
path = "src/main.rs"
2022-10-08 04:30:12 -06:00
[dependencies]
async-stream = "0.3.3"
axum = { version = "0.6.4", features = ["json"] }
text-generation-client = { path = "client" }
2022-10-17 10:27:33 -06:00
clap = { version = "4.0.15", features = ["derive", "env"] }
2022-10-08 04:30:12 -06:00
futures = "0.3.24"
nohash-hasher = "0.2.0"
2022-10-08 04:30:12 -06:00
parking_lot = "0.12.1"
rand = "0.8.5"
2022-10-08 04:30:12 -06:00
serde = "1.0.145"
serde_json = "1.0.85"
2022-10-17 06:59:00 -06:00
thiserror = "1.0.37"
2022-10-08 04:30:12 -06:00
tokenizers = "0.13.0"
2022-10-18 07:19:03 -06:00
tokio = { version = "1.21.1", features = ["rt", "rt-multi-thread", "parking_lot", "signal", "sync"] }
tokio-stream = "0.1.11"
2022-10-08 04:30:12 -06:00
tracing = "0.1.36"
tracing-subscriber = { version = "0.3.15", features = ["json"] }
utoipa = { version = "3.0.1", features = ["axum_extras"] }
utoipa-swagger-ui = { version = "3.0.2", features = ["axum"] }
2022-10-08 04:30:12 -06:00