29 lines
834 B
TOML
29 lines
834 B
TOML
[package]
|
|
name = "benchrust"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["iwasforcedtobehere <iwasforcedtobehere@git.gostacks.org>"]
|
|
description = "A delightfully sarcastic CPU benchmarking tool that doesn't take itself too seriously"
|
|
license = "MIT"
|
|
repository = "https://git.gostacks.org/iwasforcedtobehere/benchrust"
|
|
keywords = ["benchmark", "cpu", "performance", "testing", "cli"]
|
|
categories = ["command-line-utilities", "development-tools"]
|
|
|
|
[[bin]]
|
|
name = "benchrust"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
clap = { version = "4.4", features = ["derive", "color"] }
|
|
rayon = "1.8"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
core_affinity = "0.8"
|
|
colored = "2.0"
|
|
indicatif = "0.17"
|
|
anyhow = "1.0"
|
|
num_cpus = "1.16"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
|
|
[dev-dependencies]
|
|
criterion = "0.5" |