1# Protocol Buffers - Google's data interchange format 2# Copyright 2024 Google LLC. All rights reserved. 3 4# Use of this source code is governed by a BSD-style 5# license that can be found in the LICENSE file or at 6# https://developers.google.com/open-source/licenses/bsd 7 8[package] 9name = "protobuf" 10version = "4.27.3-beta.0" 11edition = "2021" 12links = "libupb" 13license = "BSD-3-Clause" 14rust-version = "1.74" 15 16[lib] 17path = "src/shared.rs" 18 19[dependencies] 20paste = "1.0.15" 21 22[dev-dependencies] 23googletest = "0.13.0" 24 25[build-dependencies] 26cc = "1.1.6" 27 28[lints.rust] 29unexpected_cfgs = { level = "warn", check-cfg = ['cfg(bzl)', 'cfg(cpp_kernel)', 'cfg(upb_kernel)'] } 30