diff options
Diffstat (limited to 'tvix/castore/build.rs')
-rw-r--r-- | tvix/castore/build.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/castore/build.rs b/tvix/castore/build.rs index 9f06c8833319..339ba867dd21 100644 --- a/tvix/castore/build.rs +++ b/tvix/castore/build.rs @@ -4,7 +4,7 @@ fn main() -> Result<()> { #[allow(unused_mut)] let mut builder = tonic_build::configure(); - #[cfg(feature = "reflection")] + #[cfg(feature = "tonic-reflection")] { let out_dir = std::path::PathBuf::from(std::env::var("OUT_DIR").unwrap()); let descriptor_path = out_dir.join("tvix.castore.v1.bin"); |