• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

benchmarks/H03-May-2022-14,10512,777

cmake/H03-May-2022-1,9281,667

conformance/H03-May-2022-16,33012,522

editors/H03-May-2022-334188

examples/H03-May-2022-1,3731,047

m4/H08-Jun-2021-11,0139,804

objectivec/H08-Jun-2021-6761

src/H03-May-2022-296,167220,456

third_party/H08-Jun-2021-282,720200,071

util/python/H08-Jun-2021-2119

BUILDH A D08-Jun-202143.5 KiB1,2711,170

LICENSEH A D08-Jun-20211.7 KiB3328

Makefile.amH A D08-Jun-2021106.4 KiB1,4541,419

Makefile.inH A D03-May-2022135.2 KiB2,3752,244

README.mdH A D08-Jun-20213.9 KiB8661

WORKSPACEH A D08-Jun-20212.5 KiB9982

aclocal.m4H A D08-Jun-202144.9 KiB1,2411,129

ar-libH A D08-Jun-20215.7 KiB272211

autogen.shH A D08-Jun-20211.2 KiB4524

build_files_updated_unittest.shH A D08-Jun-20211.7 KiB6339

cc_proto_blacklist_test.bzlH A D08-Jun-2021999 3930

compileH A D08-Jun-20217.2 KiB349259

compiler_config_setting.bzlH A D08-Jun-2021964 2422

config.guessH A D08-Jun-202143.2 KiB1,4811,288

config.h.inH A D08-Jun-20213.8 KiB155109

config.subH A D08-Jun-202135.3 KiB1,8021,661

configureH A D08-Jun-2021710.7 KiB23,51819,596

configure.acH A D08-Jun-20217.8 KiB248213

depcompH A D08-Jun-202123 KiB792502

generate_descriptor_proto.shH A D08-Jun-20213.1 KiB11689

install-shH A D08-Jun-202115 KiB542352

internal.bzlH A D08-Jun-20211 KiB3025

ltmain.shH A D08-Jun-2021319.6 KiB11,2528,044

missingH A D08-Jun-20216.7 KiB216143

protobuf-lite.pc.inH A D08-Jun-2021281 1210

protobuf.bzlH A D08-Jun-202117.3 KiB517451

protobuf.pc.inH A D08-Jun-2021303 1411

protobuf_deps.bzlH A D08-Jun-20213.4 KiB7463

test-driverH A D08-Jun-20214.6 KiB15188

update_file_lists.shH A D08-Jun-20216.4 KiB197163

README.md

1Protocol Buffers - Google's data interchange format
2===================================================
3
4Copyright 2008 Google Inc.
5
6https://developers.google.com/protocol-buffers/
7
8Overview
9--------
10
11Protocol Buffers (a.k.a., protobuf) are Google's language-neutral,
12platform-neutral, extensible mechanism for serializing structured data. You
13can find [protobuf's documentation on the Google Developers site](https://developers.google.com/protocol-buffers/).
14
15This README file contains protobuf installation instructions. To install
16protobuf, you need to install the protocol compiler (used to compile .proto
17files) and the protobuf runtime for your chosen programming language.
18
19Protocol Compiler Installation
20------------------------------
21
22The protocol compiler is written in C++. If you are using C++, please follow
23the [C++ Installation Instructions](src/README.md) to install protoc along
24with the C++ runtime.
25
26For non-C++ users, the simplest way to install the protocol compiler is to
27download a pre-built binary from our release page:
28
29  [https://github.com/protocolbuffers/protobuf/releases](https://github.com/protocolbuffers/protobuf/releases)
30
31In the downloads section of each release, you can find pre-built binaries in
32zip packages: protoc-$VERSION-$PLATFORM.zip. It contains the protoc binary
33as well as a set of standard .proto files distributed along with protobuf.
34
35If you are looking for an old version that is not available in the release
36page, check out the maven repo here:
37
38  [https://repo1.maven.org/maven2/com/google/protobuf/protoc/](https://repo1.maven.org/maven2/com/google/protobuf/protoc/)
39
40These pre-built binaries are only provided for released versions. If you want
41to use the github master version at HEAD, or you need to modify protobuf code,
42or you are using C++, it's recommended to build your own protoc binary from
43source.
44
45If you would like to build protoc binary from source, see the [C++ Installation
46Instructions](src/README.md).
47
48Protobuf Runtime Installation
49-----------------------------
50
51Protobuf supports several different programming languages. For each programming
52language, you can find instructions in the corresponding source directory about
53how to install protobuf runtime for that specific language:
54
55| Language                             | Source                                                      |
56|--------------------------------------|-------------------------------------------------------------|
57| C++ (include C++ runtime and protoc) | [src](src)                                                  |
58| Java                                 | [java](java)                                                |
59| Python                               | [python](python)                                            |
60| Objective-C                          | [objectivec](objectivec)                                    |
61| C#                                   | [csharp](csharp)                                            |
62| JavaScript                           | [js](js)                                                    |
63| Ruby                                 | [ruby](ruby)                                                |
64| Go                                   | [protocolbuffers/protobuf-go](https://github.com/protocolbuffers/protobuf-go)|
65| PHP                                  | [php](php)                                                  |
66| Dart                                 | [dart-lang/protobuf](https://github.com/dart-lang/protobuf) |
67
68Quick Start
69-----------
70
71The best way to learn how to use protobuf is to follow the tutorials in our
72developer guide:
73
74https://developers.google.com/protocol-buffers/docs/tutorials
75
76If you want to learn from code examples, take a look at the examples in the
77[examples](examples) directory.
78
79Documentation
80-------------
81
82The complete documentation for Protocol Buffers is available via the
83web at:
84
85https://developers.google.com/protocol-buffers/
86