From 0bf2b0ef1164aae0ad692066e8cfc0b243a89e4d Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Sat, 26 Nov 2022 01:14:02 +0000 Subject: feat(tvix/store): implement reflection This implements grpc.reflection.v1alpha.ServerReflection, and will make tools like evans automatically discover available services, without having to specify the path to the .proto files client-side. It's behind a reflection feature flag, which is enabled by default. Change-Id: Icbcb5eb05ceede5b9952e38a2ba72eaa6fa8a437 Reviewed-on: https://cl.tvl.fyi/c/depot/+/7435 Reviewed-by: tazjin Tested-by: BuildkiteCI --- tvix/store/Cargo.toml | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'tvix/store/Cargo.toml') diff --git a/tvix/store/Cargo.toml b/tvix/store/Cargo.toml index 5cae4e0dfcd7..90672b6d037f 100644 --- a/tvix/store/Cargo.toml +++ b/tvix/store/Cargo.toml @@ -15,9 +15,21 @@ tokio = { version = "1.23.0", features = ["rt-multi-thread"] } tokio-stream = "0.1.11" tonic = "0.8.2" +[dependencies.tonic-reflection] +optional = true +version = "0.5.0" + [build-dependencies] prost-build = "0.11.2" tonic-build = "0.8.2" [dev-dependencies] test-case = "2.2.2" + +[features] +default = [ + "reflection" +] +reflection = [ + "tonic-reflection" +] -- cgit 1.4.1