forked from pkolaczk/latte
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(cherry picked from commit 30491eb) Upd: - Fix 'blob' function usage by adding missing parser for the 'Vec<u8>' input values which must match 'CqlValue::Blob' type.
- Loading branch information
1 parent
15d4277
commit 208bf17
Showing
7 changed files
with
468 additions
and
287 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "latte-cli" | ||
description = "A database benchmarking tool for Apache Cassandra" | ||
version = "0.27.0-scylladb" | ||
version = "0.28.0-scylladb" | ||
authors = ["Piotr Kołaczkowski <[email protected]>"] | ||
edition = "2021" | ||
readme = "README.md" | ||
|
@@ -38,7 +38,7 @@ plotters = "0.3.4" | |
plotters-svg = "0.3.3" | ||
rand = "0.8" | ||
regex = "1.5" | ||
rune = "0.12" | ||
rune = "0.13" | ||
rust-embed = "8" | ||
scylla = { version = "0.13", features = ["ssl"] } | ||
search_path = "0.1" | ||
|
@@ -54,7 +54,7 @@ tokio = { version = "1", features = ["rt", "rt-multi-thread", "time", "parking_l | |
tokio-stream = "0.1" | ||
tracing = "0.1" | ||
tracing-appender = "0.2" | ||
tracing-subscriber = "0.3" | ||
tracing-subscriber = { version = "0.3", features = ["env-filter"] } | ||
try-lock = "0.2.3" | ||
uuid = { version = "1.1", features = ["v4"] } | ||
walkdir = "2" | ||
|
Oops, something went wrong.