preemo_text-generation-infe.../router/Cargo.toml

27 lines
536 B
TOML
Raw Normal View History

2022-10-08 04:30:12 -06:00
[package]
name = "bloom-inference"
version = "0.1.0"
edition = "2021"
[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" }
futures = "0.3.24"
parking_lot = "0.12.1"
serde = "1.0.145"
serde_json = "1.0.85"
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"