20 lines
569 B
TOML
20 lines
569 B
TOML
[package]
|
|
name = "service_grpc_catalog"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
data_types = { path = "../data_types" }
|
|
generated_types = { path = "../generated_types" }
|
|
iox_catalog = { path = "../iox_catalog" }
|
|
observability_deps = { path = "../observability_deps" }
|
|
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
|
|
tonic = "0.8"
|
|
workspace-hack = { path = "../workspace-hack"}
|
|
|
|
[dev-dependencies]
|
|
metric = { path = "../metric" }
|
|
uuid = { version = "1", features = ["v4"] }
|