From 7219bca8d19ae441b75093519cb4892db477aba1 Mon Sep 17 00:00:00 2001 From: Chen Chen Date: Wed, 14 Aug 2024 15:46:18 -0500 Subject: [PATCH] *: release 0.2.1 --- Cargo.toml | 12 ++++++------ src/lib.rs | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 875e3b0..3c67d93 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kvbench" -version = "0.2.0" +version = "0.2.1" authors = ["Chen Chen "] description = "A key-value store benchmark framework with customizable workloads" edition = "2021" @@ -19,10 +19,10 @@ rustdoc-args = ["--cfg", "docsrs"] ahash = "0.8.11" bincode = "1.3.3" chashmap = { version = "2.2.2", optional = true } -clap = { version = "=4.5.14", features = ["derive"] } +clap = { version = "4.5.15", features = ["derive"] } contrie = { version = "0.1.4", optional = true } core_affinity = "0.8.1" -ctrlc = "3.4.4" +ctrlc = "3.4.5" dashmap = { version = "6.0.1", features = ["inline"], optional = true } env_logger = "0.11.5" figment = { version = "0.10.19", features = ["toml", "env"] } @@ -31,14 +31,14 @@ hashbrown = "0.14.5" hdrhistogram = "7.5.4" inventory = "0.3.15" log = "0.4.22" -mio = { version = "1.0.1", features = ["net", "os-poll"] } +mio = { version = "1.0.2", features = ["net", "os-poll"] } papaya = { version = "0.1.3", optional = true } parking_lot = "0.12.3" quanta = "0.12.3" rand = "0.8.5" rocksdb = { version = "0.22.0", optional = true } -scc = { version = "2.1.9", optional = true } -serde = { version = "1.0.205", features = ["derive"] } +scc = { version = "2.1.14", optional = true } +serde = { version = "1.0.207", features = ["derive"] } toml = "0.8.19" zipf = "7.0.1" diff --git a/src/lib.rs b/src/lib.rs index f17ea00..6570372 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -159,7 +159,7 @@ //! points of the CDF is different. Therefore, it is printed at the end of the output only. It is //! printed as a tuple of ` ` where `` is the latency in microseconds and //! `` is the percentile of the accumulated operations with latency higher than between -//! ` - 1` and ``, inclusively, ranging from 0 to 100 (two digit precision). +//! ` - 1` and ``, inclusively, ranging from 0 to 100 (two digit precision). //! There can be arbitrary number of tuples. The output ends when the maximum recorded latency is //! reached. //!