mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-08 06:12:55 +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
90 lines
2.7 KiB
TOML
90 lines
2.7 KiB
TOML
[package]
|
|
name = "servers"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[features]
|
|
mem-prof = ["dep:common-mem-prof"]
|
|
|
|
[dependencies]
|
|
aide = { version = "0.9", features = ["axum"] }
|
|
api = { path = "../api" }
|
|
arrow-flight.workspace = true
|
|
async-trait = "0.1"
|
|
axum = "0.6"
|
|
axum-macros = "0.3"
|
|
base64 = "0.13"
|
|
bytes = "1.2"
|
|
catalog = { path = "../catalog" }
|
|
chrono.workspace = true
|
|
common-base = { path = "../common/base" }
|
|
common-catalog = { path = "../common/catalog" }
|
|
common-error = { path = "../common/error" }
|
|
common-grpc = { path = "../common/grpc" }
|
|
common-grpc-expr = { path = "../common/grpc-expr" }
|
|
common-mem-prof = { path = "../common/mem-prof", optional = true }
|
|
common-query = { path = "../common/query" }
|
|
common-recordbatch = { path = "../common/recordbatch" }
|
|
common-runtime = { path = "../common/runtime" }
|
|
common-telemetry = { path = "../common/telemetry" }
|
|
common-time = { path = "../common/time" }
|
|
datatypes = { path = "../datatypes" }
|
|
derive_builder = "0.12"
|
|
digest = "0.10"
|
|
futures = "0.3"
|
|
hex = { version = "0.4" }
|
|
http-body = "0.4"
|
|
humantime-serde = "1.1"
|
|
hyper = { version = "0.14", features = ["full"] }
|
|
influxdb_line_protocol = { git = "https://github.com/evenyag/influxdb_iox", branch = "feat/line-protocol" }
|
|
metrics = "0.20"
|
|
num_cpus = "1.13"
|
|
once_cell = "1.16"
|
|
openmetrics-parser = "0.4"
|
|
opensrv-mysql = { git = "https://github.com/sunng87/opensrv", branch = "fix/buffer-overread" }
|
|
parking_lot = "0.12"
|
|
pgwire = "0.10"
|
|
pin-project = "1.0"
|
|
postgres-types = { version = "0.2", features = ["with-chrono-0_4"] }
|
|
promql-parser = "0.1.0"
|
|
prost.workspace = true
|
|
query = { path = "../query" }
|
|
rand = "0.8"
|
|
regex = "1.6"
|
|
rustls = "0.20"
|
|
rustls-pemfile = "1.0"
|
|
schemars = "0.8"
|
|
serde.workspace = true
|
|
serde_json = "1.0"
|
|
session = { path = "../session" }
|
|
sha1 = "0.10"
|
|
snafu = { version = "0.7", features = ["backtraces"] }
|
|
snap = "1"
|
|
sql = { path = "../sql" }
|
|
strum = { version = "0.24", features = ["derive"] }
|
|
table = { path = "../table" }
|
|
tokio-rustls = "0.23"
|
|
tokio-stream = { version = "0.1", features = ["net"] }
|
|
tokio.workspace = true
|
|
tonic.workspace = true
|
|
tower = { version = "0.4", features = ["full"] }
|
|
tower-http = { version = "0.3", features = ["full"] }
|
|
|
|
|
|
[dev-dependencies]
|
|
axum-test-helper = { git = "https://github.com/sunng87/axum-test-helper.git", branch = "patch-1" }
|
|
client = { path = "../client" }
|
|
common-base = { path = "../common/base" }
|
|
common-test-util = { path = "../common/test-util" }
|
|
mysql_async = { version = "0.31", default-features = false, features = [
|
|
"default-rustls",
|
|
] }
|
|
rand = "0.8"
|
|
script = { path = "../script", features = ["python"] }
|
|
serde_json = "1.0"
|
|
table = { path = "../table" }
|
|
tokio-postgres = "0.7"
|
|
tokio-postgres-rustls = "0.9"
|
|
tokio-test = "0.4"
|