mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-09 06:42:57 +00:00
34 lines
1.1 KiB
TOML
34 lines
1.1 KiB
TOML
[package]
|
|
name = "sqlness-runner"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
async-trait.workspace = true
|
|
clap.workspace = true
|
|
client = { workspace = true, features = ["testing"] }
|
|
common-error.workspace = true
|
|
common-query.workspace = true
|
|
common-recordbatch.workspace = true
|
|
common-time.workspace = true
|
|
datatypes = { workspace = true }
|
|
flate2 = "1.0"
|
|
hex = "0.4"
|
|
local-ip-address = "0.6"
|
|
mysql = { version = "25.0.1", default-features = false, features = ["minimal", "rustls-tls"] }
|
|
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls"] }
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
sha2 = "0.10"
|
|
sqlness = "0.6.1" # 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
|
|
tar = "0.4"
|
|
tempfile.workspace = true
|
|
tinytemplate = "1.2"
|
|
tokio.workspace = true
|
|
tokio-postgres = { workspace = true }
|
|
tokio-stream.workspace = true
|