mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-06 21:32:58 +00:00
feat: flownode frontend client&test feat: Frontend Client feat: set frontend invoker for flownode feat: set frontend invoker for flownode chore: test script WIP: test flow distributed feat: hard coded demo docs: flownode example toml feat: add flownode support in runner docs: comments for node chore: after rebase docs: add a todo tests: move flow tests to common fix: flownode sqlness dist test chore: per review docs: make fix: make doc
95 lines
2.2 KiB
TOML
95 lines
2.2 KiB
TOML
[package]
|
|
name = "cmd"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
default-run = "greptime"
|
|
|
|
[[bin]]
|
|
name = "greptime"
|
|
path = "src/bin/greptime.rs"
|
|
|
|
[features]
|
|
tokio-console = ["common-telemetry/tokio-console"]
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
async-trait.workspace = true
|
|
auth.workspace = true
|
|
base64.workspace = true
|
|
cache.workspace = true
|
|
catalog.workspace = true
|
|
chrono.workspace = true
|
|
clap.workspace = true
|
|
client.workspace = true
|
|
common-base.workspace = true
|
|
common-catalog.workspace = true
|
|
common-config.workspace = true
|
|
common-error.workspace = true
|
|
common-grpc.workspace = true
|
|
common-macro.workspace = true
|
|
common-meta.workspace = true
|
|
common-procedure.workspace = true
|
|
common-query.workspace = true
|
|
common-recordbatch.workspace = true
|
|
common-runtime.workspace = true
|
|
common-telemetry = { workspace = true, features = [
|
|
"deadlock_detection",
|
|
] }
|
|
common-time.workspace = true
|
|
common-version.workspace = true
|
|
common-wal.workspace = true
|
|
datanode.workspace = true
|
|
datatypes.workspace = true
|
|
either = "1.8"
|
|
etcd-client.workspace = true
|
|
file-engine.workspace = true
|
|
flow.workspace = true
|
|
frontend.workspace = true
|
|
futures.workspace = true
|
|
human-panic = "1.2.2"
|
|
lazy_static.workspace = true
|
|
meta-client.workspace = true
|
|
meta-srv.workspace = true
|
|
mito2.workspace = true
|
|
moka.workspace = true
|
|
nu-ansi-term = "0.46"
|
|
plugins.workspace = true
|
|
prometheus.workspace = true
|
|
prost.workspace = true
|
|
query.workspace = true
|
|
rand.workspace = true
|
|
regex.workspace = true
|
|
reqwest.workspace = true
|
|
rustyline = "10.1"
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
servers.workspace = true
|
|
session.workspace = true
|
|
snafu.workspace = true
|
|
store-api.workspace = true
|
|
substrait.workspace = true
|
|
table.workspace = true
|
|
tokio.workspace = true
|
|
toml.workspace = true
|
|
tonic.workspace = true
|
|
tracing-appender = "0.2"
|
|
|
|
[target.'cfg(not(windows))'.dependencies]
|
|
tikv-jemallocator = "0.5"
|
|
|
|
[dev-dependencies]
|
|
client = { workspace = true, features = ["testing"] }
|
|
common-test-util.workspace = true
|
|
serde.workspace = true
|
|
temp-env = "0.3"
|
|
tempfile.workspace = true
|
|
|
|
[target.'cfg(not(windows))'.dev-dependencies]
|
|
rexpect = "0.5"
|
|
|
|
[build-dependencies]
|
|
common-version.workspace = true
|