Files
greptimedb/tests-integration/Cargo.toml
Vanish 6aae5b7286 feat: prevent sensitive information (key, password, secrets etc.) from being printed in plain (#1501)
* feat: add secret type

* chore: replace key, password, secrets with secret type.

* chore: use secrecy

* chore: remove redundant file

* style: taplo fmt
2023-05-01 20:54:54 +08:00

44 lines
1.3 KiB
TOML

[package]
name = "tests-integration"
version.workspace = true
edition.workspace = true
license.workspace = true
[features]
dashboard = []
[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-error = { path = "../src/common/error" }
common-grpc = { path = "../src/common/grpc" }
common-query = { path = "../src/common/query" }
common-runtime = { path = "../src/common/runtime" }
common-telemetry = { path = "../src/common/telemetry" }
common-test-util = { path = "../src/common/test-util" }
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.workspace = true
secrecy = "0.8"
serde.workspace = true
serde_json = "1.0"
servers = { path = "../src/servers" }
snafu.workspace = true
sql = { path = "../src/sql" }
table = { path = "../src/table" }
tempfile.workspace = true
tokio.workspace = true
uuid.workspace = true
[dev-dependencies]
paste.workspace = true