Go to file
Deanna Garcia ab4585a695 Sync from Piper @425656941
PROTOBUF_SYNC_PIPER
2022-02-01 18:24:53 +00:00
.github Sync from Piper @425656941 2022-02-01 18:24:53 +00:00
benchmarks Sync from Piper @425656941 2022-02-01 18:24:53 +00:00
cmake Sync from Piper @425656941 2022-02-01 18:24:53 +00:00
conformance Sync from Piper @425656941 2022-02-01 18:24:53 +00:00
csharp Sync from Piper @425656941 2022-02-01 18:24:53 +00:00
docs Sync from Piper @425656941 2022-02-01 18:24:53 +00:00
editors Emacs: Protobuf mode should be derived from prog-mode (#9076) 2021-10-13 10:26:40 -07:00
examples Sync from Piper @425656941 2022-02-01 18:24:53 +00:00
java Sync from Piper @425656941 2022-02-01 18:24:53 +00:00
js Sync from Piper @425656941 2022-02-01 18:24:53 +00:00
kokoro Sync from Piper @425656941 2022-02-01 18:24:53 +00:00
m4
objectivec Add Xcode 13 to the build/test script. 2021-10-01 10:00:09 -04:00
php Sync from Piper @425656941 2022-02-01 18:24:53 +00:00
protoc-artifacts Sync from Piper @425656941 2022-02-01 18:24:53 +00:00
python Sync from Piper @425656941 2022-02-01 18:24:53 +00:00
ruby Sync from Piper @425656941 2022-02-01 18:24:53 +00:00
src Sync from Piper @425656941 2022-02-01 18:24:53 +00:00
third_party Sync from Piper @425656941 2022-02-01 18:24:53 +00:00
toolchain Sync from Piper @425656941 2022-02-01 18:24:53 +00:00
util/python
.bazelignore Add _build to .bazelignore 2021-08-13 23:35:37 +00:00
.gitignore same directory ignore 2021-08-26 17:28:49 +00:00
.gitmodules
.readthedocs.yml
BUILD Sync from Piper @425656941 2022-02-01 18:24:53 +00:00
CHANGES.txt Sync from Piper @425656941 2022-02-01 18:24:53 +00:00
CONTRIBUTING.md document the kinds of patches the repo is open to (#8900) 2021-10-13 16:36:21 +00:00
CONTRIBUTORS.txt
LICENSE
Makefile.am Sync from Piper @425656941 2022-02-01 18:24:53 +00:00
Protobuf-C++.podspec Remove references to HAVE_PTHREAD (#9100) 2021-10-15 13:10:38 -07:00
Protobuf.podspec Sync from Piper @425656941 2022-02-01 18:24:53 +00:00
README.md Remove build badges, they were consistently out of date and not very useful. (#8634) 2021-05-20 10:06:36 -07:00
SECURITY.md grammar nit 2021-08-13 14:50:07 -04:00
WORKSPACE Sync from Piper @425656941 2022-02-01 18:24:53 +00:00
appveyor.bat Sync from Piper @425656941 2022-02-01 18:24:53 +00:00
appveyor.yml
autogen.sh Build updates (#5300) 2021-05-17 14:53:27 -07:00
build_files_updated_unittest.sh
cc_proto_blacklist_test.bzl
compiler_config_setting.bzl
composer.json
configure.ac Update protobuf version to 3.18.1 (#9051) 2021-10-04 17:43:33 -07:00
fix_permissions.sh
generate_changelog.py
generate_descriptor_proto.sh
global.json Sync from Piper @425656941 2022-02-01 18:24:53 +00:00
internal.bzl Bazel powered Java testing (#8506) 2021-04-20 11:36:32 -07:00
maven_install.json Sync from Piper @425656941 2022-02-01 18:24:53 +00:00
post_process_dist.sh
protobuf-lite.pc.in Remove references to HAVE_PTHREAD (#9100) 2021-10-15 13:10:38 -07:00
protobuf.bzl Sync from Piper @425656941 2022-02-01 18:24:53 +00:00
protobuf.pc.in Remove references to HAVE_PTHREAD (#9100) 2021-10-15 13:10:38 -07:00
protobuf_deps.bzl Sync from Piper @425656941 2022-02-01 18:24:53 +00:00
protobuf_version.bzl Sync from Piper @425656941 2022-02-01 18:24:53 +00:00
tests.sh Sync from Piper @425656941 2022-02-01 18:24:53 +00:00
update_compatibility_version.py
update_file_lists.sh Tweak update_file_lists.sh to handle changes to Makefile.am. (#8965) 2021-09-10 19:32:15 -07:00
update_version.py Update versions in README files (#9093) 2021-10-13 13:34:49 -04:00

README.md

Protocol Buffers - Google's data interchange format

Copyright 2008 Google Inc.

https://developers.google.com/protocol-buffers/

Overview

Protocol Buffers (a.k.a., protobuf) are Google's language-neutral, platform-neutral, extensible mechanism for serializing structured data. You can find protobuf's documentation on the Google Developers site.

This README file contains protobuf installation instructions. To install protobuf, you need to install the protocol compiler (used to compile .proto files) and the protobuf runtime for your chosen programming language.

Protocol Compiler Installation

The protocol compiler is written in C++. If you are using C++, please follow the C++ Installation Instructions to install protoc along with the C++ runtime.

For non-C++ users, the simplest way to install the protocol compiler is to download a pre-built binary from our release page:

https://github.com/protocolbuffers/protobuf/releases

In the downloads section of each release, you can find pre-built binaries in zip packages: protoc-$VERSION-$PLATFORM.zip. It contains the protoc binary as well as a set of standard .proto files distributed along with protobuf.

If you are looking for an old version that is not available in the release page, check out the maven repo here:

https://repo1.maven.org/maven2/com/google/protobuf/protoc/

These pre-built binaries are only provided for released versions. If you want to use the github master version at HEAD, or you need to modify protobuf code, or you are using C++, it's recommended to build your own protoc binary from source.

If you would like to build protoc binary from source, see the C++ Installation Instructions.

Protobuf Runtime Installation

Protobuf supports several different programming languages. For each programming language, you can find instructions in the corresponding source directory about how to install protobuf runtime for that specific language:

Language Source
C++ (include C++ runtime and protoc) src
Java java
Python python
Objective-C objectivec
C# csharp
JavaScript js
Ruby ruby
Go protocolbuffers/protobuf-go
PHP php
Dart dart-lang/protobuf

Quick Start

The best way to learn how to use protobuf is to follow the tutorials in our developer guide:

https://developers.google.com/protocol-buffers/docs/tutorials

If you want to learn from code examples, take a look at the examples in the examples directory.

Documentation

The complete documentation for Protocol Buffers is available via the web at:

https://developers.google.com/protocol-buffers/