load("@rules_rust//proto/protobuf:toolchain.bzl", "GRPC_COMPILE_DEPS") load("@rules_rust//rust:defs.bzl", "rust_binary") rust_binary( name = "greeter_client", srcs = ["greeter_client.rs"], tags = ["manual"], visibility = ["//proto/helloworld:__subpackages__"], deps = [ "//proto/helloworld:libhelloworld_proto", ] + GRPC_COMPILE_DEPS, )