mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-06 05:12:54 +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
66 lines
1.4 KiB
TOML
66 lines
1.4 KiB
TOML
[package]
|
|
name = "tests-fuzz"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata]
|
|
cargo-fuzz = true
|
|
|
|
[dependencies]
|
|
arbitrary = { version = "1.3.0", features = ["derive"] }
|
|
async-trait = { workspace = true }
|
|
common-error = { workspace = true }
|
|
common-macro = { workspace = true }
|
|
common-query = { workspace = true }
|
|
common-runtime = { workspace = true }
|
|
common-telemetry = { workspace = true }
|
|
common-time = { workspace = true }
|
|
datatypes = { workspace = true }
|
|
derive_builder = { workspace = true }
|
|
dotenv = "0.15"
|
|
lazy_static = { workspace = true }
|
|
libfuzzer-sys = "0.4"
|
|
partition = { workspace = true }
|
|
rand = { workspace = true }
|
|
rand_chacha = "0.3.1"
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
snafu = { workspace = true }
|
|
sql = { workspace = true }
|
|
sqlparser.workspace = true
|
|
sqlx = { version = "0.6", features = [
|
|
"runtime-tokio-rustls",
|
|
"mysql",
|
|
"postgres",
|
|
"chrono",
|
|
] }
|
|
|
|
[dev-dependencies]
|
|
dotenv.workspace = true
|
|
tokio = { workspace = true }
|
|
|
|
[[bin]]
|
|
name = "fuzz_create_table"
|
|
path = "targets/fuzz_create_table.rs"
|
|
test = false
|
|
bench = false
|
|
doc = false
|
|
|
|
[[bin]]
|
|
name = "fuzz_insert"
|
|
path = "targets/fuzz_insert.rs"
|
|
test = false
|
|
bench = false
|
|
doc = false
|
|
|
|
[[bin]]
|
|
name = "fuzz_alter_table"
|
|
path = "targets/fuzz_alter_table.rs"
|
|
test = false
|
|
bench = false
|
|
doc = false
|