harmony/iobench/Cargo.toml
Jean-Gabriel Gill-Couture 9a610661c7
All checks were successful
Run Check Script / check (pull_request) Successful in 1m1s
chore: Add description and license fields to Cargo.toml to allow publishing the crate
2025-08-19 12:12:41 -04:00

18 lines
466 B
TOML

[package]
name = "iobench"
edition = "2024"
version = "1.0.0"
license = "AGPL-3.0-or-later"
description = "A small command line utility to run fio benchmarks on localhost or remote ssh or kubernetes host. Was born out of a need to benchmark various ceph configurations!"
[dependencies]
clap = { version = "4.0", features = ["derive"] }
chrono = "0.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
csv = "1.1"
num_cpus = "1.13"
[workspace]