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]
|
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-05-02 13:43:45 +00:00
|
|
|
thiserror = "1.0.31"
|
2022-06-06 14:15:12 +00:00
|
|
|
tokio = { version = "1.19", features = ["macros", "parking_lot", "rt-multi-thread"] }
|
2021-12-02 21:13:11 +00:00
|
|
|
tokio-stream = { version = "0.1", features = ["net"] }
|
2022-04-20 11:12:17 +00:00
|
|
|
tonic = "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" }
|