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.
30 lines
836 B
30 lines
836 B
# Protocol Buffers - Google's data interchange format |
|
# Copyright 2024 Google LLC. All rights reserved. |
|
|
|
# Use of this source code is governed by a BSD-style |
|
# license that can be found in the LICENSE file or at |
|
# https://developers.google.com/open-source/licenses/bsd |
|
|
|
[package] |
|
name = "protobuf" |
|
version = "{VERSION}" |
|
edition = "2021" # The Rust edition (not to be confused with Protobuf Edition). |
|
links = "libupb" |
|
license = "BSD-3-Clause" |
|
rust-version = "1.74" |
|
description = "Protocol Buffers - Google's data interchange format" |
|
|
|
[lib] |
|
path = "src/shared.rs" |
|
|
|
[dependencies] |
|
paste = "1.0.15" |
|
|
|
[dev-dependencies] |
|
googletest = {git = "https://github.com/google/googletest-rust.git" } |
|
|
|
[build-dependencies] |
|
cc = "1.1.6" |
|
|
|
[lints.rust] |
|
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(bzl)', 'cfg(cpp_kernel)', 'cfg(upb_kernel)'] } |