mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-08 06:12:55 +00:00
32 lines
759 B
TOML
32 lines
759 B
TOML
[package]
|
|
name = "common-grpc"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "Apache-2.0"
|
|
|
|
[dependencies]
|
|
api = { path = "../../api" }
|
|
async-trait = "0.1"
|
|
common-base = { path = "../base" }
|
|
common-error = { path = "../error" }
|
|
common-query = { path = "../query" }
|
|
common-recordbatch = { path = "../recordbatch" }
|
|
common-runtime = { path = "../runtime" }
|
|
datatypes = { path = "../../datatypes" }
|
|
dashmap = "5.4"
|
|
datafusion = { git = "https://github.com/apache/arrow-datafusion.git", branch = "arrow2", features = [
|
|
"simd",
|
|
] }
|
|
snafu = { version = "0.7", features = ["backtraces"] }
|
|
tokio = { version = "1.0", features = ["full"] }
|
|
tonic = "0.8"
|
|
tower = "0.4"
|
|
|
|
[dev-dependencies]
|
|
criterion = "0.4"
|
|
rand = "0.8"
|
|
|
|
[[bench]]
|
|
name = "bench_main"
|
|
harness = false
|