mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-05 21:02:58 +00:00
* feat: enhancement information_schema.flows * feat: enhancement information_schema.flows * u * u * u * u * u * u * u * u * u * update * update * update * delete unused code * u * u * Update src/flow/src/adapter/worker.rs Co-authored-by: dennis zhuang <killme2008@gmail.com> * Update src/common/meta/src/key/flow/flow_state.rs Co-authored-by: dennis zhuang <killme2008@gmail.com> * Update src/common/meta/src/key/flow/flow_info.rs Co-authored-by: dennis zhuang <killme2008@gmail.com> * Update src/common/meta/src/key/flow/flow_state.rs Co-authored-by: dennis zhuang <killme2008@gmail.com> * Update src/common/meta/src/key/flow/flow_info.rs Co-authored-by: dennis zhuang <killme2008@gmail.com> * u * u * u * u * u * u * chore: fix sqlness * chore: update proto * fix: remove date time * fix: update result of information_schema test --------- Co-authored-by: dennis zhuang <killme2008@gmail.com> Co-authored-by: discord9 <discord9@163.com>
63 lines
1.7 KiB
TOML
63 lines
1.7 KiB
TOML
[package]
|
|
name = "common-function"
|
|
edition.workspace = true
|
|
version.workspace = true
|
|
license.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[features]
|
|
default = ["geo"]
|
|
geo = ["geohash", "h3o", "s2", "wkt", "geo-types", "dep:geo"]
|
|
|
|
[dependencies]
|
|
ahash = "0.8"
|
|
api.workspace = true
|
|
arc-swap = "1.0"
|
|
async-trait.workspace = true
|
|
bincode = "1.3"
|
|
chrono.workspace = true
|
|
common-base.workspace = true
|
|
common-catalog.workspace = true
|
|
common-error.workspace = true
|
|
common-macro.workspace = true
|
|
common-meta.workspace = true
|
|
common-query.workspace = true
|
|
common-runtime.workspace = true
|
|
common-telemetry.workspace = true
|
|
common-time.workspace = true
|
|
common-version.workspace = true
|
|
datafusion.workspace = true
|
|
datafusion-common.workspace = true
|
|
datafusion-expr.workspace = true
|
|
datatypes.workspace = true
|
|
derive_more = { version = "1", default-features = false, features = ["display"] }
|
|
geo = { version = "0.29", optional = true }
|
|
geo-types = { version = "0.7", optional = true }
|
|
geohash = { version = "0.13", optional = true }
|
|
h3o = { version = "0.6", optional = true }
|
|
hyperloglogplus = "0.4"
|
|
jsonb.workspace = true
|
|
nalgebra.workspace = true
|
|
num = "0.4"
|
|
num-traits = "0.2"
|
|
once_cell.workspace = true
|
|
paste.workspace = true
|
|
s2 = { version = "0.0.12", optional = true }
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
session.workspace = true
|
|
snafu.workspace = true
|
|
sql.workspace = true
|
|
statrs = "0.16"
|
|
store-api.workspace = true
|
|
table.workspace = true
|
|
uddsketch = { git = "https://github.com/GreptimeTeam/timescaledb-toolkit.git", rev = "84828fe8fb494a6a61412a3da96517fc80f7bb20" }
|
|
wkt = { version = "0.11", optional = true }
|
|
|
|
[dev-dependencies]
|
|
approx = "0.5"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
tokio.workspace = true
|