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.
19 lines
397 B
19 lines
397 B
2 years ago
|
# This package contains Rust protobuf runtime implementation built on top of the C++ backend.
|
||
2 years ago
|
|
||
|
load("@rules_rust//rust:defs.bzl", "rust_library", "rust_test")
|
||
|
|
||
|
rust_library(
|
||
2 years ago
|
name = "cpp",
|
||
|
srcs = ["cpp.rs"],
|
||
2 years ago
|
visibility = ["//src/google/protobuf:__subpackages__"],
|
||
|
)
|
||
|
|
||
|
rust_test(
|
||
2 years ago
|
name = "cpp_test",
|
||
|
crate = ":cpp",
|
||
2 years ago
|
tags = [
|
||
|
"not_build:arm",
|
||
|
"notsan",
|
||
|
],
|
||
|
)
|