hf_text-generation-inference/router/Cargo.toml

29 lines
736 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"
2022-10-08 04:30:12 -06:00
version = "0.1.0"
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]
2022-10-11 10:14:39 -06:00
axum = { version = "0.5.16", features = ["json", "serde_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"
parking_lot = "0.12.1"
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"] }
2022-10-08 04:30:12 -06:00
tracing = "0.1.36"
tracing-subscriber = { version = "0.3.15", features = ["json"] }
2022-10-08 04:30:12 -06:00