mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-08 22:32:55 +00:00
* refactor: move Database to client crate behind testing feature Signed-off-by: tison <wander4096@gmail.com> * partial move Signed-off-by: tison <wander4096@gmail.com> * catch up more Signed-off-by: tison <wander4096@gmail.com> * fix imports Signed-off-by: tison <wander4096@gmail.com> * finish Signed-off-by: tison <wander4096@gmail.com> * tidy Signed-off-by: tison <wander4096@gmail.com> --------- Signed-off-by: tison <wander4096@gmail.com>
24 lines
523 B
TOML
24 lines
523 B
TOML
[package]
|
|
name = "sqlness-runner"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
async-trait = "0.1"
|
|
clap.workspace = true
|
|
client = { workspace = true, features = ["testing"] }
|
|
common-error.workspace = true
|
|
common-query.workspace = true
|
|
common-recordbatch.workspace = true
|
|
common-time.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
sqlness = { version = "0.5" }
|
|
tempfile.workspace = true
|
|
tinytemplate = "1.2"
|
|
tokio.workspace = true
|