From 151dbbf51aa187c0ea764b75587b726a8690a1fc Mon Sep 17 00:00:00 2001 From: Krasimir Georgiev Date: Mon, 24 Aug 2026 05:12:14 -0700 Subject: [PATCH] Internal change. PiperOrigin-RevId: 969784439 --- rust/BUILD | 9 +-------- rust/cargo_fuzztest/BUILD | 10 +--------- rust/coverage/BUILD | 9 +-------- rust/engine/BUILD | 9 +-------- rust/options/BUILD | 9 +-------- 5 files changed, 5 insertions(+), 41 deletions(-) diff --git a/rust/BUILD b/rust/BUILD index f1cba77e8..6224eab79 100644 --- a/rust/BUILD +++ b/rust/BUILD @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -load("@rules_rust//rust:defs.bzl", "rust_clippy", "rust_library", "rust_test") +load("@rules_rust//rust:defs.bzl", "rust_library", "rust_test") licenses(["notice"]) @@ -59,10 +59,3 @@ rust_test( "@crate_index//:googletest", ], ) - -rust_clippy( - name = "fuzztest_clippy", - deps = [ - ":fuzztest", - ], -) diff --git a/rust/cargo_fuzztest/BUILD b/rust/cargo_fuzztest/BUILD index d9ff6a5c5..86eeb3d71 100644 --- a/rust/cargo_fuzztest/BUILD +++ b/rust/cargo_fuzztest/BUILD @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -load("@rules_rust//rust:defs.bzl", "rust_binary", "rust_clippy", "rust_library", "rust_test") +load("@rules_rust//rust:defs.bzl", "rust_binary", "rust_library", "rust_test") licenses(["notice"]) @@ -53,14 +53,6 @@ rust_test( ], ) -rust_clippy( - name = "cargo_fuzztest_clippy", - deps = [ - ":cargo_fuzztest", - ":cargo_fuzztest_bin", - ], -) - rust_test( name = "sample_fuzz_crate_bin", srcs = ["test_crates/sample_fuzz_crate/src/lib.rs"], diff --git a/rust/coverage/BUILD b/rust/coverage/BUILD index 3344a71c9..38f65f7b3 100644 --- a/rust/coverage/BUILD +++ b/rust/coverage/BUILD @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -load("@rules_rust//rust:defs.bzl", "rust_clippy", "rust_library", "rust_test") +load("@rules_rust//rust:defs.bzl", "rust_library", "rust_test") licenses(["notice"]) @@ -48,10 +48,3 @@ rust_test( "@crate_index//:googletest", ], ) - -rust_clippy( - name = "coverage_clippy", - deps = [ - ":coverage", - ], -) diff --git a/rust/engine/BUILD b/rust/engine/BUILD index 42dc85354..86036582d 100644 --- a/rust/engine/BUILD +++ b/rust/engine/BUILD @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -load("@rules_rust//rust:defs.bzl", "rust_clippy", "rust_library") +load("@rules_rust//rust:defs.bzl", "rust_library") licenses(["notice"]) @@ -30,10 +30,3 @@ rust_library( "@com_google_fuzztest//centipede:engine_worker", ], ) - -rust_clippy( - name = "engine_clippy", - deps = [ - ":engine", - ], -) diff --git a/rust/options/BUILD b/rust/options/BUILD index b56f9a655..2fc95f343 100644 --- a/rust/options/BUILD +++ b/rust/options/BUILD @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -load("@rules_rust//rust:defs.bzl", "rust_clippy", "rust_library", "rust_test") +load("@rules_rust//rust:defs.bzl", "rust_library", "rust_test") licenses(["notice"]) @@ -42,10 +42,3 @@ rust_test( "@crate_index//:googletest", ], ) - -rust_clippy( - name = "fuzztest_options_clippy", - deps = [ - ":fuzztest_options", - ], -)