mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-05-21 23:40:38 +00:00
56 lines
1.8 KiB
TOML
56 lines
1.8 KiB
TOML
[package]
|
|
name = "servers"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
aide = { version = "0.6", features = ["axum"] }
|
|
api = { path = "../api" }
|
|
async-trait = "0.1"
|
|
axum = "0.6.0-rc.2"
|
|
axum-jsonschema = { version = "0.2", features = [ "aide" ] }
|
|
axum-macros = "0.3.0-rc.1"
|
|
bytes = "1.2"
|
|
common-base = { path = "../common/base" }
|
|
common-catalog = { path = "../common/catalog" }
|
|
common-error = { path = "../common/error" }
|
|
common-grpc = { path = "../common/grpc" }
|
|
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" }
|
|
futures = "0.3"
|
|
hex = { version = "0.4" }
|
|
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"
|
|
openmetrics-parser = "0.4"
|
|
opensrv-mysql = "0.1"
|
|
pgwire = { version = "0.4" }
|
|
prost = "0.11"
|
|
schemars = "0.8"
|
|
serde = "1.0"
|
|
serde_json = "1.0"
|
|
snafu = { version = "0.7", features = ["backtraces"] }
|
|
snap = "1"
|
|
tokio = { version = "1.20", features = ["full"] }
|
|
tokio-stream = { version = "0.1", features = ["net"] }
|
|
tonic = "0.8"
|
|
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" }
|
|
catalog = { path = "../catalog" }
|
|
common-base = { path = "../common/base" }
|
|
mysql_async = { git = "https://github.com/Morranto/mysql_async.git", rev = "127b538" }
|
|
query = { path = "../query" }
|
|
rand = "0.8"
|
|
script = { path = "../script", features = ["python"] }
|
|
table = { path = "../table" }
|
|
tokio-postgres = "0.7"
|
|
tokio-test = "0.4"
|