mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2025-12-22 22:20:02 +00:00
* chore: remove patch.crates-io for rustls * enable default-rustls-ring feature for mysql_sync * fix: build error * add comment * update comment
36 lines
1.0 KiB
TOML
36 lines
1.0 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 = "26", default-features = false, features = ["minimal", "rustls-tls-ring"] }
|
|
num_cpus = "1.16"
|
|
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls"] }
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
sha2 = "0.10"
|
|
# wait for https://github.com/CeresDB/sqlness/pull/71
|
|
sqlness = { git = "https://github.com/CeresDB/sqlness.git", rev = "bb91f31ff58993e07ea89845791235138283a24c" }
|
|
tar = "0.4"
|
|
tempfile.workspace = true
|
|
tinytemplate = "1.2"
|
|
tokio.workspace = true
|
|
tokio-postgres = { workspace = true }
|
|
tokio-stream.workspace = true
|