https://github.com/protocolbuffers/protobuf
Protocol Buffers - Google's data interchange format
https://github.com/protocolbuffers/protobuf
Keywords
marshalling protobuf protobuf-runtime protoc protocol-buffers protocol-compiler rpc serialization
Keywords from Contributors
rubygems activerecord activejob mvc rack rubocop ruby-gem sinatra deployment crash-reporting
Last synced: about 7 hours ago
JSON representation
Repository metadata
Protocol Buffers - Google's data interchange format
- Host: GitHub
- URL: https://github.com/protocolbuffers/protobuf
- Owner: protocolbuffers
- License: other
- Created: 2014-08-26T15:52:15.000Z (almost 12 years ago)
- Default Branch: main
- Last Pushed: 2026-08-14T16:17:03.000Z (2 days ago)
- Last Synced: 2026-08-14T16:17:38.123Z (2 days ago)
- Topics: marshalling, protobuf, protobuf-runtime, protoc, protocol-buffers, protocol-compiler, rpc, serialization
- Language: C++
- Homepage: http://protobuf.dev
- Size: 227 MB
- Stars: 71,729
- Watchers: 2,008
- Forks: 16,214
- Open Issues: 306
- Releases: 218
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Codeowners: .github/CODEOWNERS
- Security: SECURITY.md
README.md
Protocol Buffers - Google's data interchange format
Copyright 2008 Google LLC
Overview
Protocol Buffers (a.k.a., protobuf) are Google's language-neutral,
platform-neutral, extensible mechanism for serializing structured data. You
can learn more about it in protobuf's documentation.
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.
Working With Protobuf Source Code
Most users will find working from
supported releases to be
the easiest path.
If you choose to work from the head revision of the main branch your build will
occasionally be broken by source-incompatible changes and insufficiently-tested
(and therefore broken) behavior.
If you are using C++ or otherwise need to build protobuf from source as a part
of your project, you should pin to a release commit on a release branch.
This is because even release branches can experience some instability in between
release commits.
Bazel with Bzlmod
Protobuf supports
Bzlmod with Bazel 8 +.
Users should specify a dependency on protobuf in their MODULE.bazel file as
follows.
bazel_dep(name = "protobuf", version = <VERSION>)
Users can optionally override the repo name, such as for compatibility with
WORKSPACE.
bazel_dep(name = "protobuf", version = <VERSION>, repo_name = "com_google_protobuf")
Bazel with WORKSPACE
Users can also add the following to their legacy
WORKSPACE file.
Note that with the release of 30.x there are a few more load statements to
properly set up rules_java and rules_python.
http_archive(
name = "com_google_protobuf",
strip_prefix = "protobuf-VERSION",
sha256 = ...,
url = ...,
)
load("@com_google_protobuf//:protobuf_deps.bzl", "protobuf_deps")
protobuf_deps()
load("@rules_java//java:rules_java_deps.bzl", "rules_java_dependencies")
rules_java_dependencies()
load("@rules_java//java:repositories.bzl", "rules_java_toolchains")
rules_java_toolchains()
load("@rules_python//python:repositories.bzl", "py_repositories")
py_repositories()
Protobuf Compiler Installation
The protobuf 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 GitHub release page.
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 repository.
These pre-built binaries are only provided for released versions. If you want
to use the github main 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 |
| Ruby | ruby |
| Go | protocolbuffers/protobuf-go |
| PHP | php |
| Dart | dart-lang/protobuf |
| JavaScript | protocolbuffers/protobuf-javascript |
Quick Start
The best way to learn how to use protobuf is to follow the tutorials in our
developer guide.
If you want to learn from code examples, take a look at the examples in the
examples directory.
Documentation
The complete documentation is available at the Protocol Buffers doc site.
Support Policy
Read about our version support policy
to stay current on support timeframes for the language libraries.
Developer Community
To be alerted to upcoming changes in Protocol Buffers and connect with protobuf developers and users,
join the Google Group.
Owner metadata
- Name: Protocol Buffers
- Login: protocolbuffers
- Email: protobuf@googlegroups.com
- Kind: organization
- Description: A language-neutral, platform-neutral extensible mechanism for serializing structured data.
- Website: https://developers.google.com/protocol-buffers/
- Location:
- Twitter:
- Company:
- Icon url: https://avatars.githubusercontent.com/u/26310541?v=4
- Repositories: 14
- Last ynced at: 2024-03-25T20:01:37.762Z
- Profile URL: https://github.com/protocolbuffers
GitHub Events
Total
- Create event: 5300
- Commit comment event: 22
- Release event: 27
- Delete event: 5028
- Member event: 4
- Pull request event: 8648
- Fork event: 732
- Issues event: 980
- Watch event: 4316
- Issue comment event: 3716
- Push event: 13419
- Pull request review event: 730
- Pull request review comment event: 405
Last Year
- Create event: 2397
- Commit comment event: 12
- Release event: 8
- Delete event: 2320
- Member event: 2
- Pull request event: 2472
- Fork event: 211
- Issues event: 414
- Watch event: 1208
- Issue comment event: 1055
- Push event: 5469
- Pull request review comment event: 107
- Pull request review event: 161
Committers metadata
Last synced: 1 day ago
Total Commits: 20,111
Total Committers: 1,395
Avg Commits per committer: 14.416
Development Distribution Score (DDS): 0.816
Commits in past year: 2,512
Committers in past year: 173
Avg Commits per committer in past year: 14.52
Development Distribution Score (DDS) in past year: 0.645
| Name | Commits | |
|---|---|---|
| Protobuf Team Bot | p****t@g****m | 3691 |
| Joshua Haberman | j****n@g****m | 2183 |
| Protobuf Team Bot | p****t@g****m | 1747 |
| Mike Kruskal | m****l@g****m | 1078 |
| Adam Cozzette | a****e@g****m | 683 |
| Jon Skeet | j****t@g****m | 583 |
| Paul Yang | T****g | 521 |
| Thomas Van Lenten | t****l@g****m | 500 |
| Joshua Haberman | j****a@r****g | 422 |
| Deanna Garcia | d****a@g****m | 416 |
| Hong Shin | h****n@g****m | 405 |
| Eric Salo | s****o@g****m | 380 |
| Sandy Zhang | s****g@g****m | 330 |
| Jisi Liu | j****u@g****m | 323 |
| Feng Xiao | x****f@g****m | 317 |
| Jan Tattermusch | j****h@g****m | 295 |
| Jie Luo | j****o@g****m | 284 |
| csharptest | r****r@c****t | 239 |
| Clayton Knittel | c****l@g****m | 231 |
| kenton@google.com | k****n@g****m@6****d | 184 |
| Mark Hansen | m****n@g****m | 154 |
| Samuel Benzaquen | s****a@g****m | 150 |
| Tony Liao | t****s@g****m | 115 |
| Matt Kulukundis | k****m@g****m | 104 |
| Yilun Chong | y****g@g****m | 98 |
| Hao Nguyen | h****n@g****m | 90 |
| Chris Kennelly | c****y@g****m | 88 |
| Sydney Acksman | o****r@g****m | 86 |
| David L. Jones | d****j@g****m | 82 |
| Elliotte Rusty Harold | e****o | 76 |
| and 1365 more... | ||
Committer domains:
- google.com: 302
- qq.com: 12
- 163.com: 7
- chromium.org: 6
- squareup.com: 6
- microsoft.com: 5
- apache.org: 5
- gmx.de: 4
- kitware.com: 3
- 126.com: 3
- android.com: 3
- us.ibm.com: 3
- pm.me: 2
- rohde-schwarz.com: 2
- ibm.com: 2
- amadeus.com: 2
- redhat.com: 2
- mozilla.com: 2
- bloomberg.net: 2
- tweag.io: 2
- arm.com: 2
- cern.ch: 2
- blueapron.com: 2
- foxmail.com: 2
- live.cn: 2
- buf.build: 2
- gradle.com: 2
- yandex-team.ru: 2
- engflow.com: 2
- cisco.com: 2
- peloton-tech.com: 2
- meumertzhe.im: 1
- smartaction.com: 1
- dlitz.net: 1
- quizlet.com: 1
- felixjendrusch.is: 1
- bucketplace.net: 1
- python.org: 1
- datacompboy.ru: 1
- buszta.info: 1
- gazprom-mt.com: 1
- oddsoftware.net: 1
- thoughtworks.com: 1
- canonical.com: 1
- qt.io: 1
- solodkiy.by: 1
- aminvakil.com: 1
- dsfishlabs.com: 1
- manetu.com: 1
- gatech.edu: 1
- snthhacks.com: 1
- github.com: 1
- pvl.dev: 1
- warrenfalk.com: 1
- houliston.me: 1
- iress.com: 1
- paneda.se: 1
- lvht.net: 1
- phystech.edu: 1
- shundaojia.com: 1
- mizux.net: 1
- ubuntu32.(none): 1
- race.u-tokyo.ac.jp: 1
- eger-andreas.de: 1
- asperasoft.com: 1
- slowdogs.com.au: 1
- cs.berkeley.edu: 1
- will.party: 1
- team.bumble.com: 1
- boanderson.me: 1
- hintergarten.de: 1
- boukeversteegh.nl: 1
- engine.com: 1
- nvidia.com: 1
- bryongloden.com: 1
- amazon.com: 1
- xiaofeng-macbookpro2.roam.corp.google.com: 1
- smarkets.com: 1
- mesosphere.io: 1
- lucidchart.com: 1
- castar.com: 1
- jc-lab.net: 1
- codexdigital.com: 1
- zendesk.com: 1
- autonomic.ai: 1
- systemviewinc.com: 1
- teboring-macpro.roam.corp.google.com: 1
- oblong.com: 1
- perpetualabs.com: 1
- kde.org: 1
- skyscanner.net: 1
- fiu.edu: 1
- linux.com: 1
- viasat.com: 1
- cox.net: 1
- liangsun.org: 1
- soe.ucsc.edu: 1
- adamyi.com: 1
- achingbrain.net: 1
- timin.me: 1
- transtex-llc.com: 1
- salilab.org: 1
- mcclymont.it: 1
- altitude.com: 1
- mytaste.com: 1
- crowdstrike.com: 1
- sofi.org: 1
- alien-scripts.de: 1
- zeroc.com: 1
- ethereum.org: 1
- worrbase.com: 1
- debian.org: 1
- jungroup.com: 1
- aliddell.com: 1
- sanders.org: 1
- ishiboo.com: 1
- netflix.com: 1
- plasma.ninja: 1
- ayende.com: 1
- lowe.nu: 1
- barbon.org: 1
- fittl.com: 1
- bouhuis.com: 1
- luminatewireless.com: 1
- aeongames.com: 1
- mad.cash: 1
- ngg.hu: 1
- ewout.name: 1
- dunelm.org.uk: 1
- comstyle.com: 1
- samegoal.com: 1
- daylessday.org: 1
- rubynerd.net: 1
- reverberate.org: 1
- csharptest.net: 1
- coderoom.net: 1
- yannic-bonenberger.com: 1
- newtonking.com: 1
- podsvirov.pro: 1
- leapmotion.com: 1
- palladion.com: 1
- deakin.edu.au: 1
- buildbuddy.io: 1
- bluewin.ch: 1
- nobis-crew.org: 1
- appliedintuition.com: 1
- aspect.dev: 1
- gmx.at: 1
- pobox.com: 1
- finalsite.com: 1
- airtime.com: 1
- noom.com: 1
- ntk.me: 1
- ostrovsky.org: 1
- connect.ust.hk: 1
- nexthink.com: 1
- peterzhu.ca: 1
- petewarden.com: 1
- myitcv.org.uk: 1
- spinorx.com: 1
- seravo.fi: 1
- infohazard.org: 1
- lixil.net: 1
- cstanhope.com: 1
- here.com: 1
- hecker.io: 1
- q42.nl: 1
- gmx.com: 1
- sofialondonmoskva.com: 1
- posteo.eu: 1
- bugqore.com: 1
- live.ru: 1
- bendb.com: 1
- pivotal.io: 1
- embeddedams.nl: 1
- parmet.com: 1
- 2f30.org: 1
- ivu.de: 1
- enner.org: 1
- reynoldsalexander.com: 1
- michaelwerle.com: 1
- locati.it: 1
- osrfoundation.org: 1
- smparkes.net: 1
- john-millikin.com: 1
- parnic.com: 1
- digital-static.net: 1
- shopify.com: 1
- jkvinge.net: 1
- userver.tech: 1
- vrg.cz: 1
- tetrate.io: 1
- reverb.com: 1
- quantexa.com: 1
- nkbrown.us: 1
- mnm.id.au: 1
- istellar.jp: 1
- sprenker.net: 1
- robcos.com: 1
- signalwerk.ch: 1
- jjerphan.xyz: 1
- heiko-becker.de: 1
- topbug.net: 1
- epitech.eu: 1
- atlassian.com: 1
- bakineggs.com: 1
- carlo.cab: 1
- savagexi.com: 1
- davidben.net: 1
- douglasheriot.com: 1
- goteleport.com: 1
- hotmail.com.br: 1
- danny.cz: 1
- hudlow.org: 1
- kortschak.io: 1
- ccci.org: 1
- joosweb.de: 1
- coderline.net: 1
- flipp.com: 1
- iskunk.org: 1
- sfu.ca: 1
- assiduo.com: 1
- free.fr: 1
- jetboystudio.com: 1
- bitspill.net: 1
- coachclientconnect.com: 1
- realify.com: 1
- datacom.ind.br: 1
- scaramanga.co.uk: 1
- winimage.com: 1
- emersonecologics.com: 1
- imgtec.com: 1
- gregoirege.is: 1
- xinzhanguo.cn: 1
- eklitzke.org: 1
- falkoaxmann.de: 1
- frederikspang.dk: 1
- chabek.cz: 1
- restphone.com: 1
- midnightlinux.com: 1
- jazzy.id.au: 1
- ehrhardt.nl: 1
- inai.de: 1
- sparist.com: 1
- bancel.me: 1
- somethingsimilar.com: 1
- leirbag.net: 1
- chasestevens.com: 1
- developer.geek.nz: 1
- me.com: 1
- stanford.edu: 1
- michaelcho.dev: 1
- hubspot.com: 1
- vomjom.net: 1
- thon.cc: 1
- naver.com: 1
- blockchaintp.com: 1
- monteiro.eti.br: 1
- lutter.sk: 1
- blueshiftlabs.net: 1
- monicz.dev: 1
- jvolkman.com: 1
- cpan.org: 1
- delta46.us: 1
- conductive.de: 1
- bellgeorge.com: 1
- stripe.com: 1
- mcchouse.com: 1
- barrettnexus.com: 1
- esciencecenter.nl: 1
- hey.com: 1
- bakken.io: 1
- sandstorm.io: 1
- oneiros.de: 1
- appian.com: 1
- fmgl.com.au: 1
- vip.qq.com: 1
- litwiniuk.net: 1
- arcor.de: 1
- spotify.com: 1
- marc-abramowitz.com: 1
- n-1.ch: 1
- teamviewer.com: 1
- improbable.io: 1
- markcostello.net: 1
- freeday.ai: 1
- tiger-222.fr: 1
- m1ke.me: 1
- blowmage.com: 1
- omenos.dev: 1
- students.iiit.ac.in: 1
- cognite.com: 1
- qslw.com: 1
- chinadtrace.org: 1
- nathanwong.co.uk: 1
- mernst.org: 1
- live.de: 1
- ronklein.co.il: 1
- rkxs.de: 1
- ironhidegames.com: 1
- yandex.com: 1
- netifi.com: 1
- elide.ventures: 1
- giga.or.at: 1
- fkie.fraunhofer.de: 1
- opencsw.org: 1
- spencerconnaughton.com: 1
- qrpff.net: 1
- harto.org: 1
- fortech.ro: 1
- fillmore-labs.com: 1
- indoorway.com: 1
- muet.com: 1
- pat.email: 1
- mongodb.com: 1
- kilink.net: 1
- pubref.org: 1
- nickpresta.ca: 1
- nilsand.re: 1
- norbert.tech: 1
- toasttab.com: 1
- sunpoet.net: 1
- folio3.com: 1
- nviso.ch: 1
- dolthub.com: 1
- cogitai.com: 1
- chequer.io: 1
- intrinsec.com: 1
- pfelton.co.uk: 1
- lithium.com: 1
- castrofamily.email: 1
- yoti.com: 1
- tower-research.com: 1
- ufmg.br: 1
- 1c.ru: 1
- deloitte.com: 1
- tut.by: 1
- snapchat.com: 1
- wepay.com: 1
- pipping.org: 1
- mail.ru: 1
- macos-powerpc.org: 1
- sethvargo.com: 1
- bns-g.com: 1
- intel.com: 1
- halas.net.pl: 1
- inbox.ru: 1
- aliyun.com: 1
- xiaomi.com: 1
- zajca.cz: 1
- randomguy3.me.uk: 1
- shmarya.net: 1
- guidancesoftware.com: 1
- asu.edu: 1
- jagels.us: 1
- saville.com: 1
- qiyi.com: 1
- yugui.jp: 1
- tsutsumi.io: 1
- abv.bg: 1
- trendvidia.com: 1
- factset.com: 1
- twice.moe: 1
- uebelandre.com: 1
- unistack.org: 1
- jvnv.net: 1
- usask.ca: 1
- freeform.co: 1
- wolfsden.cz: 1
- oracle.com: 1
- itwh.de: 1
- umn.edu: 1
- vsco.co: 1
- sedsystems.ca: 1
- robinlinden.eu: 1
- rogerhub.com: 1
- querifylabs.com: 1
- innovatrics.com: 1
- philwo.de: 1
- catenacyber.fr: 1
- informatik.hu-berlin.de: 1
- rocketmail.com: 1
- outlook.in: 1
- asctechnologies.com: 1
- passmail.net: 1
- jmarner.com: 1
- umich.edu: 1
- p2ware.com: 1
- barnesmail.net: 1
- ultraemail.net: 1
- glup.org: 1
- mails.ccnu.edu.cn: 1
- themoox.net: 1
- ucsd.edu: 1
- thekev.in: 1
Issue and Pull Request metadata
Last synced: about 10 hours ago
Total issues: 2,090
Total pull requests: 16,977
Average time to close issues: over 1 year
Average time to close pull requests: 11 days
Total issue authors: 1,642
Total pull request authors: 570
Average comments per issue: 4.45
Average comments per pull request: 0.43
Merged pull request: 6,069
Bot issues: 59
Bot pull requests: 14,727
Past year issues: 113
Past year pull requests: 2,195
Past year average time to close issues: about 1 month
Past year average time to close pull requests: 6 days
Past year issue authors: 90
Past year pull request authors: 155
Past year average comments per issue: 1.92
Past year average comments per pull request: 0.43
Past year merged pull request: 559
Past year bot issues: 7
Past year bot pull requests: 1,921
Top Issue Authors
- copybara-service[bot] (59)
- jhump (22)
- bshaffer (16)
- h-vetinari (11)
- calvin2021y (11)
- coryan (10)
- haberman (10)
- sgowroji (10)
- FabioBatSilva (9)
- jtattermusch (8)
- owent (7)
- vorburger (6)
- stepancheg (6)
- nathanielmanistaatgoogle (6)
- thomasvl (6)
Top Pull Request Authors
- copybara-service[bot] (14,666)
- zhangskz (285)
- mkruskal-google (179)
- acozzette (130)
- deannagarcia (66)
- dependabot[bot] (60)
- JasonLunn (57)
- tempoz (56)
- haberman (44)
- anandolee (32)
- y-yagi (31)
- cyyever (30)
- googleberg (25)
- bshaffer (25)
- esrauchg (22)
Top Issue Labels
- inactive (877)
- untriaged (436)
- c++ (299)
- python (186)
- enhancement (141)
- bug (114)
- c# (103)
- java (98)
- documentation (86)
- wait for user action (78)
- windows (59)
- help wanted (58)
- cmake (54)
- php (54)
- protoc (50)
- packaging & distribution (49)
- ruby (47)
- json (46)
- bazel (44)
- P3 (39)
- platform related (36)
- customer issue (27)
- cleanup (24)
- question (21)
- discussion (20)
- upb (20)
- syntax specification (20)
- mac (17)
- kotlin (15)
- wontfix (14)
Top Pull Request Labels
- inactive (218)
- back-port (123)
- c++ (105)
- wait for user action (101)
- ruby (94)
- :a: safe for tests (92)
- python (82)
- c# (73)
- dependencies (65)
- php (57)
- cla: yes (51)
- bazel (40)
- github_actions (38)
- cmake (35)
- java (34)
- jruby (31)
- upb (26)
- untriaged (24)
- cla: no (18)
- cleanup (17)
- protoc (16)
- documentation (12)
- rust (10)
- keep open (8)
- testing (8)
- windows (8)
- bug (8)
- conformance tests (7)
- json (7)
- editions (7)
Package metadata
- Total packages: 100
-
Total downloads:
- nuget: 1,381,075,682 total
- homebrew: 10 last-month
- pypi: 22,057 last-month
- npm: 32 last-month
- rubygems: 445,039,912 total
- conda: 83,663,820
- Total docker downloads: 9,870,090,527
- Total dependent packages: 7,729 (may contain duplicates)
- Total dependent repositories: 47,585 (may contain duplicates)
- Total versions: 3,859
- Total maintainers: 11
- Total advisories: 10
alpine-v3.18: protobuf-vim
Vim syntax for protobuf
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 3.21.12-r2 (published over 3 years ago)
- Last Synced: 2026-04-08T18:07:25.662Z (4 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Forks count: 0.0%
- Average: 0.007%
- Stargazers count: 0.03%
- Maintainers (1)
alpine-v3.18: libprotobuf-lite
Runtime library for C++ users with 'lite runtime' setting of protocol buffers
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 3.21.12-r2 (published over 3 years ago)
- Last Synced: 2026-08-05T20:02:06.290Z (11 days ago)
- Versions: 1
- Dependent Packages: 1
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Forks count: 0.0%
- Average: 0.007%
- Stargazers count: 0.03%
- Maintainers (1)
alpine-v3.18: py3-protobuf-pyc
Precompiled Python bytecode for py3-protobuf
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 4.21.12-r1 (published over 3 years ago)
- Last Synced: 2026-08-10T07:06:26.541Z (6 days ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Forks count: 0.0%
- Average: 0.007%
- Stargazers count: 0.03%
- Maintainers (1)
alpine-v3.18: protoc
Protocol buffer compiler binary and library
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 3.21.12-r2 (published over 3 years ago)
- Last Synced: 2026-04-08T18:07:41.271Z (4 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Forks count: 0.0%
- Average: 0.007%
- Stargazers count: 0.03%
- Maintainers (1)
alpine-v3.18: ruby-google-protobuf
Ruby bindings to Google's data interchange format
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 3.21.12-r2 (published over 3 years ago)
- Last Synced: 2026-04-08T18:07:38.735Z (4 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Forks count: 0.0%
- Average: 0.007%
- Stargazers count: 0.03%
- Maintainers (1)
alpine-v3.18: libprotobuf
Runtime library for C++ users of protocol buffers
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 3.21.12-r2 (published over 3 years ago)
- Last Synced: 2026-08-05T20:02:06.426Z (11 days ago)
- Versions: 1
- Dependent Packages: 4
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Forks count: 0.0%
- Average: 0.007%
- Stargazers count: 0.03%
- Maintainers (1)
alpine-v3.18: py3-protobuf
Google's data interchange format
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 4.21.12-r1 (published over 3 years ago)
- Last Synced: 2026-04-08T18:07:18.797Z (4 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Forks count: 0.0%
- Average: 0.007%
- Stargazers count: 0.03%
- Maintainers (1)
alpine-v3.18: libprotoc
Runtime library for Protocol Buffer compiler
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 3.21.12-r2 (published over 3 years ago)
- Last Synced: 2026-04-08T18:07:24.324Z (4 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Forks count: 0.0%
- Average: 0.007%
- Stargazers count: 0.03%
- Maintainers (1)
nixpkgs-24.05: emacsPackages.protobuf-mode
- Homepage: https://github.com/protocolbuffers/protobuf
- Documentation: https://github.com/NixOS/nixpkgs/blob/nixos-24.05/pkgs/applications/editors/emacs/elisp-packages/libgenerated.nix#L103
- Licenses: other
- Latest release: 20240222.1652 (published 7 months ago)
- Last Synced: 2026-08-14T00:41:28.741Z (3 days ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.034%
- Forks count: 0.054%
- Stargazers count: 0.08%
gem.coop: google-protobuf
Protocol Buffers are Google's data interchange format.
- Homepage: https://developers.google.com/protocol-buffers
- Documentation: http://www.rubydoc.info/gems/google-protobuf/
- Licenses: BSD-3-Clause
- Latest release: 4.35.1 (published 2 months ago)
- Last Synced: 2026-08-15T09:32:48.141Z (1 day ago)
- Versions: 1,720
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 445,039,912 Total
- Docker Downloads: 479,694,129
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Downloads: 0.06%
- Average: 0.068%
- Docker downloads count: 0.214%
- Maintainers (1)
- Advisories:
alpine-edge: libprotobuf
Runtime library for C++ users of protocol buffers
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 31.1-r3 (published 18 days ago)
- Last Synced: 2026-07-29T22:16:37.627Z (18 days ago)
- Versions: 17
- Dependent Packages: 16
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Forks count: 0.012%
- Stargazers count: 0.094%
- Average: 0.143%
- Dependent packages count: 0.466%
- Maintainers (1)
repo1.maven.org: com.google.protobuf:protobuf-java
Core Protocol Buffers library. Protocol Buffers are a way of encoding structured data in an efficient yet extensible format.
- Homepage: https://developers.google.com/protocol-buffers/
- Documentation: https://appdoc.app/artifact/com.google.protobuf/protobuf-java/
- Licenses: BSD-3-Clause
- Latest release: 4.35.1 (published 2 months ago)
- Last Synced: 2026-08-16T06:32:57.877Z (about 10 hours ago)
- Versions: 218
- Dependent Packages: 5,130
- Dependent Repositories: 38,630
- Docker Downloads: 5,974,255,433
-
Rankings:
- Docker downloads count: 0.01%
- Dependent packages count: 0.014%
- Dependent repos count: 0.025%
- Average: 0.186%
- Stargazers count: 0.352%
- Forks count: 0.53%
-
Advisories:
- protobuf-java has potential Denial of Service issue
- Protobuf Java vulnerable to Uncontrolled Resource Consumption
- Protobuf Java vulnerable to Uncontrolled Resource Consumption
- protobuf-java has a potential Denial of Service issue
- Withdrawn Advisory: NULL Pointer Dereference in Protocol Buffers
- A potential Denial of Service issue in protobuf-java
alpine-v3.17: libprotobuf
Runtime library for C++ users of protocol buffers
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 3.21.9-r0 (published almost 4 years ago)
- Last Synced: 2026-07-26T06:00:33.771Z (21 days ago)
- Versions: 1
- Dependent Packages: 54
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Forks count: 0.0%
- Stargazers count: 0.034%
- Average: 0.208%
- Dependent packages count: 0.797%
- Maintainers (1)
repo1.maven.org: com.google.protobuf:protobuf-java-util
Utilities for Protocol Buffers
- Homepage: https://developers.google.com/protocol-buffers/
- Documentation: https://appdoc.app/artifact/com.google.protobuf/protobuf-java-util/
- Licenses: BSD-3-Clause
- Latest release: 4.35.1 (published 2 months ago)
- Last Synced: 2026-08-15T09:32:41.331Z (1 day ago)
- Versions: 205
- Dependent Packages: 1,079
- Dependent Repositories: 4,923
- Docker Downloads: 3,416,140,827
-
Rankings:
- Docker downloads count: 0.026%
- Dependent packages count: 0.072%
- Dependent repos count: 0.132%
- Average: 0.222%
- Stargazers count: 0.352%
- Forks count: 0.529%
alpine-edge: py3-protobuf
Google's data interchange format
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 6.33.5-r0 (published 3 months ago)
- Last Synced: 2026-05-11T17:16:57.742Z (3 months ago)
- Versions: 11
- Dependent Packages: 7
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Forks count: 0.012%
- Stargazers count: 0.063%
- Average: 0.28%
- Dependent packages count: 1.045%
- Maintainers (1)
conda-forge.org: protobuf
Protocol buffers are Google's language-neutral, platform-neutral, extensible mechanism for serializing structured data,think XML, but smaller, faster, and simpler.
- Homepage: https://developers.google.com/protocol-buffers/
- Licenses: BSD-3-Clause
- Latest release: 4.21.9 (published almost 4 years ago)
- Last Synced: 2026-04-01T16:23:13.974Z (5 months ago)
- Versions: 67
- Dependent Packages: 205
- Dependent Repositories: 668
- Downloads: 29,434,080 Total
-
Rankings:
- Stargazers count: 0.145%
- Forks count: 0.15%
- Dependent packages count: 0.334%
- Average: 0.418%
- Dependent repos count: 1.043%
conda-forge.org: libprotobuf
Protocol buffers are Google's language-neutral, platform-neutral, extensible mechanism for serializing structured data- think XML, but smaller, faster, and simpler.
- Homepage: https://developers.google.com/protocol-buffers/
- Licenses: BSD-3-Clause
- Latest release: 3.21.9 (published almost 4 years ago)
- Last Synced: 2026-07-26T03:04:02.946Z (22 days ago)
- Versions: 57
- Dependent Packages: 97
- Dependent Repositories: 1,203
- Downloads: 52,099,771 Total
-
Rankings:
- Stargazers count: 0.145%
- Forks count: 0.15%
- Average: 0.418%
- Dependent repos count: 0.599%
- Dependent packages count: 0.779%
alpine-edge: protobuf
Library for extensible, efficient structure packing
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 31.1-r3 (published 18 days ago)
- Last Synced: 2026-07-29T22:16:38.714Z (18 days ago)
- Versions: 17
- Dependent Packages: 4
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Forks count: 0.012%
- Stargazers count: 0.063%
- Average: 0.455%
- Dependent packages count: 1.745%
- Maintainers (1)
alpine-edge: libprotobuf-lite
Runtime library for C++ users with 'lite runtime' setting of protocol buffers
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 31.1-r3 (published 18 days ago)
- Last Synced: 2026-07-29T22:16:37.938Z (18 days ago)
- Versions: 17
- Dependent Packages: 4
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Forks count: 0.012%
- Stargazers count: 0.063%
- Average: 0.455%
- Dependent packages count: 1.745%
- Maintainers (1)
alpine-edge: libprotoc
Runtime library for Protocol Buffer compiler
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 31.1-r3 (published 18 days ago)
- Last Synced: 2026-07-29T22:16:38.205Z (18 days ago)
- Versions: 18
- Dependent Packages: 3
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Forks count: 0.012%
- Stargazers count: 0.063%
- Average: 0.606%
- Dependent packages count: 2.348%
- Maintainers (1)
proxy.golang.org: github.com/protocolbuffers/protobuf
- Homepage: https://github.com/protocolbuffers/protobuf
- Documentation: https://pkg.go.dev/github.com/protocolbuffers/protobuf#section-documentation
- Licenses: BSD-3-Clause
- Latest release: v6.31.1+incompatible (published about 1 year ago)
- Last Synced: 2026-08-15T17:24:19.957Z (about 23 hours ago)
- Versions: 311
- Dependent Packages: 5
- Dependent Repositories: 68
-
Rankings:
- Forks count: 0.011%
- Stargazers count: 0.012%
- Dependent repos count: 0.708%
- Average: 0.742%
- Dependent packages count: 2.237%
- Advisories:
repo1.maven.org: com.google.protobuf:protoc
Protobuf Compiler (protoc) is a compiler for .proto files. It generates language-specific code for Protobuf messages and RPC interfaces.
- Homepage: https://developers.google.com/protocol-buffers/
- Documentation: https://appdoc.app/artifact/com.google.protobuf/protoc/
- Licenses: BSD-3-Clause
- Latest release: 4.35.1 (published 2 months ago)
- Last Synced: 2026-08-15T11:41:09.887Z (1 day ago)
- Versions: 220
- Dependent Packages: 70
- Dependent Repositories: 213
- Docker Downloads: 69
-
Rankings:
- Stargazers count: 0.352%
- Forks count: 0.529%
- Average: 0.761%
- Dependent packages count: 1.059%
- Dependent repos count: 1.103%
alpine-v3.17: py3-protobuf
Google's data interchange format
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 4.21.9-r1 (published almost 4 years ago)
- Last Synced: 2026-04-08T14:07:39.549Z (4 months ago)
- Versions: 1
- Dependent Packages: 9
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Forks count: 0.0%
- Stargazers count: 0.034%
- Average: 1.026%
- Dependent packages count: 4.07%
- Maintainers (1)
alpine-edge: protobuf-dev
Library for extensible, efficient structure packing (development files)
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 31.1-r3 (published 18 days ago)
- Last Synced: 2026-07-29T22:16:39.019Z (18 days ago)
- Versions: 17
- Dependent Packages: 1
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Forks count: 0.012%
- Stargazers count: 0.063%
- Average: 1.526%
- Dependent packages count: 6.031%
- Maintainers (1)
anaconda.org: libprotobuf
Protocol buffers are Google's language-neutral, platform-neutral, extensible mechanism for serializing structured data- think XML, but smaller, faster, and simpler.
- Homepage: https://developers.google.com/protocol-buffers/
- Licenses: BSD-3-Clause
- Latest release: 7.35.1 (published 25 days ago)
- Last Synced: 2026-07-22T19:04:53.481Z (25 days ago)
- Versions: 28
- Dependent Packages: 14
- Dependent Repositories: 1,203
- Downloads: 1,599,671 Total
-
Rankings:
- Stargazers count: 0.43%
- Forks count: 0.584%
- Average: 1.813%
- Dependent packages count: 2.55%
- Dependent repos count: 3.688%
anaconda.org: protobuf
Protocol buffers are Google's language-neutral, platform-neutral, extensible mechanism for serializing structured data,think XML, but smaller, faster, and simpler.
- Homepage: https://developers.google.com/protocol-buffers
- Licenses: BSD-3-Clause
- Latest release: 6.33.5 (published 6 months ago)
- Last Synced: 2026-08-10T07:06:27.259Z (6 days ago)
- Versions: 26
- Dependent Packages: 33
- Dependent Repositories: 668
-
Rankings:
- Stargazers count: 0.429%
- Forks count: 0.583%
- Dependent packages count: 0.889%
- Average: 2.047%
- Dependent repos count: 6.286%
alpine-edge: py3-protobuf-pyc
Precompiled Python bytecode for py3-protobuf
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 6.33.5-r0 (published 3 months ago)
- Last Synced: 2026-05-11T17:17:00.765Z (3 months ago)
- Versions: 10
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Forks count: 0.011%
- Stargazers count: 0.061%
- Average: 3.364%
- Dependent packages count: 13.386%
- Maintainers (1)
alpine-edge: ruby-google-protobuf
Ruby bindings to Google's data interchange format
- Homepage: https://github.com/protocolbuffers/protobuf
- Status: removed
- Licenses: BSD-3-Clause
- Latest release: 24.4-r4 (published almost 2 years ago)
- Last Synced: 2025-05-02T04:16:35.393Z (over 1 year ago)
- Versions: 12
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Forks count: 0.012%
- Stargazers count: 0.063%
- Average: 3.679%
- Dependent packages count: 14.641%
- Maintainers (1)
alpine-edge: protoc
Protocol buffer compiler binary and library
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 31.1-r3 (published 18 days ago)
- Last Synced: 2026-07-29T22:16:39.634Z (18 days ago)
- Versions: 17
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Forks count: 0.012%
- Stargazers count: 0.063%
- Average: 3.679%
- Dependent packages count: 14.641%
- Maintainers (1)
pypi.org: protobuf-distutils
This is a distutils extension to generate Python code for .proto files using an installed protoc binary.
- Homepage: https://github.com/protocolbuffers/protobuf/
- Documentation: https://protobuf-distutils.readthedocs.io/
- Licenses: 3-Clause BSD License
- Latest release: 1.0 (published almost 6 years ago)
- Last Synced: 2026-08-15T09:32:40.530Z (1 day ago)
- Versions: 2
- Dependent Packages: 0
- Dependent Repositories: 2
- Downloads: 21,668 Last month
-
Rankings:
- Stargazers count: 0.011%
- Forks count: 0.012%
- Average: 4.897%
- Downloads: 5.372%
- Dependent packages count: 7.303%
- Dependent repos count: 11.788%
- Maintainers (1)
proxy.golang.org: github.com/protocolbuffers/ProtoBuf
- Homepage: https://github.com/protocolbuffers/ProtoBuf
- Documentation: https://pkg.go.dev/github.com/protocolbuffers/ProtoBuf#section-documentation
- Licenses: BSD-3-Clause
- Latest release: v6.31.1+incompatible (published about 1 year ago)
- Last Synced: 2026-08-14T17:36:29.164Z (2 days ago)
- Versions: 309
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Forks count: 0.011%
- Stargazers count: 0.012%
- Average: 5.099%
- Dependent packages count: 9.575%
- Dependent repos count: 10.8%
nuget.org: tfg.protobuff35
See project site for more info.
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: other
- Latest release: 3.6.2 (published about 6 years ago)
- Last Synced: 2026-08-14T17:34:01.570Z (2 days ago)
- Versions: 3
- Dependent Packages: 4
- Dependent Repositories: 1
- Downloads: 10,217 Total
-
Rankings:
- Forks count: 0.002%
- Stargazers count: 0.002%
- Dependent packages count: 3.619%
- Average: 5.711%
- Dependent repos count: 7.026%
- Downloads: 17.904%
- Maintainers (2)
alpine-v3.17: ruby-google-protobuf
Ruby bindings to Google's data interchange format
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 3.21.9-r0 (published almost 4 years ago)
- Last Synced: 2026-04-08T14:07:05.494Z (4 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Forks count: 0.0%
- Stargazers count: 0.034%
- Average: 6.822%
- Dependent packages count: 27.254%
- Maintainers (1)
alpine-v3.17: protobuf-dev
Library for extensible, efficient structure packing (development files)
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 3.21.9-r0 (published almost 4 years ago)
- Last Synced: 2026-04-11T22:05:15.973Z (4 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Forks count: 0.0%
- Stargazers count: 0.034%
- Average: 6.822%
- Dependent packages count: 27.254%
- Maintainers (1)
alpine-v3.17: protoc
Protocol buffer compiler binary and library
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 3.21.9-r0 (published almost 4 years ago)
- Last Synced: 2026-04-11T22:05:18.218Z (4 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Forks count: 0.0%
- Stargazers count: 0.034%
- Average: 6.822%
- Dependent packages count: 27.254%
- Maintainers (1)
alpine-v3.17: protobuf
Library for extensible, efficient structure packing
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 3.21.9-r0 (published almost 4 years ago)
- Last Synced: 2026-07-28T05:01:33.631Z (19 days ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Forks count: 0.0%
- Stargazers count: 0.034%
- Average: 6.822%
- Dependent packages count: 27.254%
- Maintainers (1)
alpine-v3.17: protobuf-vim
Vim syntax for protobuf
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 3.21.9-r0 (published almost 4 years ago)
- Last Synced: 2026-08-10T07:06:26.113Z (6 days ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Forks count: 0.0%
- Stargazers count: 0.034%
- Average: 6.822%
- Dependent packages count: 27.254%
- Maintainers (1)
alpine-v3.17: libprotobuf-lite
Runtime library for C++ users with 'lite runtime' setting of protocol buffers
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 3.21.9-r0 (published almost 4 years ago)
- Last Synced: 2026-04-08T14:06:56.296Z (4 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Forks count: 0.0%
- Stargazers count: 0.034%
- Average: 6.822%
- Dependent packages count: 27.254%
- Maintainers (1)
nuget.org: google.protobuf
C# runtime library for Protocol Buffers - Google's data interchange format.
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: other
- Latest release: 3.35.1 (published 2 months ago)
- Last Synced: 2026-08-16T02:25:55.879Z (about 14 hours ago)
- Versions: 206
- Dependent Packages: 986
- Dependent Repositories: 0
- Downloads: 1,381,065,465 Total
-
Rankings:
- Stargazers count: 0.002%
- Forks count: 0.004%
- Downloads: 0.037%
- Average: 7.071%
- Dependent repos count: 14.976%
- Dependent packages count: 20.335%
- Maintainers (1)
formulae.brew.sh: protobuf@3
Protocol buffers (Google's data interchange format)
- Homepage: https://github.com/protocolbuffers/protobuf/
- Status: removed
- Licenses: BSD-3-Clause
- Latest release: 3.20.3 (published almost 4 years ago)
- Last Synced: 2026-08-15T09:32:43.462Z (1 day ago)
- Versions: 2
- Dependent Packages: 1
- Dependent Repositories: 2
- Downloads: 10 Last month
-
Rankings:
- Forks count: 0.029%
- Stargazers count: 0.128%
- Average: 8.762%
- Downloads: 9.367%
- Dependent packages count: 10.151%
- Dependent repos count: 24.137%
npmjs.org: @shaxbee/google-protobuf
Protocol Buffers for JavaScript
- Homepage:
- Licenses: BSD-3-Clause
- Latest release: 3.6.3 (published over 7 years ago)
- Last Synced: 2026-08-14T17:34:02.271Z (2 days ago)
- Versions: 3
- Dependent Packages: 1
- Dependent Repositories: 1
- Downloads: 25 Last month
-
Rankings:
- Stargazers count: 0.088%
- Forks count: 0.337%
- Average: 9.973%
- Dependent repos count: 10.702%
- Downloads: 17.663%
- Dependent packages count: 21.076%
- Maintainers (1)
npmjs.org: minified-google-protobuf
Protocol Buffers for JavaScript
- Homepage:
- Licenses: BSD-3-Clause
- Latest release: 1.0.0 (published about 5 years ago)
- Last Synced: 2026-08-15T17:32:08.450Z (about 23 hours ago)
- Versions: 1
- Dependent Packages: 1
- Dependent Repositories: 0
- Downloads: 7 Last month
-
Rankings:
- Stargazers count: 0.098%
- Forks count: 0.452%
- Average: 14.143%
- Dependent packages count: 16.224%
- Dependent repos count: 25.328%
- Downloads: 28.613%
- Maintainers (1)
repo1.maven.org: com.google.protobuf:protobuf-parent
Protocol Buffers are a way of encoding structured data in an efficient yet extensible format.
- Homepage: https://developers.google.com/protocol-buffers/
- Documentation: https://appdoc.app/artifact/com.google.protobuf/protobuf-parent/
- Licenses: BSD-3-Clause
- Latest release: 4.35.1 (published 2 months ago)
- Last Synced: 2026-08-15T09:32:42.139Z (1 day ago)
- Versions: 205
- Dependent Packages: 0
- Dependent Repositories: 3
- Docker Downloads: 69
-
Rankings:
- Stargazers count: 0.351%
- Forks count: 0.528%
- Dependent repos count: 13.691%
- Average: 16.111%
- Dependent packages count: 49.872%
- Advisories:
nuget.org: protobuf.static
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.
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: other
- Latest release: (published 2 days ago)
- Last Synced: 2026-08-14T17:35:32.613Z (2 days ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 12.697%
- Average: 16.122%
- Dependent packages count: 19.548%
conda-forge.org: libprotobuf-static
Protocol buffers are Google's language-neutral, platform-neutral, extensible mechanism for serializing structured data- think XML, but smaller, faster, and simpler.
- Homepage: https://developers.google.com/protocol-buffers/
- Licenses: BSD-3-Clause
- Latest release: 3.21.9 (published almost 4 years ago)
- Last Synced: 2026-04-01T16:12:23.769Z (5 months ago)
- Versions: 43
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 525,879 Total
-
Rankings:
- Stargazers count: 0.12%
- Forks count: 0.13%
- Average: 21.363%
- Dependent repos count: 34.025%
- Dependent packages count: 51.175%
anaconda.org: libprotobuf-static
Protocol buffers are Google's language-neutral, platform-neutral, extensible mechanism for serializing structured data- think XML, but smaller, faster, and simpler.
- Homepage: https://developers.google.com/protocol-buffers/
- Licenses: BSD-3-Clause
- Latest release: 7.35.1 (published 25 days ago)
- Last Synced: 2026-07-22T19:05:05.527Z (25 days ago)
- Versions: 16
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 4,308 Total
-
Rankings:
- Stargazers count: 0.372%
- Forks count: 0.609%
- Average: 24.62%
- Dependent packages count: 39.804%
- Dependent repos count: 57.694%
nuget.org: protobuf.cpp.devkit
A complete C++ Development Kit for Protocol Buffers. Includes headers and static libraries for x64 Windows.
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: (published 2 days ago)
- Last Synced: 2026-08-14T17:36:02.373Z (2 days ago)
- Versions: 3
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 6.204%
- Dependent packages count: 16.573%
- Average: 26.342%
- Downloads: 56.248%
- Maintainers (1)
formulae.brew.sh: protobuf@3.6
Protocol buffers (Google's data interchange format)
- Homepage: https://github.com/protocolbuffers/protobuf/
- Status: removed
- Licenses: BSD-3-Clause
- Latest release: 3.6.1.3 (published over 4 years ago)
- Last Synced: 2026-08-15T09:32:38.056Z (1 day ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 0 Last month
-
Rankings:
- Forks count: 0.06%
- Stargazers count: 0.151%
- Dependent packages count: 18.987%
- Average: 27.39%
- Dependent repos count: 50.731%
- Downloads: 67.019%
pypi.org: protobuf-odigos
Protocol Buffers
- Homepage: https://developers.google.com/protocol-buffers/
- Documentation: https://protobuf-odigos.readthedocs.io/
- Licenses: BSD-3-Clause
- Latest release:
- Last Synced: 2026-08-15T09:32:42.162Z (1 day ago)
- Versions: 5
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 389 Last month
-
Rankings:
- Dependent packages count: 10.417%
- Average: 34.527%
- Dependent repos count: 58.638%
- Maintainers (1)
anaconda.org: protobuf-bazel-rules
Bazel rules for protobuf
- Homepage: https://developers.google.com/protocol-buffers
- Licenses: BSD-3-Clause
- Latest release: 35.1 (published 20 days ago)
- Last Synced: 2026-07-30T02:04:03.202Z (18 days ago)
- Versions: 4
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 111 Total
-
Rankings:
- Dependent packages count: 42.087%
- Average: 44.178%
- Dependent repos count: 46.27%
guix: emacs-protobuf-mode
Protocol buffers major mode for Emacs
- Homepage: https://github.com/protocolbuffers/protobuf
- Documentation: https://git.savannah.gnu.org/cgit/guix.git/tree/gnu/packages/protobuf.scm#n668
- Licenses: bsd-3
- Latest release: 3.21.9 (published 6 months ago)
- Last Synced: 2026-08-10T07:07:15.796Z (6 days ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
alpine-v3.20: py3-protobuf-pyc
Precompiled Python bytecode for py3-protobuf
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 4.24.4-r1 (published over 2 years ago)
- Last Synced: 2026-03-22T08:13:03.554Z (5 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
- Maintainers (1)
alpine-v3.21: protobuf-vim
Vim syntax for protobuf
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 24.4-r4 (published almost 2 years ago)
- Last Synced: 2026-04-11T22:04:10.407Z (4 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
- Maintainers (1)
alpine-v3.23: py3-protobuf
Google's data interchange format
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 6.31.1-r1 (published 9 months ago)
- Last Synced: 2026-07-25T03:01:30.061Z (23 days ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
- Maintainers (1)
alpine-v3.20: libprotoc
Runtime library for Protocol Buffer compiler
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 24.4-r1 (published over 2 years ago)
- Last Synced: 2026-04-02T20:37:07.181Z (5 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
- Maintainers (1)
alpine-v3.21: libprotoc
Runtime library for Protocol Buffer compiler
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 24.4-r4 (published almost 2 years ago)
- Last Synced: 2026-03-28T06:06:42.794Z (5 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
- Maintainers (1)
alpine-v3.19: protobuf-vim
Vim syntax for protobuf
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 24.4-r0 (published almost 3 years ago)
- Last Synced: 2026-04-02T20:37:02.563Z (5 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
- Maintainers (1)
alpine-v3.21: py3-protobuf-pyc
Precompiled Python bytecode for py3-protobuf
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 4.24.4-r1 (published over 2 years ago)
- Last Synced: 2026-04-11T22:04:24.103Z (4 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
- Maintainers (1)
alpine-v3.19: py3-protobuf
Google's data interchange format
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 4.24.4-r0 (published almost 3 years ago)
- Last Synced: 2026-04-08T14:04:50.895Z (4 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
- Maintainers (1)
alpine-v3.21: protobuf
Library for extensible, efficient structure packing
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 24.4-r4 (published almost 2 years ago)
- Last Synced: 2026-04-11T22:04:10.416Z (4 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
- Maintainers (1)
alpine-v3.20: ruby-google-protobuf
Ruby bindings to Google's data interchange format
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 24.4-r1 (published over 2 years ago)
- Last Synced: 2026-04-08T09:57:10.831Z (4 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
- Maintainers (1)
alpine-v3.22: py3-protobuf-pyc
Precompiled Python bytecode for py3-protobuf
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 5.29.4-r0 (published over 1 year ago)
- Last Synced: 2026-08-10T07:07:04.000Z (6 days ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
- Maintainers (1)
alpine-v3.19: protobuf
Library for extensible, efficient structure packing
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 24.4-r0 (published almost 3 years ago)
- Last Synced: 2026-04-11T22:04:53.108Z (4 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
- Maintainers (1)
alpine-v3.22: libprotobuf-lite
Runtime library for C++ users with 'lite runtime' setting of protocol buffers
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 29.4-r0 (published over 1 year ago)
- Last Synced: 2026-08-10T07:06:37.831Z (6 days ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
- Maintainers (1)
alpine-v3.22: protobuf-vim
Vim syntax for protobuf
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 29.4-r0 (published over 1 year ago)
- Last Synced: 2026-04-11T22:04:00.722Z (4 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
- Maintainers (1)
alpine-v3.21: py3-protobuf
Google's data interchange format
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 4.24.4-r1 (published over 2 years ago)
- Last Synced: 2026-08-10T07:06:42.744Z (6 days ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
- Maintainers (1)
alpine-v3.23: protobuf-vim
Vim syntax for protobuf
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 31.1-r1 (published 11 months ago)
- Last Synced: 2026-07-24T20:37:43.362Z (23 days ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
- Maintainers (1)
alpine-v3.23: protobuf
Library for extensible, efficient structure packing
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 31.1-r1 (published 11 months ago)
- Last Synced: 2026-07-24T20:38:05.878Z (23 days ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
- Maintainers (1)
guix: protobuf-static
Data encoding for remote procedure calls (RPCs)
- Homepage: https://github.com/protocolbuffers/protobuf
- Documentation: https://git.savannah.gnu.org/cgit/guix.git/tree/gnu/packages/protobuf.scm#n270
- Licenses: other
- Latest release: 3.21.9 (published 5 months ago)
- Last Synced: 2026-08-10T07:07:17.835Z (6 days ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
alpine-v3.22: protoc
Protocol buffer compiler binary and library
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 29.4-r0 (published over 1 year ago)
- Last Synced: 2026-04-11T22:04:26.472Z (4 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
- Maintainers (1)
alpine-v3.21: protoc
Protocol buffer compiler binary and library
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 24.4-r4 (published almost 2 years ago)
- Last Synced: 2026-04-11T22:04:28.489Z (4 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
- Maintainers (1)
nixpkgs-unstable: emacsPackages.protobuf-mode
- Homepage: https://github.com/protocolbuffers/protobuf
- Documentation: https://github.com/NixOS/nixpkgs/blob/nixos-unstable/pkgs/applications/editors/emacs/elisp-packages/libgenerated.nix#L139
- Licenses: other
- Latest release: 20240823.1417 (published 7 months ago)
- Last Synced: 2026-05-13T14:09:22.257Z (3 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
alpine-v3.23: protobuf-dev
Library for extensible, efficient structure packing (development files)
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 31.1-r1 (published 11 months ago)
- Last Synced: 2026-07-24T20:37:55.668Z (23 days ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
- Maintainers (1)
alpine-v3.21: ruby-google-protobuf
Ruby bindings to Google's data interchange format
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 24.4-r4 (published almost 2 years ago)
- Last Synced: 2026-08-10T07:06:41.289Z (6 days ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
- Maintainers (1)
nixpkgs-23.11: emacsPackages.protobuf-mode
- Homepage: https://github.com/protocolbuffers/protobuf
- Documentation: https://github.com/NixOS/nixpkgs/blob/nixos-23.11/pkgs/applications/editors/emacs/elisp-packages/libgenerated.nix#L83
- Licenses: other
- Latest release: 20230506.330 (published 7 months ago)
- Last Synced: 2026-04-15T05:05:53.809Z (4 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
alpine-v3.22: libprotobuf
Runtime library for C++ users of protocol buffers
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 29.4-r0 (published over 1 year ago)
- Last Synced: 2026-04-11T22:04:17.374Z (4 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
- Maintainers (1)
alpine-v3.19: libprotobuf-lite
Runtime library for C++ users with 'lite runtime' setting of protocol buffers
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 24.4-r0 (published almost 3 years ago)
- Last Synced: 2026-08-10T07:06:40.910Z (6 days ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
- Maintainers (1)
alpine-v3.23: libprotoc
Runtime library for Protocol Buffer compiler
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 31.1-r1 (published 11 months ago)
- Last Synced: 2026-04-14T15:02:45.076Z (4 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
- Maintainers (1)
alpine-v3.22: protobuf
Library for extensible, efficient structure packing
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 29.4-r0 (published over 1 year ago)
- Last Synced: 2026-04-11T22:04:24.431Z (4 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
- Maintainers (1)
pkgsrc-netbsd-x86_64-10.1-all: devel/protobuf
Google protocol buffers
- Homepage: https://github.com/protocolbuffers/protobuf
- Documentation: https://pkgsrc.se/devel/protobuf
- Licenses: modified-bsd
- Latest release: 33.5 (published 6 months ago)
- Last Synced: 2026-05-27T06:34:49.024Z (3 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
alpine-v3.19: protobuf-dev
Library for extensible, efficient structure packing (development files)
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 24.4-r0 (published almost 3 years ago)
- Last Synced: 2026-04-02T20:37:03.075Z (5 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
- Maintainers (1)
nixpkgs-23.05: emacsPackages.protobuf-mode
- Homepage: https://github.com/protocolbuffers/protobuf
- Documentation: https://github.com/NixOS/nixpkgs/blob/nixos-23.05/pkgs/applications/editors/emacs/elisp-packages/libgenerated.nix#L83
- Licenses: other
- Latest release: 20230506.330 (published 7 months ago)
- Last Synced: 2026-08-04T19:10:42.144Z (12 days ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
alpine-v3.19: libprotoc
Runtime library for Protocol Buffer compiler
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 24.4-r0 (published almost 3 years ago)
- Last Synced: 2026-04-11T22:05:00.758Z (4 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
- Maintainers (1)
alpine-v3.20: protoc
Protocol buffer compiler binary and library
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 24.4-r1 (published over 2 years ago)
- Last Synced: 2026-04-11T22:04:53.140Z (4 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
- Maintainers (1)
alpine-v3.20: protobuf
Library for extensible, efficient structure packing
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 24.4-r1 (published over 2 years ago)
- Last Synced: 2026-04-02T04:14:10.136Z (5 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
- Maintainers (1)
alpine-v3.20: py3-protobuf
Google's data interchange format
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 4.24.4-r1 (published over 2 years ago)
- Last Synced: 2026-03-28T06:10:32.591Z (5 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
- Maintainers (1)
nixpkgs-24.11: emacsPackages.protobuf-mode
- Homepage: https://github.com/protocolbuffers/protobuf
- Documentation: https://github.com/NixOS/nixpkgs/blob/nixos-24.11/pkgs/applications/editors/emacs/elisp-packages/libgenerated.nix#L139
- Licenses: other
- Latest release: 20240823.1417 (published 7 months ago)
- Last Synced: 2026-04-14T18:01:33.050Z (4 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
alpine-v3.19: protoc
Protocol buffer compiler binary and library
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 24.4-r0 (published almost 3 years ago)
- Last Synced: 2026-03-23T16:15:10.338Z (5 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
- Maintainers (1)
openbsd-7.9-amd64: devel/protobuf
c++ protocol buffers
- Homepage: https://github.com/protocolbuffers/protobuf/
- Licenses: other
- Latest release: 6.34.1 (published 4 months ago)
- Last Synced: 2026-05-28T00:10:52.151Z (3 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
- Maintainers (1)
alpine-v3.23: protoc
Protocol buffer compiler binary and library
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 31.1-r1 (published 11 months ago)
- Last Synced: 2026-08-08T02:06:45.591Z (9 days ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
- Maintainers (1)
alpine-v3.21: libprotobuf-lite
Runtime library for C++ users with 'lite runtime' setting of protocol buffers
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 24.4-r4 (published almost 2 years ago)
- Last Synced: 2026-08-10T07:06:22.151Z (6 days ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
- Maintainers (1)
alpine-v3.20: protobuf-dev
Library for extensible, efficient structure packing (development files)
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 24.4-r1 (published over 2 years ago)
- Last Synced: 2026-03-22T08:13:04.435Z (5 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
- Maintainers (1)
alpine-v3.23: libprotobuf
Runtime library for C++ users of protocol buffers
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 31.1-r1 (published 11 months ago)
- Last Synced: 2026-04-14T15:02:46.132Z (4 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
- Maintainers (1)
alpine-v3.21: libprotobuf
Runtime library for C++ users of protocol buffers
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 24.4-r4 (published almost 2 years ago)
- Last Synced: 2026-04-11T22:04:28.460Z (4 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
- Maintainers (1)
alpine-v3.22: py3-protobuf
Google's data interchange format
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 5.29.4-r0 (published over 1 year ago)
- Last Synced: 2026-04-11T22:04:16.316Z (4 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
- Maintainers (1)
alpine-v3.19: ruby-google-protobuf
Ruby bindings to Google's data interchange format
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 24.4-r0 (published almost 3 years ago)
- Last Synced: 2026-04-08T14:05:12.771Z (4 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
- Maintainers (1)
alpine-v3.22: libprotoc
Runtime library for Protocol Buffer compiler
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 29.4-r0 (published over 1 year ago)
- Last Synced: 2026-04-11T22:03:57.539Z (4 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
- Maintainers (1)
alpine-v3.23: py3-protobuf-pyc
Precompiled Python bytecode for py3-protobuf
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 6.31.1-r1 (published 9 months ago)
- Last Synced: 2026-08-09T01:04:00.276Z (8 days ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
- Maintainers (1)
alpine-v3.20: libprotobuf
Runtime library for C++ users of protocol buffers
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 24.4-r1 (published over 2 years ago)
- Last Synced: 2026-04-11T22:04:55.170Z (4 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
- Maintainers (1)
alpine-v3.21: protobuf-dev
Library for extensible, efficient structure packing (development files)
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 24.4-r4 (published almost 2 years ago)
- Last Synced: 2026-04-11T22:04:28.317Z (4 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
- Maintainers (1)
Dependencies
- actions/checkout v3 composite
- google.golang.org/protobuf v1.27.1
- github.com/golang/protobuf v1.5.0
- github.com/google/go-cmp v0.5.5
- golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543
- google.golang.org/protobuf v1.26.0-rc.1
- google.golang.org/protobuf v1.27.1
- com.google.protobuf:protobuf-java 3.21.12
- com.google.protobuf:protobuf-java-util 3.21.12
- com.google.errorprone:error_prone_annotations 2.5.1
- com.google.protobuf:protobuf-java
- org.jetbrains.kotlin:kotlin-stdlib 1.6.0
- com.google.guava:guava test
- com.google.guava:guava-testlib test
- com.google.truth:truth test
- junit:junit test
- org.jetbrains.kotlin:kotlin-test 1.6.0 test
- org.mockito:mockito-core test
- com.google.protobuf:protobuf-bom 3.21.12 import
- com.google.guava:guava 31.1-android
- com.google.guava:guava-testlib 31.1-android test
- com.google.truth:truth 1.1.2 test
- junit:junit 4.13.2 test
- org.mockito:mockito-core 4.3.1 test
- org.jruby:jruby-complete 9.2.20.1 provided
- com.google.protobuf:protobuf-java-util 3.21.12
- Microsoft.NETFramework.ReferenceAssemblies 1.0.0-preview.2 development
- NUnit 3.6.1
- NUnitLite 3.6.1
- Microsoft.NETFramework.ReferenceAssemblies 1.0.0 development
- Microsoft.SourceLink.GitHub 1.0.0 development
- System.Memory 4.5.3
- System.Runtime.CompilerServices.Unsafe 4.5.2
- Microsoft.NETFramework.ReferenceAssemblies 1.0.2 development
- Microsoft.NET.Test.Sdk 17.1.0
- NUnit 3.13.3
- NUnit3TestAdapter 4.2.1
- Microsoft.NETFramework.ReferenceAssemblies 1.0.2 development
- phpunit/phpunit >=5.0.0 <8.5.27 development
- php >=7.0.0
- protobuf
- googleapis-common-protos ==1.56.1
- jinja2 ==3.0.0
- sphinx ==3.0.4
- sphinx_rtd_theme ==0.4.3
- sphinxcontrib-napoleon ==0.7
- rake-compiler ~> 1.1.0 development
- test-unit ~> 3.0, >= 3.0.9 development
- actions/cache 627f0f41f6904a5b1efbaed9f96d9eb58e92e920 composite
- actions/checkout ac593985615ec2ede58e132d2e21d2b1cbd6127c composite
- actions/checkout ac593985615ec2ede58e132d2e21d2b1cbd6127c composite
- actions/checkout ac593985615ec2ede58e132d2e21d2b1cbd6127c composite
- ilammy/msvc-dev-cmd cec98b9d092141f74527d0afa6feb2af698cfe89 composite
- protocolbuffers/protobuf-ci/bash v2 composite
- protocolbuffers/protobuf-ci/bazel v2 composite
- protocolbuffers/protobuf-ci/bazel-docker v2 composite
- protocolbuffers/protobuf-ci/cross-compile-protoc v2 composite
- protocolbuffers/protobuf-ci/docker v2 composite
- protocolbuffers/protobuf-ci/sccache v2 composite
- actions/checkout ac593985615ec2ede58e132d2e21d2b1cbd6127c composite
- actions/setup-dotnet 607fce577a46308457984d59e4954e075820f10a composite
- protocolbuffers/protobuf-ci/bazel-docker v2 composite
- protocolbuffers/protobuf-ci/docker v2 composite
- actions/checkout ac593985615ec2ede58e132d2e21d2b1cbd6127c composite
- googleapis/java-cloud-bom/tests/validate-bom fd56f04bb0bc581776a74031591f0b3bc5e7920a composite
- protocolbuffers/protobuf-ci/bazel-docker v2 composite
- protocolbuffers/protobuf-ci/cross-compile-protoc v2 composite
- actions/checkout ac593985615ec2ede58e132d2e21d2b1cbd6127c composite
- protocolbuffers/protobuf-ci/bash v2 composite
- protocolbuffers/protobuf-ci/bazel v2 composite
- protocolbuffers/protobuf-ci/ccache v2 composite
- actions/checkout ac593985615ec2ede58e132d2e21d2b1cbd6127c composite
- protocolbuffers/protobuf-ci/bash v2 composite
- protocolbuffers/protobuf-ci/bazel v2 composite
- protocolbuffers/protobuf-ci/composer-setup v2 composite
- protocolbuffers/protobuf-ci/cross-compile-protoc v2 composite
- protocolbuffers/protobuf-ci/docker v2 composite
- shivammathur/setup-php d30ad8b1843ace22e6698ab99bbafaa747b6bd0d composite
- actions/checkout ac593985615ec2ede58e132d2e21d2b1cbd6127c composite
- actions/download-artifact 9bc31d5ccc31df68ecc42ccf4149144866c47d8a composite
- actions/upload-artifact 0b7f8abb1508181956e8e162db84b466c27e18ce composite
- protocolbuffers/protobuf-ci/bazel v2 composite
- actions/checkout ac593985615ec2ede58e132d2e21d2b1cbd6127c composite
- actions/setup-python 61a6322f88396a6271a6ee3565807d608ecaddd1 composite
- protocolbuffers/protobuf-ci/bazel v2 composite
- protocolbuffers/protobuf-ci/bazel-docker v2 composite
- actions/checkout ac593985615ec2ede58e132d2e21d2b1cbd6127c composite
- protocolbuffers/protobuf-ci/bazel v2 composite
- protocolbuffers/protobuf-ci/bazel-docker v2 composite
- protocolbuffers/protobuf-ci/cross-compile-protoc v2 composite
- protocolbuffers/protobuf-ci/docker v2 composite
- ruby/setup-ruby ee26e27437bde475b19a6bf8cb73c9fa658876a2 composite
- actions-ecosystem/action-remove-labels 2ce5d41b4b6aa8503e285553f75ed56e0a40bae0 composite
- actions/checkout ac593985615ec2ede58e132d2e21d2b1cbd6127c composite
- protocolbuffers/protobuf-ci/bazel-docker v2 composite
- actions/checkout ac593985615ec2ede58e132d2e21d2b1cbd6127c composite
- actions/upload-artifact v3 composite
- protocolbuffers/protobuf-ci/bazel v2 composite
- protocolbuffers/protobuf-ci/bazel-docker v2 composite
- com.google.protobuf:protobuf-bom 3.23.2 import
- io.grpc:grpc-bom 1.55.3 import
- com.google.api.grpc:grpc-google-common-protos 2.22.0
- com.google.api.grpc:proto-google-common-protos 2.22.0
- com.google.api.grpc:proto-google-iam-v1 1.17.0
- com.google.api.grpc:proto-google-iam-v2 1.17.0
- com.google.api.grpc:proto-google-iam-v2beta 1.17.0
- com.google.cloud:google-cloud-bigquery 2.29.0
- com.google.cloud:google-cloud-bigtable 2.24.1
- actions/checkout 93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 composite
- actions/upload-artifact 3cea5372237819ed00197afe530f5a7ea3e805c8 composite
- github/codeql-action/upload-sarif 17573ee1cc1b9d061760f3a006fc4aac4f944fd5 composite
- ossf/scorecard-action e38b1902ae4f44df626f11ba0734b14fb91f8f86 composite
- numpy <=1.24.4
- abseil-py 2.1.0 development
- com_google_protobuf_previous_release 29.0 development
- com_google_protobuf_v25 25.0 development
- google_benchmark 1.9.2 development
- googleapis 0.0.0-20240819-fe8ba054a development
- googletest 1.15.2 development
- lua 5.4.6 development
- rules_buf 0.3.0 development
- rules_fuzzing 0.5.3 development
- rules_ruby 0.17.3 development
- rules_rust 0.63.0 development
- rules_testing 0.9.0 development
- abseil-cpp 20250512.1
- apple_support 1.15.1
- bazel_features 1.33.0
- bazel_skylib 1.9.0
- jsoncpp 1.9.6
- platforms 0.0.11
- re2 2024-07-02.bcr.1
- rules_cc 0.0.17
- rules_java 8.6.1
- rules_jvm_external 6.7
- rules_kotlin 1.9.6
- rules_license 1.0.0
- rules_pkg 1.0.1
- rules_python 1.6.0
- rules_shell 0.2.0
- zlib 1.3.1.bcr.5
- protocolbuffers/protobuf-ci/bazel-docker v5 composite
- protocolbuffers/protobuf-ci/checkout v5 composite
- protocolbuffers/protobuf-ci/checkout v5 composite
- libprotobuf 3.11.4
- make 4.2.1
- pip 19.3.1
- python 3.7.6
- sphinx 2.4.0
- sphinx_rtd_theme 0.4.3
- com_google_protobuf-examples-with-hyphen 0.0.0 development
- bazel_skylib 1.7.1
- protobuf 0.0.0
- rules_cc 0.0.17
- rules_java 8.6.1
- rules_pkg 1.0.1
- rules_python 1.6.0
- protobuf 0.0.0
- bigdecimal 4.0.1
- bundler 2.6.6
- ffi 1.17.3
- ffi-compiler 1.3.2
- power_assert 3.0.1
- rake 13.3.1
- rake-compiler 1.3.1
- rake-compiler-dock 1.11.1
- test-unit 3.7.7
Score: 41.615223089465594