mirror of
https://github.com/protocolbuffers/protobuf
synced 2026-08-26 02:23:14 -04:00
New crates are in https://crates.io/search?q=google-protobuf PiperOrigin-RevId: 963684439
14 lines
726 B
TOML
14 lines
726 B
TOML
[package]
|
|
name = "protobuf-example"
|
|
version = "{PROTOBUF_LEGACY_VERSION}"
|
|
edition = "2021"
|
|
description = "Example use of Rust Protocol Buffers bindings"
|
|
license = "BSD-3-Clause"
|
|
|
|
[dependencies]
|
|
protobuf = { version = "{PROTOBUF_LEGACY_VERSION}", path = "../protobuf", package = "protobuf" }
|
|
protobuf_well_known_types = { version = "{PROTOBUF_RUST_VERSION}", path = "../protobuf_well_known_types", package = "protobuf-well-known-types" }
|
|
|
|
[build-dependencies]
|
|
protobuf-codegen = { version = "{PROTOBUF_LEGACY_VERSION}", path = "../protobuf_codegen", package = "protobuf-codegen" }
|
|
protobuf_well_known_types = { version = "{PROTOBUF_RUST_VERSION}", path = "../protobuf_well_known_types", package = "protobuf-well-known-types" }
|