my rage from v8 is spilling over
Go to file
Joshua Haberman afeb6d8181
Merge pull request #9451 from haberman/ruby-dataloss-bugfix
Fixed data loss bug in Ruby extension
2022-01-27 18:20:42 -08:00
.github
benchmarks Fix benchmark by making sure we use Python 3 (#9170) (#9176) 2021-11-01 11:44:58 -07:00
cmake Remove references to HAVE_PTHREAD (#9100) 2021-10-15 13:10:38 -07:00
conformance
csharp Update protobuf version 2022-01-10 18:08:15 -08:00
docs Add prost and quick-protobuf to third_party.md (#9104) 2021-10-15 13:12:01 -07:00
editors
examples
java Update protobuf version 2022-01-10 18:08:15 -08:00
js Update protobuf version 2022-01-10 18:08:15 -08:00
kokoro Merge branch '3.18.x' into merge-3.18.x 2021-12-22 23:04:07 +00:00
m4
objectivec
php Fixed data loss bug with PHP C extension. 2022-01-27 17:06:41 -08:00
protoc-artifacts Update protobuf version 2022-01-10 18:08:15 -08:00
python Make libprotobuf symbols local on OSX (#8346) (#9435) 2022-01-25 08:24:12 -08:00
ruby Fixed data loss bug in Ruby extension. 2022-01-27 17:29:12 -08:00
src Update protobuf version 2022-01-10 18:08:15 -08:00
third_party Remove references to six (#9096) 2021-10-13 13:51:09 -07:00
toolchain
util/python
.bazelignore
.gitignore
.gitmodules
.readthedocs.yml
appveyor.bat
appveyor.yml
autogen.sh
BUILD Remove references to HAVE_PTHREAD (#9100) 2021-10-15 13:10:38 -07:00
build_files_updated_unittest.sh
cc_proto_blacklist_test.bzl
CHANGES.txt Merge branch '3.19.x' into ruby-dataloss-bugfix 2022-01-27 18:17:23 -08:00
compiler_config_setting.bzl
composer.json
configure.ac Update protobuf version 2022-01-10 18:08:15 -08:00
CONTRIBUTING.md
CONTRIBUTORS.txt
fix_permissions.sh
generate_changelog.py
generate_descriptor_proto.sh
global.json
internal.bzl
LICENSE
Makefile.am Improve performance of parsing unknown fields in Java (#9371) 2022-01-05 10:05:11 -08:00
maven_install.json
post_process_dist.sh
protobuf_deps.bzl Align dependency handling with Bazel best practices (#9165) 2021-10-28 10:34:54 -07:00
protobuf_version.bzl Update protobuf version 2022-01-10 18:08:15 -08:00
Protobuf-C++.podspec Update protobuf version 2022-01-10 18:08:15 -08:00
protobuf-lite.pc.in Remove references to HAVE_PTHREAD (#9100) 2021-10-15 13:10:38 -07:00
protobuf.bzl
protobuf.pc.in Remove references to HAVE_PTHREAD (#9100) 2021-10-15 13:10:38 -07:00
Protobuf.podspec Update protobuf version 2022-01-10 18:08:15 -08:00
README.md
SECURITY.md
tests.sh Add python 3.10 (#9034) 2021-10-15 10:24:49 -07:00
update_compatibility_version.py
update_file_lists.sh
update_version.py
WORKSPACE Align dependency handling with Bazel best practices (#9165) 2021-10-28 10:34:54 -07:00

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/