mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-06 05:12:54 +00:00
* feat: wrapped sqlness with clap to provide nice interface * fix: added spaces and changed -f flag to bool
21 lines
541 B
TOML
21 lines
541 B
TOML
[package]
|
|
name = "sqlness-runner"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
async-trait = "0.1"
|
|
clap = { version = "4.0", features = ["derive"] }
|
|
client = { workspace = true }
|
|
common-base = { workspace = true }
|
|
common-error = { workspace = true }
|
|
common-grpc = { workspace = true }
|
|
common-query = { workspace = true }
|
|
common-recordbatch = { workspace = true }
|
|
common-time = { workspace = true }
|
|
serde.workspace = true
|
|
sqlness = { version = "0.5" }
|
|
tinytemplate = "1.2"
|
|
tokio.workspace = true
|