mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-06 21:32:58 +00:00
* feat: pipeline recognize hints from exec * chore: rename and add test * chore: minor improve * chore: rename and add comments * fix: typos * feat: add initial impl for vrl processor * chore: update processors to allow vrl process * feat: pipeline recognize hints from exec * chore: rename and add test * chore: minor improve * chore: rename and add comments * fix: typos * chore: remove unnecessory clone fn * chore: group metrics * chore: use struct in transform output enum * test: add test for vrl * fix: leaked conflicts * chore: merge branch code & add check in compile * fix: check condition
76 lines
1.8 KiB
TOML
76 lines
1.8 KiB
TOML
[package]
|
|
name = "pipeline"
|
|
edition.workspace = true
|
|
version.workspace = true
|
|
license.workspace = true
|
|
|
|
[features]
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
ahash.workspace = true
|
|
api.workspace = true
|
|
arrow.workspace = true
|
|
async-trait.workspace = true
|
|
catalog.workspace = true
|
|
chrono.workspace = true
|
|
chrono-tz.workspace = true
|
|
common-catalog.workspace = true
|
|
common-error.workspace = true
|
|
common-function.workspace = true
|
|
common-macro.workspace = true
|
|
common-meta.workspace = true
|
|
common-query.workspace = true
|
|
common-recordbatch.workspace = true
|
|
common-runtime.workspace = true
|
|
common-telemetry.workspace = true
|
|
common-time.workspace = true
|
|
crossbeam-utils.workspace = true
|
|
csv = "1.3"
|
|
dashmap.workspace = true
|
|
datafusion.workspace = true
|
|
datafusion-common.workspace = true
|
|
datafusion-expr.workspace = true
|
|
datafusion-functions.workspace = true
|
|
datafusion-physical-expr.workspace = true
|
|
datatypes.workspace = true
|
|
dyn-fmt = "0.4"
|
|
enum_dispatch = "0.3"
|
|
futures.workspace = true
|
|
greptime-proto.workspace = true
|
|
itertools.workspace = true
|
|
jsonb.workspace = true
|
|
jsonpath-rust = "0.7.5"
|
|
lazy_static.workspace = true
|
|
moka = { workspace = true, features = ["sync"] }
|
|
once_cell.workspace = true
|
|
operator.workspace = true
|
|
paste.workspace = true
|
|
prometheus.workspace = true
|
|
query.workspace = true
|
|
regex.workspace = true
|
|
serde_json.workspace = true
|
|
session.workspace = true
|
|
simd-json.workspace = true
|
|
snafu.workspace = true
|
|
sql.workspace = true
|
|
table.workspace = true
|
|
tokio.workspace = true
|
|
urlencoding = "2.1"
|
|
vrl = "0.24"
|
|
yaml-rust = "0.4"
|
|
|
|
[dev-dependencies]
|
|
catalog = { workspace = true, features = ["testing"] }
|
|
criterion = { version = "0.4", features = ["html_reports"] }
|
|
rayon = "1.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
session = { workspace = true, features = ["testing"] }
|
|
|
|
[[bench]]
|
|
name = "processor"
|
|
harness = false
|
|
path = "benches/processor.rs"
|