mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2025-12-28 00:42:56 +00:00
* remove `Database` in `cli export` * move `Database` to tests-integration * fix clippy * move `DatabaseClient` along with `Database` * `cli export` now use http api * add TODO for `tests-integration` dependencies * cleanup code * 'cli export' test use http api * remove unsed dependencies in cmd crate * apply review comments and clean code * remove unused methods Signed-off-by: tison <wander4096@gmail.com> --------- Signed-off-by: tison <wander4096@gmail.com> Co-authored-by: tison <wander4096@gmail.com>
41 lines
928 B
TOML
41 lines
928 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
|
|
# TODO depend `Database` client
|
|
tests-integration.workspace = true
|
|
tokio.workspace = true
|
|
toml.workspace = true
|
|
uuid.workspace = true
|