Files
greptimedb/tests-integration/Cargo.toml
dennis zhuang 2e17e9c4b5 feat: supports s3 storage (#656)
* feat: adds s3 object storage configuration

* feat: adds s3 integration test

* chore: use map

* fix: forgot license header

* fix: checking if bucket is empty in test_on

* chore: address CR issues

* refactor: run s3 test with dotenv

* chore: randomize grpc port for test

* fix: README in tests-integration

* chore: remove redundant comments
2022-12-01 10:59:14 +08:00

36 lines
1.1 KiB
TOML

[package]
name = "tests-integration"
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"
[dependencies]
api = { path = "../src/api" }
axum = "0.6"
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" }
dotenv = "0.15"
frontend = { path = "../src/frontend" }
mito = { path = "../src/mito", features = ["test"] }
object-store = { path = "../src/object-store" }
once_cell = "1.16"
rand = "0.8"
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"] }
uuid = { version = "1", features = ["serde", "v4"] }
[dev-dependencies]
paste = "1.0"