From 741ac5f5e65e54c0b2e2542e95d28ea529fcc200 Mon Sep 17 00:00:00 2001 From: Green Sky Date: Thu, 20 Mar 2025 13:00:30 +0100 Subject: [PATCH] fix(bazel): missing dep for fuzz target --- toxcore/BUILD.bazel | 1 + 1 file changed, 1 insertion(+) diff --git a/toxcore/BUILD.bazel b/toxcore/BUILD.bazel index 2eae5931a..6c83a2c2b 100644 --- a/toxcore/BUILD.bazel +++ b/toxcore/BUILD.bazel @@ -555,6 +555,7 @@ cc_fuzz_test( deps = [ ":DHT", ":mem_test_util", + ":net_profile", "//c-toxcore/testing/fuzzing:fuzz_support", ], )