mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-04 20:32:56 +00:00
* feat: introduce wal benchmarker * chore: add log store metrics * chore: add some comments to wal benchmarker * fix: ci * chore: add more metrics for kafka logstore * chore: add more timers for kafka logstore * chore: add more configs * chore: move humantime to common dependencies * refactor: refactor wal benchmarker * fix: apply suggestions from code review * doc: add a simple README for wal benchmarker * fix: Cargo.toml * fix: clippy * chore: rename wal.rs to wal_bench.rs * fix: compile
39 lines
861 B
TOML
39 lines
861 B
TOML
[package]
|
|
name = "benchmarks"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
api.workspace = true
|
|
arrow.workspace = true
|
|
chrono.workspace = true
|
|
clap.workspace = true
|
|
client.workspace = true
|
|
common-base.workspace = true
|
|
common-telemetry.workspace = true
|
|
common-wal.workspace = true
|
|
dotenv.workspace = true
|
|
futures.workspace = true
|
|
futures-util.workspace = true
|
|
humantime.workspace = true
|
|
humantime-serde.workspace = true
|
|
indicatif = "0.17.1"
|
|
itertools.workspace = true
|
|
lazy_static.workspace = true
|
|
log-store.workspace = true
|
|
mito2.workspace = true
|
|
num_cpus.workspace = true
|
|
parquet.workspace = true
|
|
prometheus.workspace = true
|
|
rand.workspace = true
|
|
rskafka.workspace = true
|
|
serde.workspace = true
|
|
store-api.workspace = true
|
|
tokio.workspace = true
|
|
toml.workspace = true
|
|
uuid.workspace = true
|