-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
39 lines (36 loc) · 1.08 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[package]
name = "inference-benchmarker"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
reqwest-eventsource = "0.6.0"
log = "0.4.22"
serde_json = "1.0.127"
serde = { version = "1.0.209", features = ["derive"] }
tokio = { version = "1.40.0", features = ["rt", "rt-multi-thread", "macros", "signal"] }
anyhow = "1.0.86"
tokenizers = { version = "0.20.2", features = ["http"] }
rand_distr = "0.4.3"
rand = "0.8.5"
futures-util = "0.3.30"
env_logger = "0.11.5"
trait-variant = "0.1.2"
async-trait = "0.1.82"
reqwest = { version = "0.12.7", features = ["json"] }
tokio-stream = "0.1.16"
strum_macros = "0.26.4"
clap = { version = "4.5.17", features = ["derive","env"] }
humantime = "2.1.0"
ratatui = { version = "0.28.1", features = ["all-widgets"] }
crossterm = "0.28.1"
chrono = "0.4.38"
hf-hub = { version = "0.3.2", features = ["tokio"] }
indicatif = "0.17.8"
rayon = "1.10.0"
serde_with = "3.9.0"
sysinfo = "0.31.4"
mockito = "1.5.0"
tabled = "=0.14"
[build-dependencies]
vergen-gitcl = { version = "1.0.1" }