Files
greptimedb/tests-integration/Cargo.toml
Ning Sun 75dcf2467b refactor: add tests-integration module (#590)
* refactor: add integration-tests module

* Apply suggestions from code review

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

* test: move grpc module to tests-integration

* test: adapt new standalone mode

* test: improve http assertion

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2022-11-29 16:28:58 +08:00

28 lines
925 B
TOML

[package]
name = "tests-integration"
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"
[dependencies]
api = { path = "../src/api" }
axum = "0.6.0-rc.2"
axum-test-helper = { git = "https://github.com/sunng87/axum-test-helper.git", branch = "patch-1" }
catalog = { path = "../src/catalog" }
client = { path = "../src/client" }
common-catalog = { path = "../src/common/catalog" }
common-runtime = { path = "../src/common/runtime" }
common-telemetry = { path = "../src/common/telemetry" }
datanode = { path = "../src/datanode" }
datatypes = { path = "../src/datatypes" }
frontend = { path = "../src/frontend" }
mito = { path = "../src/mito", features = ["test"] }
serde = "1.0"
serde_json = "1.0"
servers = { path = "../src/servers" }
snafu = { version = "0.7", features = ["backtraces"] }
sql = { path = "../src/sql" }
table = { path = "../src/table" }
tempdir = "0.3"
tokio = { version = "1.20", features = ["full"] }