mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-04 20:32:56 +00:00
* feat: support parse prom ql in create flow * refactor * fix: just run tql unmodified * refactor: determine type faster * fix: pass original query * tests: sqlness * test: fix format&chore * fix: get raw query * test: fix sqlness randomness * chore: what's the box for? * test: location_to_index * test: make sqlness more determinstic * fix: tmp add sleep 1s after flush_flow * undo test sleep 1s&rm done todo * chore: more tests
85 lines
2.1 KiB
TOML
85 lines
2.1 KiB
TOML
[package]
|
|
name = "flow"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
api.workspace = true
|
|
arrow.workspace = true
|
|
arrow-schema.workspace = true
|
|
async-recursion = "1.0"
|
|
async-trait.workspace = true
|
|
auth.workspace = true
|
|
bytes.workspace = true
|
|
cache.workspace = true
|
|
catalog.workspace = true
|
|
chrono.workspace = true
|
|
client.workspace = true
|
|
common-base.workspace = true
|
|
common-config.workspace = true
|
|
common-decimal.workspace = true
|
|
common-error.workspace = true
|
|
common-frontend.workspace = true
|
|
common-function.workspace = true
|
|
common-grpc.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
|
|
common-version.workspace = true
|
|
config.workspace = true
|
|
datafusion.workspace = true
|
|
datafusion-common.workspace = true
|
|
datafusion-expr.workspace = true
|
|
datafusion-physical-expr.workspace = true
|
|
datafusion-substrait.workspace = true
|
|
datatypes.workspace = true
|
|
dfir_rs = { version = "0.13.0", default-features = false }
|
|
enum-as-inner = "0.6.0"
|
|
enum_dispatch = "0.3"
|
|
futures.workspace = true
|
|
get-size2 = "0.1.2"
|
|
greptime-proto.workspace = true
|
|
http.workspace = true
|
|
itertools.workspace = true
|
|
lazy_static.workspace = true
|
|
meta-client.workspace = true
|
|
nom = "7.1.3"
|
|
num-traits = "0.2"
|
|
num_cpus.workspace = true
|
|
operator.workspace = true
|
|
partition.workspace = true
|
|
prometheus.workspace = true
|
|
prost.workspace = true
|
|
query.workspace = true
|
|
rand.workspace = true
|
|
serde.workspace = true
|
|
servers.workspace = true
|
|
session.workspace = true
|
|
smallvec.workspace = true
|
|
snafu.workspace = true
|
|
sql.workspace = true
|
|
store-api.workspace = true
|
|
strum.workspace = true
|
|
substrait.workspace = true
|
|
table.workspace = true
|
|
tokio.workspace = true
|
|
tonic.workspace = true
|
|
|
|
[dev-dependencies]
|
|
catalog.workspace = true
|
|
common-catalog.workspace = true
|
|
pretty_assertions = "1.4.0"
|
|
prost.workspace = true
|
|
query.workspace = true
|
|
serde_json = "1.0"
|
|
session.workspace = true
|
|
table.workspace = true
|