mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-04 12:22:55 +00:00
* feat: simple version switch * chore: remove debug print * chore: add common folder * tests: add drop table * feat: pull versioned binary * chore: don't use native-tls * chore: rm outdated docs * chore: new line * fix: save old bin dir * fix: switch version restart all node * feat: use etcd * fix: wait for election * fix: normal sqlness * refactor: hashmap for bin dir * test: past 3 major version compat crate table * refactor: allow using without setup etcd
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 = "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
|
|
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
|