2021-06-22 23:34:23 +00:00
|
|
|
[package]
|
|
|
|
name = "grpc-router"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Marko Mikulicic <mkm@influxdata.com>"]
|
2021-10-25 08:45:44 +00:00
|
|
|
edition = "2021"
|
2021-06-22 23:34:23 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2021-09-20 09:07:12 +00:00
|
|
|
bytes = "1.0"
|
2022-02-10 17:01:11 +00:00
|
|
|
cache_loader_async = {version = "0.2.0", features = ["ttl-cache"] }
|
2021-06-22 23:34:23 +00:00
|
|
|
futures = "0.3"
|
|
|
|
observability_deps = { path = "../observability_deps" }
|
2022-03-28 08:44:01 +00:00
|
|
|
paste = "1.0.7"
|
2022-04-20 11:12:17 +00:00
|
|
|
prost = "0.10"
|
|
|
|
prost-types = "0.10"
|
2021-10-11 08:01:21 +00:00
|
|
|
thiserror = "1.0.30"
|
2022-04-28 08:21:17 +00:00
|
|
|
tokio = { version = "1.18", features = ["macros", "parking_lot", "rt-multi-thread"] }
|
2021-12-02 21:13:11 +00:00
|
|
|
tokio-stream = { version = "0.1", features = ["net"] }
|
2022-03-29 08:39:02 +00:00
|
|
|
tokio-util = { version = "0.7.1" }
|
2022-04-20 11:12:17 +00:00
|
|
|
tonic = "0.7"
|
|
|
|
tonic-reflection = "0.4.0"
|
2021-06-22 23:34:23 +00:00
|
|
|
|
|
|
|
[build-dependencies]
|
2022-03-28 08:44:01 +00:00
|
|
|
paste = "1.0.7"
|
2022-04-20 11:12:17 +00:00
|
|
|
prost-build = "0.10"
|
|
|
|
tonic-build = "0.7"
|
2021-06-22 23:34:23 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-10-26 08:47:23 +00:00
|
|
|
grpc-router-test-gen = { path = "../grpc-router-test-gen" }
|