mirror of
https://github.com/huggingface/text-generation-inference.git
synced 2025-05-29 02:02:08 +00:00
This PR just bumps the latest rust version and makes clippy happy ```bash cargo clippy --all -- -D warnings # Finished dev [unoptimized + debuginfo] target(s) in 0.10s ```
22 lines
368 B
TOML
22 lines
368 B
TOML
[workspace]
|
|
members = [
|
|
"benchmark",
|
|
"router",
|
|
"router/client",
|
|
"router/grpc-metadata",
|
|
"launcher"
|
|
]
|
|
resolver = "2"
|
|
|
|
[workspace.package]
|
|
version = "1.3.4"
|
|
edition = "2021"
|
|
authors = ["Olivier Dehaene"]
|
|
homepage = "https://github.com/huggingface/text-generation-inference"
|
|
|
|
[profile.release]
|
|
debug = 1
|
|
incremental = true
|
|
lto = "off"
|
|
panic = "abort"
|