mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-05-15 20:40:39 +00:00
* feat: implements anomaly_score_iqr, anomaly_score_mad and anomaly_score_zscore functions Signed-off-by: Dennis Zhuang <killme2008@gmail.com> * chore: forgot result file Signed-off-by: Dennis Zhuang <killme2008@gmail.com> * feat: return NaN and zero for scale=0 Signed-off-by: Dennis Zhuang <killme2008@gmail.com> * fix: comment Signed-off-by: Dennis Zhuang <killme2008@gmail.com> * fix: signature, cast and degenerate case Signed-off-by: Dennis Zhuang <killme2008@gmail.com> * chore: tweak comment Signed-off-by: Dennis Zhuang <killme2008@gmail.com> * fix: format Signed-off-by: Dennis Zhuang <killme2008@gmail.com> * feat: update min samples threshold Signed-off-by: Dennis Zhuang <killme2008@gmail.com> * Apply suggestion from @Copilot Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: Dennis Zhuang <killme2008@gmail.com> * fix: missing closing quote Signed-off-by: Dennis Zhuang <killme2008@gmail.com> * fix: mock engine Signed-off-by: Dennis Zhuang <killme2008@gmail.com> * fix: oudated comment and test name Signed-off-by: Dennis Zhuang <killme2008@gmail.com> * chore: todo Signed-off-by: Dennis Zhuang <killme2008@gmail.com> * chore: apply suggestions Signed-off-by: Dennis Zhuang <killme2008@gmail.com> --------- Signed-off-by: Dennis Zhuang <killme2008@gmail.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
76 lines
2.1 KiB
TOML
76 lines
2.1 KiB
TOML
[package]
|
|
name = "common-function"
|
|
edition.workspace = true
|
|
version.workspace = true
|
|
license.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[features]
|
|
testing = []
|
|
default = ["geo"]
|
|
geo = ["geohash", "h3o", "s2", "wkt", "geo-types", "dep:geo"]
|
|
|
|
[dependencies]
|
|
ahash.workspace = true
|
|
api.workspace = true
|
|
arc-swap = "1.0"
|
|
arrow.workspace = true
|
|
arrow-cast.workspace = true
|
|
arrow-schema.workspace = true
|
|
async-trait.workspace = true
|
|
bincode = "=1.3.3"
|
|
catalog.workspace = true
|
|
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
|
|
datafusion-functions-aggregate-common.workspace = true
|
|
datafusion-functions-window-common.workspace = true
|
|
datafusion-pg-catalog.workspace = true
|
|
datafusion-physical-expr.workspace = true
|
|
datatypes.workspace = true
|
|
derive_more.workspace = true
|
|
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
|
|
jsonpath-rust = "0.7.5"
|
|
memchr = "2.7"
|
|
mito-codec.workspace = true
|
|
nalgebra.workspace = true
|
|
num = "0.4"
|
|
num-traits = "0.2"
|
|
paste.workspace = true
|
|
regex.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
|
|
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"
|
|
futures.workspace = true
|
|
pretty_assertions.workspace = true
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
tokio.workspace = true
|