mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-07 13:52:59 +00:00
* tests: flow sqlness tests * tests: WIP df func test * fix: use schema before expand for transform expr * tests: some basic flow tests * tests: unit test * chore: dep use rev not patch * fix: wired sqlness error? * refactor: per review * fix: temp sqlness bug * fix: use fixed sqlness * fix: impl drop as async shutdown * refactor: per bot's review * tests: drop worker handler both sync/async * docs: add rationale for test * refactor: per review * chore: fmt
25 lines
644 B
TOML
25 lines
644 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 0.6.0 have a bug causing `cargo sqlness` to fail(see https://github.com/CeresDB/sqlness/issues/68) which is fixed in 0.6.1
|
|
sqlness = "0.6.1"
|
|
tempfile.workspace = true
|
|
tinytemplate = "1.2"
|
|
tokio.workspace = true
|