mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-09 06:42:57 +00:00
* refactor: replace tempdir with tempfile * refactor(query): move tempfile dependency under the workspace's Cargo.toml * refactor(tempfile): create common-test-util * refactor(tempfile): fix toml format * refactor(tempfile): remove tempfile out of dependencies * refactor(tempfile): fix incorrect toml
55 lines
1.4 KiB
TOML
55 lines
1.4 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]
|
|
mem-prof = ["tikv-jemallocator", "tikv-jemalloc-ctl"]
|
|
|
|
[dependencies]
|
|
anymap = "1.0.0-beta.2"
|
|
catalog = { path = "../catalog" }
|
|
clap = { version = "3.1", features = ["derive"] }
|
|
client = { path = "../client" }
|
|
common-base = { path = "../common/base" }
|
|
common-error = { path = "../common/error" }
|
|
common-query = { path = "../common/query" }
|
|
common-recordbatch = { path = "../common/recordbatch" }
|
|
common-telemetry = { path = "../common/telemetry", features = [
|
|
"deadlock_detection",
|
|
] }
|
|
datanode = { path = "../datanode" }
|
|
either = "1.8"
|
|
frontend = { path = "../frontend" }
|
|
futures.workspace = true
|
|
meta-client = { path = "../meta-client" }
|
|
meta-srv = { path = "../meta-srv" }
|
|
nu-ansi-term = "0.46"
|
|
partition = { path = "../partition" }
|
|
query = { path = "../query" }
|
|
rustyline = "10.1"
|
|
serde.workspace = true
|
|
servers = { path = "../servers" }
|
|
session = { path = "../session" }
|
|
snafu.workspace = true
|
|
substrait = { path = "../common/substrait" }
|
|
tikv-jemalloc-ctl = { version = "0.5", optional = true }
|
|
tikv-jemallocator = { version = "0.5", optional = true }
|
|
tokio.workspace = true
|
|
toml = "0.5"
|
|
|
|
|
|
[dev-dependencies]
|
|
common-test-util = { path = "../common/test-util" }
|
|
rexpect = "0.5"
|
|
serde.workspace = true
|
|
|
|
[build-dependencies]
|
|
build-data = "0.1.3"
|