This commit is contained in:
Dev
2025-09-13 00:48:20 +03:00
commit eea9356e8d
9 changed files with 1148 additions and 0 deletions

29
Cargo.toml Normal file
View File

@@ -0,0 +1,29 @@
[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"