Skip to content

Commit

Permalink
*: release 0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nerdroychan committed Aug 14, 2024
1 parent 6da0660 commit 7219bca
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kvbench"
version = "0.2.0"
version = "0.2.1"
authors = ["Chen Chen <[email protected]>"]
description = "A key-value store benchmark framework with customizable workloads"
edition = "2021"
Expand All @@ -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"] }
Expand All @@ -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"

Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 `<us> <percentile>` where `<us>` is the latency in microseconds and
//! `<percentile>` is the percentile of the accumulated operations with latency higher than between
//! `<ns> - 1` and `<ns>`, inclusively, ranging from 0 to 100 (two digit precision).
//! `<us> - 1` and `<us>`, 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.
//!
Expand Down

0 comments on commit 7219bca

Please sign in to comment.