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
4 months ago
|
# 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
|
||
|
|
||
4 months ago
|
[package]
|
||
|
name = "protobuf"
|
||
5 days ago
|
version = "{VERSION}"
|
||
|
edition = "2021" # The Rust edition (not to be confused with Protobuf Edition).
|
||
4 months ago
|
links = "libupb"
|
||
|
license = "BSD-3-Clause"
|
||
3 months ago
|
rust-version = "1.74"
|
||
1 month ago
|
description = "Protocol Buffers - Google's data interchange format"
|
||
4 months ago
|
|
||
|
[lib]
|
||
|
path = "src/shared.rs"
|
||
|
|
||
|
[dependencies]
|
||
|
paste = "1.0.15"
|
||
|
|
||
|
[dev-dependencies]
|
||
|
googletest = {git = "https://github.com/google/googletest-rust.git" }
|
||
|
|
||
|
[build-dependencies]
|
||
4 months ago
|
cc = "1.1.6"
|
||
4 months ago
|
|
||
|
[lints.rust]
|
||
|
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(bzl)', 'cfg(cpp_kernel)', 'cfg(upb_kernel)'] }
|