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", - ], -)