From ca542440a5ac6d48f962a26febffcfc17514ad5d Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Sun, 26 May 2024 18:19:23 +0200 Subject: fix(tvix/build): tonic-reflection feature needs castore with it too If building tvix-build with the tonic-reflection feature, it needs to import `tvix_castore::proto::FILE_DESCRIPTOR_SET`, which is only available if tvix-castore is built with the `tonic-reflection` feature. Change-Id: I355b4c5b4c1333d5cc56335de47ad5d2f1db6337 Reviewed-on: https://cl.tvl.fyi/c/depot/+/11716 Tested-by: BuildkiteCI Reviewed-by: tazjin Autosubmit: flokli --- tvix/build/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tvix/build/Cargo.toml') diff --git a/tvix/build/Cargo.toml b/tvix/build/Cargo.toml index cf25465cca24..c8123c2617f6 100644 --- a/tvix/build/Cargo.toml +++ b/tvix/build/Cargo.toml @@ -27,7 +27,7 @@ tonic-build = "0.11.0" [features] default = [] -tonic-reflection = ["dep:tonic-reflection"] +tonic-reflection = ["dep:tonic-reflection", "tvix-castore/tonic-reflection"] [dev-dependencies] rstest = "0.19.0" -- cgit 1.4.1