Cargo.toml 888 Bytes
Newer Older
1
2
3
[package]
name = "text-generation-benchmark"
description = "Text Generation Benchmarking tool"
4
5
6
7
version.workspace = true
edition.workspace = true
authors.workspace = true
homepage.workspace = true
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24

[lib]
path = "src/lib.rs"

[[bin]]
name = "text-generation-benchmark"
path = "src/main.rs"

[dependencies]
average = "0.13"
clap = { version = "4.1.4", features = ["derive", "env"] }
crossterm = "0.26"
float-ord = "0.3.2"
serde = {version = "1.0.142", features = ["derive"]}
serde_json = "1.0"
text-generation-client = { path = "../router/client" }
thiserror = "1.0.38"
25
tokenizers = "0.13.3"
26
27
28
29
30
tokio = { version = "1.25.0", features = ["rt", "rt-multi-thread", "parking_lot", "signal", "sync"] }
tui = {package = "ratatui", version = "0.20", default-features = false, features = ["crossterm"]}
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.16", features = ["json", "env-filter"] }