From e79d0e88c97b42f4d3bffd4d39b2c1cb3bc91b22 Mon Sep 17 00:00:00 2001 From: Christoph Hegemann Date: Mon, 1 Jul 2024 07:25:21 +0200 Subject: [PATCH] fixes BUILD.bazel file to include nested rs sources --- .../syntax-highlighter/crates/scip-syntax/BUILD.bazel | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docker-images/syntax-highlighter/crates/scip-syntax/BUILD.bazel b/docker-images/syntax-highlighter/crates/scip-syntax/BUILD.bazel index d8fc746b409fc..5fbe530a4e193 100644 --- a/docker-images/syntax-highlighter/crates/scip-syntax/BUILD.bazel +++ b/docker-images/syntax-highlighter/crates/scip-syntax/BUILD.bazel @@ -28,9 +28,7 @@ WORKSPACE_DEPS = [ rust_library( name = "scip_syntax_lib", srcs = glob( - [ - "src/*.rs", - ], + ["src/**/*.rs"], allow_empty = False, exclude = ["src/main.rs"], ),