Protocol Buffers - Google's data interchange format (grpc依赖) https://developers.google.com/protocol-buffers/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
472 B

# This package contains Rust protobuf runtime implementation built on top of the C++ backend.
load("@rules_rust//rust:defs.bzl", "rust_library", "rust_test")
package(default_applicable_licenses = ["//third_party/protobuf:license"])
rust_library(
name = "cpp",
srcs = ["cpp.rs"],
visibility = ["//src/google/protobuf:__subpackages__"],
)
rust_test(
name = "cpp_test",
crate = ":cpp",
tags = [
"not_build:arm",
"notsan",
],
)