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"] }
|
2022-10-08 04:30:12 -06:00
|
|
|
bloom-inference-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"
|
|
|
|
tokio = { version = "1.21.1", features = ["rt-multi-thread", "parking_lot", "sync"] }
|
|
|
|
tracing = "0.1.36"
|
|
|
|
tracing-subscriber = "0.3.15"
|
|
|
|
|
|
|
|
[workspace]
|
|
|
|
members = [
|
|
|
|
"client",
|
|
|
|
]
|
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
debug = 1
|
|
|
|
incremental = true
|
|
|
|
lto = "off"
|