mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2025-12-28 00:42:56 +00:00
107 lines
2.5 KiB
TOML
107 lines
2.5 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"
|
|
|
|
[[bin]]
|
|
name = "objbench"
|
|
path = "src/bin/objbench.rs"
|
|
|
|
[features]
|
|
default = ["servers/pprof", "servers/mem-prof"]
|
|
tokio-console = ["common-telemetry/tokio-console"]
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
async-trait.workspace = true
|
|
auth.workspace = true
|
|
base64.workspace = true
|
|
colored = "2.0"
|
|
cache.workspace = true
|
|
catalog.workspace = true
|
|
chrono.workspace = true
|
|
clap.workspace = true
|
|
cli.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-options.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, default-features = false }
|
|
futures.workspace = true
|
|
human-panic = "2.0"
|
|
humantime.workspace = true
|
|
lazy_static.workspace = true
|
|
object-store.workspace = true
|
|
parquet = "53"
|
|
pprof = "0.14"
|
|
meta-client.workspace = true
|
|
meta-srv.workspace = true
|
|
metric-engine.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
|
|
similar-asserts.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.workspace = true
|
|
|
|
[target.'cfg(not(windows))'.dependencies]
|
|
tikv-jemallocator = "0.6"
|
|
|
|
[dev-dependencies]
|
|
client = { workspace = true, features = ["testing"] }
|
|
common-test-util.workspace = true
|
|
common-version.workspace = true
|
|
serde.workspace = true
|
|
temp-env = "0.3"
|
|
tempfile.workspace = true
|
|
|
|
[target.'cfg(not(windows))'.dev-dependencies]
|
|
rexpect = "0.5"
|