27 lines
827 B
TOML
27 lines
827 B
TOML
[package]
|
|
name = "text-generation-launcher"
|
|
description = "Text Generation Launcher"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
homepage.workspace = true
|
|
|
|
[dependencies]
|
|
clap = { version = "4.4.5", features = ["derive", "env"] }
|
|
ctrlc = { version = "3.4.1", features = ["termination"] }
|
|
hf-hub = "0.3.2"
|
|
nix = { version = "0.28.0", features = ["signal"] }
|
|
once_cell = "1.19.0"
|
|
serde = { version = "1.0.188", features = ["derive"] }
|
|
serde_json = "1.0.107"
|
|
thiserror = "1.0.59"
|
|
tracing = "0.1.37"
|
|
tracing-subscriber = { version = "0.3.17", features = ["json", "env-filter"] }
|
|
|
|
[dev-dependencies]
|
|
float_eq = "1.0.1"
|
|
reqwest = { version = "0.11.20", features = ["blocking", "json"] }
|
|
|
|
[build-dependencies]
|
|
vergen = { version = "8.2.5", features = ["build", "cargo", "git", "gitcl", "rustc", "si"] }
|