Clone or download
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
Failed to load latest commit information.
.github/ISSUE_TEMPLATE Add github issue templates Jun 19, 2018
benchmarks Replace repo links. Aug 22, 2018
cmake Added conformance test impl file to CMake. Sep 2, 2018
conformance Add missing reference to conformanc_test_impl.cc in Makefile (#5100) Aug 31, 2018
csharp Replace repo links. Aug 22, 2018
docs Merge pull request #5079 from GobySoft/request-new-extension Aug 29, 2018
editors Improve fix for #295 May 23, 2017
examples Replace repo links. Aug 22, 2018
java update version Aug 28, 2018
js Replace repo links. Aug 22, 2018
kokoro Revert changed links in Dockerfiles. Aug 23, 2018
m4 Merge pull request #1333 from cgull/pkg-config-issue Mar 12, 2018
objectivec Replace repo links. Aug 22, 2018
php Fix well known type class not inheriting Message (#5095) Aug 31, 2018
protoc-artifacts Replace repo links. Aug 22, 2018
python Replace repo links. Aug 22, 2018
ruby Replace repo links. Aug 22, 2018
src Also make sure known fields come across as expected Aug 30, 2018
third_party Include googletest as a submodule (#3993) Mar 26, 2018
util/python Remove hack for building Python support with Bazel. Feb 25, 2016
.gitignore Ignore python .egg file to make git status clean #5004 Aug 5, 2018
.gitmodules Include googletest as a submodule (#3993) Mar 26, 2018
BUILD Update build files. Aug 13, 2018
CHANGES.txt Replace repo links. Aug 22, 2018
CONTRIBUTING.md Add constributing guidelines. Aug 29, 2018
CONTRIBUTORS.txt Add nano proto authors and update LICENSE file to include Android.mk. Nov 20, 2014
LICENSE Cleanup LICENSE file. Mar 26, 2018
Makefile.am Merge pull request #5078 from haberman/conformance-cmake Sep 2, 2018
Protobuf.podspec Replace repo links. Aug 22, 2018
README.md Replace repo links. Aug 22, 2018
WORKSPACE Merge pull request #4168 from jin/master Jun 23, 2018
appveyor.bat Appveyor MinGW build May 3, 2018
appveyor.yml Merge branch '3.6.x' into merge-3-6-x Jun 25, 2018
autogen.sh Add cpp tests under release docker image. Jul 16, 2018
composer.json Update PHP descriptors (#3391) Aug 4, 2017
configure.ac Merge branch '3.6.x' into merge-3-6-x Aug 1, 2018
generate_changelog.py Replace repo links. Aug 22, 2018
generate_descriptor_proto.sh Merge from Google internal for 3.4 release Jul 18, 2017
post_process_dist.sh Removed javanano from post_process_dist.sh Jun 5, 2018
protobuf-lite.pc.in Uncomment conflict fields from pkg-config files. May 12, 2015
protobuf.bzl Change deprecated Bazel single file attr param Aug 15, 2018
protobuf.pc.in Uncomment conflict fields from pkg-config files. May 12, 2015
six.BUILD Add srcs_version = "PY2AND3" in BUILD files Dec 3, 2015
tests.sh Fix go tests. Aug 23, 2018
update_file_lists.sh fix duplicate mkdir in update_file_lists.sh Apr 25, 2018

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 Ubuntu MacOS Windows
C++ (include C++ runtime and protoc) src Build status Build status Build status
Build status
Build status
Java java Build status
Build status
Build status
Python python Build status
Build status
Build status
Build status
Build status
Objective-C objectivec Build status
Build status
Build status
Build status
C# csharp Build status Build status
JavaScript js Build status Build status
Ruby ruby Build status Build status
Build status
Go golang/protobuf
PHP php Build status
Build status
Build status
Build status
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/