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 sinatra ruby-gem rubocop crash-reporting deployment
Last synced: about 22 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 (about 12 years ago)
- Default Branch: main
- Last Pushed: 2026-09-07T12:45:12.000Z (1 day ago)
- Last Synced: 2026-09-07T12:58:43.097Z (1 day ago)
- Topics: marshalling, protobuf, protobuf-runtime, protoc, protocol-buffers, protocol-compiler, rpc, serialization
- Language: C++
- Homepage: http://protobuf.dev
- Size: 229 MB
- Stars: 72,002
- Watchers: 2,011
- Forks: 16,274
- Open Issues: 312
- Releases: 220
-
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: 15
- Last ynced at: 2026-09-07T00:49:28.434Z
- Profile URL: https://github.com/protocolbuffers
GitHub Events
Total
- Commit comment event: 22
- Create event: 5385
- Delete event: 5091
- Fork event: 732
- Issue comment event: 3718
- Issues event: 982
- Member event: 4
- Pull request event: 8653
- Pull request review comment event: 406
- Pull request review event: 731
- Push event: 13670
- Release event: 27
- Watch event: 4317
Last Year
- Commit comment event: 10
- Create event: 2187
- Delete event: 2149
- Fork event: 158
- Issue comment event: 976
- Issues event: 382
- Member event: 2
- Pull request event: 1912
- Pull request review comment event: 99
- Pull request review event: 144
- Push event: 4856
- Release event: 5
- Watch event: 981
Committers metadata
Last synced: 1 day ago
Total Commits: 20,192
Total Committers: 1,397
Avg Commits per committer: 14.454
Development Distribution Score (DDS): 0.815
Commits in past year: 2,557
Committers in past year: 170
Avg Commits per committer in past year: 15.041
Development Distribution Score (DDS) in past year: 0.639
| Name | Commits | |
|---|---|---|
| Protobuf Team Bot | p****t@g****m | 3734 |
| Joshua Haberman | j****n@g****m | 2183 |
| Protobuf Team Bot | p****t@g****m | 1753 |
| 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 | 331 |
| 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 | 239 |
| kenton@google.com | k****n@g****m@6****d | 184 |
| Samuel Benzaquen | s****a@g****m | 163 |
| Mark Hansen | m****n@g****m | 154 |
| Tony Liao | t****s@g****m | 117 |
| 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 |
| Martijn Vels | m****s@g****m | 76 |
| and 1367 more... | ||
Committer domains:
- google.com: 303
- qq.com: 12
- 163.com: 7
- chromium.org: 6
- squareup.com: 6
- microsoft.com: 5
- apache.org: 5
- gmx.de: 4
- kitware.com: 3
- android.com: 3
- us.ibm.com: 3
- 126.com: 3
- redhat.com: 2
- pm.me: 2
- bloomberg.net: 2
- blueapron.com: 2
- rohde-schwarz.com: 2
- ibm.com: 2
- amadeus.com: 2
- foxmail.com: 2
- tweag.io: 2
- arm.com: 2
- cern.ch: 2
- live.cn: 2
- mozilla.com: 2
- gradle.com: 2
- buf.build: 2
- yandex-team.ru: 2
- engflow.com: 2
- cisco.com: 2
- peloton-tech.com: 2
- quizlet.com: 1
- thoughtworks.com: 1
- bucketplace.net: 1
- skyscanner.net: 1
- meumertzhe.im: 1
- python.org: 1
- datacompboy.ru: 1
- felixjendrusch.is: 1
- buszta.info: 1
- gazprom-mt.com: 1
- oddsoftware.net: 1
- dlitz.net: 1
- solodkiy.by: 1
- qt.io: 1
- canonical.com: 1
- aminvakil.com: 1
- viasat.com: 1
- warrenfalk.com: 1
- lvht.net: 1
- snthhacks.com: 1
- github.com: 1
- signalwerk.ch: 1
- robcos.com: 1
- manetu.com: 1
- houliston.me: 1
- iress.com: 1
- shundaojia.com: 1
- paneda.se: 1
- smartaction.com: 1
- phystech.edu: 1
- mizux.net: 1
- team.bumble.com: 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
- engine.com: 1
- transtex-llc.com: 1
- sofi.org: 1
- ivu.de: 1
- autonomic.ai: 1
- nvidia.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
- bryongloden.com: 1
- codexdigital.com: 1
- zendesk.com: 1
- teboring-macpro.roam.corp.google.com: 1
- kde.org: 1
- systemviewinc.com: 1
- oblong.com: 1
- perpetualabs.com: 1
- dsfishlabs.com: 1
- fiu.edu: 1
- cox.net: 1
- linux.com: 1
- liangsun.org: 1
- soe.ucsc.edu: 1
- adamyi.com: 1
- opencsw.org: 1
- achingbrain.net: 1
- timin.me: 1
- apiiro.com: 1
- salilab.org: 1
- alien-scripts.de: 1
- zeroc.com: 1
- altitude.com: 1
- ethereum.org: 1
- boanderson.me: 1
- hintergarten.de: 1
- mytaste.com: 1
- crowdstrike.com: 1
- aliddell.com: 1
- worrbase.com: 1
- sanders.org: 1
- debian.org: 1
- jungroup.com: 1
- ayende.com: 1
- bouhuis.com: 1
- fittl.com: 1
- mad.cash: 1
- plasma.ninja: 1
- lowe.nu: 1
- barbon.org: 1
- aeongames.com: 1
- luminatewireless.com: 1
- netflix.com: 1
- ishiboo.com: 1
- ewout.name: 1
- ngg.hu: 1
- dunelm.org.uk: 1
- comstyle.com: 1
- samegoal.com: 1
- daylessday.org: 1
- userver.tech: 1
- reverberate.org: 1
- csharptest.net: 1
- coderoom.net: 1
- yannic-bonenberger.com: 1
- newtonking.com: 1
- podsvirov.pro: 1
- palladion.com: 1
- leapmotion.com: 1
- deakin.edu.au: 1
- buildbuddy.io: 1
- nobis-crew.org: 1
- bluewin.ch: 1
- appliedintuition.com: 1
- aspect.dev: 1
- gmx.at: 1
- finalsite.com: 1
- pobox.com: 1
- noom.com: 1
- airtime.com: 1
- ntk.me: 1
- connect.ust.hk: 1
- enner.org: 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
- boukeversteegh.nl: 1
- ostrovsky.org: 1
- jkvinge.net: 1
- john-millikin.com: 1
- digital-static.net: 1
- shopify.com: 1
- parnic.com: 1
- locati.it: 1
- michaelwerle.com: 1
- smparkes.net: 1
- osrfoundation.org: 1
- rubynerd.net: 1
- vrg.cz: 1
- tetrate.io: 1
- reynoldsalexander.com: 1
- petersobot.com: 1
- reverb.com: 1
- quantexa.com: 1
- nkbrown.us: 1
- mnm.id.au: 1
- istellar.jp: 1
- sprenker.net: 1
- pvl.dev: 1
- frederikspang.dk: 1
- gregoirege.is: 1
- chasestevens.com: 1
- heiko-becker.de: 1
- topbug.net: 1
- epitech.eu: 1
- atlassian.com: 1
- carlo.cab: 1
- savagexi.com: 1
- mcclymont.it: 1
- jetboystudio.com: 1
- jjerphan.xyz: 1
- douglasheriot.com: 1
- bakineggs.com: 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
- davidben.net: 1
- glup.org: 1
- bitspill.net: 1
- leirbag.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
- goteleport.com: 1
- hotmail.com.br: 1
- xinzhanguo.cn: 1
- eklitzke.org: 1
- falkoaxmann.de: 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
- assiduo.com: 1
- live.de: 1
- me.com: 1
- michaelcho.dev: 1
- hubspot.com: 1
- vomjom.net: 1
- thon.cc: 1
- naver.com: 1
- blockchaintp.com: 1
- stanford.edu: 1
- monteiro.eti.br: 1
- lutter.sk: 1
- blueshiftlabs.net: 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
- monicz.dev: 1
- sandstorm.io: 1
- free.fr: 1
- freeday.ai: 1
- developer.geek.nz: 1
- oneiros.de: 1
- bakken.io: 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
- tiger-222.fr: 1
- m1ke.me: 1
- blowmage.com: 1
- omenos.dev: 1
- cognite.com: 1
- qslw.com: 1
- chinadtrace.org: 1
- nathanwong.co.uk: 1
- mernst.org: 1
- thekev.in: 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
- spencerconnaughton.com: 1
- qrpff.net: 1
- harto.org: 1
- fortech.ro: 1
- fillmore-labs.com: 1
- indoorway.com: 1
- students.iiit.ac.in: 1
- itwh.de: 1
- appian.com: 1
- muet.com: 1
- pat.email: 1
- mongodb.com: 1
- kilink.net: 1
- pubref.org: 1
- nickpresta.ca: 1
- nilsand.re: 1
- sunpoet.net: 1
- gatech.edu: 1
- folio3.com: 1
- nviso.ch: 1
- dolthub.com: 1
- cogitai.com: 1
- chequer.io: 1
- castrofamily.email: 1
- intrinsec.com: 1
- pfelton.co.uk: 1
- lithium.com: 1
- yoti.com: 1
- tower-research.com: 1
- ufmg.br: 1
- 1c.ru: 1
- deloitte.com: 1
- snapchat.com: 1
- wepay.com: 1
- pipping.org: 1
- mail.ru: 1
- macos-powerpc.org: 1
- sethvargo.com: 1
- bns-g.com: 1
- tut.by: 1
- norbert.tech: 1
- ucsd.edu: 1
- inbox.ru: 1
- aliyun.com: 1
- xiaomi.com: 1
- zajca.cz: 1
- randomguy3.me.uk: 1
- shmarya.net: 1
- guidancesoftware.com: 1
- wolfsden.cz: 1
- asu.edu: 1
- jagels.us: 1
- saville.com: 1
- qiyi.com: 1
- yugui.jp: 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
- tsutsumi.io: 1
- toasttab.com: 1
- halas.net.pl: 1
- innovatrics.com: 1
- umn.edu: 1
- vsco.co: 1
- sedsystems.ca: 1
- robinlinden.eu: 1
- rogerhub.com: 1
- querifylabs.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
- intel.com: 1
- jmarner.com: 1
- umich.edu: 1
- p2ware.com: 1
- barnesmail.net: 1
- ultraemail.net: 1
- mails.ccnu.edu.cn: 1
- themoox.net: 1
- oracle.com: 1
Issue and Pull Request metadata
Last synced: 2 days ago
Total issues: 6,946
Total pull requests: 28,617
Average time to close issues: 10 months
Average time to close pull requests: 19 days
Total issue authors: 4,879
Total pull request authors: 2,042
Average comments per issue: 4.1
Average comments per pull request: 0.87
Merged pull request: 12,210
Bot issues: 58
Bot pull requests: 20,330
Past year issues: 273
Past year pull requests: 6,157
Past year average time to close issues: 27 days
Past year average time to close pull requests: 5 days
Past year issue authors: 211
Past year pull request authors: 253
Past year average comments per issue: 2.54
Past year average comments per pull request: 0.43
Past year merged pull request: 2,050
Past year bot issues: 6
Past year bot pull requests: 5,459
Top Issue Authors
- jskeet (78)
- ghost (67)
- xfxyjwf (60)
- copybara-service[bot] (58)
- jtattermusch (54)
- jhump (40)
- bshaffer (36)
- elharo (34)
- haberman (28)
- thomasvl (27)
- blowmage (25)
- remicollet (23)
- TeBoring (21)
- protobufel (17)
- michaelbausor (15)
Top Pull Request Authors
- copybara-service[bot] (20,267)
- acozzette (464)
- TeBoring (390)
- mkruskal-google (379)
- zhangskz (363)
- haberman (334)
- deannagarcia (301)
- thomasvl (268)
- jskeet (203)
- liujisi (180)
- xfxyjwf (173)
- anandolee (123)
- jtattermusch (121)
- elharo (104)
- JasonLunn (102)
Top Issue Labels
- inactive (995)
- c++ (971)
- python (620)
- bug (596)
- question (546)
- enhancement (485)
- java (439)
- c# (398)
- php (367)
- untriaged (272)
- ruby (230)
- protoc (201)
- help wanted (201)
- wait for user action (186)
- packaging & distribution (175)
- documentation (173)
- P3 (163)
- json (154)
- windows (138)
- cleanup (131)
- bazel (129)
- cmake (128)
- objective-c (110)
- customer issue (91)
- platform related (78)
- mac (49)
- wontfix (49)
- P2 (49)
- keep open (43)
- java-lite (42)
Top Pull Request Labels
- cla: yes (4,060)
- c++ (504)
- c# (411)
- php (363)
- ruby (327)
- cla: no (325)
- python (280)
- inactive (266)
- bazel (233)
- java (222)
- objective-c (205)
- wait for user action (188)
- back-port (148)
- cmake (135)
- :a: safe for tests (128)
- cleanup (104)
- documentation (88)
- testing (77)
- packaging & distribution (74)
- dependencies (74)
- protoc (60)
- jruby (51)
- github_actions (40)
- kotlin (39)
- conformance tests (38)
- java-lite (35)
- windows (33)
- upb (33)
- obsolete (32)
- bug (24)
Package metadata
- Total packages: 100
-
Total downloads:
- homebrew: 10 last-month
- nuget: 38,471,902 total
- conda: 82,065,043 total
- npm: 364 last-month
- rubygems: 449,979,482 total
- pypi: 389 last-month
- Total docker downloads: 9,870,919,862
- Total dependent packages: 7,107 (may contain duplicates)
- Total dependent repositories: 47,184 (may contain duplicates)
- Total versions: 6,606
- Total maintainers: 29
- Total advisories: 9
alpine-v3.18: protobuf-dev
Library for extensible, efficient structure packing (development files)
- 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-22T07:27:22.940Z (17 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: protobuf
Library for extensible, efficient structure packing
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 3.21.12-r2 (published over 3 years ago)
- Last Synced: 2026-09-01T08:28:01.339Z (7 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: 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 (5 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: 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 (5 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: 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 (30 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: 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 (5 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 (about 1 month 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: 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 (5 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 (about 1 month 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)
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.36.1 (published 8 days ago)
- Last Synced: 2026-09-06T20:31:39.884Z (2 days ago)
- Versions: 1,744
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 449,979,482 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 about 1 month ago)
- Last Synced: 2026-07-29T22:16:37.627Z (about 1 month 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.36.1 (published 7 days ago)
- Last Synced: 2026-09-07T10:22:20.513Z (1 day ago)
- Versions: 220
- 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 (about 1 month 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.36.1 (published 7 days ago)
- Last Synced: 2026-09-06T20:31:51.946Z (2 days ago)
- Versions: 207
- 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 4 months ago)
- Last Synced: 2026-05-11T17:16:57.742Z (4 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-08-31T10:30:21.470Z (8 days 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 (about 1 month 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%
repo1.maven.org: com.google.protobuf:protobuf-bom
A compatible set of open source libraries for working with protocol buffers.
- Homepage: https://developers.google.com/protocol-buffers/
- Documentation: https://appdoc.app/artifact/com.google.protobuf/protobuf-bom/
- Licenses: BSD-3-Clause
- Latest release: 4.36.1 (published 7 days ago)
- Last Synced: 2026-09-07T18:33:17.922Z (1 day ago)
- Versions: 192
- Dependent Packages: 258
- Dependent Repositories: 593
- Docker Downloads: 69
-
Rankings:
- Stargazers count: 0.351%
- Dependent packages count: 0.365%
- Average: 0.447%
- Forks count: 0.529%
- Dependent repos count: 0.542%
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 about 1 month ago)
- Last Synced: 2026-07-29T22:16:37.938Z (about 1 month 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 about 1 month ago)
- Last Synced: 2026-07-29T22:16:38.205Z (about 1 month 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 over 1 year ago)
- Last Synced: 2026-09-07T06:14:27.643Z (1 day ago)
- Versions: 315
- 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.36.1 (published 7 days ago)
- Last Synced: 2026-09-07T16:45:35.318Z (1 day ago)
- Versions: 222
- 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%
repo1.maven.org: com.google.protobuf:protobuf-kotlin
Kotlin 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-kotlin/
- Licenses: BSD-3-Clause
- Latest release: 4.36.1 (published 7 days ago)
- Last Synced: 2026-09-07T18:51:40.077Z (1 day ago)
- Versions: 142
- Dependent Packages: 60
- Dependent Repositories: 169
- Docker Downloads: 829,222
-
Rankings:
- Stargazers count: 0.352%
- Forks count: 0.53%
- Dependent repos count: 1.295%
- Dependent packages count: 1.332%
- Average: 1.515%
- Docker downloads count: 4.068%
- Advisories:
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 about 1 month ago)
- Last Synced: 2026-07-29T22:16:39.019Z (about 1 month 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: 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 7 months ago)
- Last Synced: 2026-08-10T07:06:27.259Z (30 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-v3.17: libprotoc
Runtime library for Protocol Buffer compiler
- 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:44.838Z (30 days ago)
- Versions: 1
- Dependent Packages: 2
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Forks count: 0.0%
- Stargazers count: 0.034%
- Average: 3.196%
- Dependent packages count: 12.748%
- Maintainers (1)
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 4 months ago)
- Last Synced: 2026-05-11T17:17:00.765Z (4 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)
repo1.maven.org: com.google.protobuf:protobuf-kotlin-lite
Kotlin lite 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-kotlin-lite/
- Licenses: BSD-3-Clause
- Latest release: 4.36.1 (published 7 days ago)
- Last Synced: 2026-09-07T10:18:26.807Z (1 day ago)
- Versions: 142
- Dependent Packages: 14
- Dependent Repositories: 43
- Docker Downloads: 44
-
Rankings:
- Stargazers count: 0.344%
- Forks count: 0.528%
- Dependent repos count: 3.338%
- Average: 3.554%
- Docker downloads count: 5.302%
- Dependent packages count: 8.26%
- Advisories:
alpine-edge: protobuf-vim
Vim syntax for protobuf
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 31.1-r3 (published about 1 month ago)
- Last Synced: 2026-07-29T22:16:39.340Z (about 1 month ago)
- Versions: 18
- 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)
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 over 1 year ago)
- Last Synced: 2026-09-07T17:12:09.638Z (1 day ago)
- Versions: 199
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent packages count: 4.503%
- Average: 4.654%
- Dependent repos count: 4.806%
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 over 1 year ago)
- Last Synced: 2026-09-06T20:32:08.168Z (2 days ago)
- Versions: 229
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent packages count: 4.568%
- Average: 4.721%
- Dependent repos count: 4.875%
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 over 1 year ago)
- Last Synced: 2026-09-06T20:32:55.898Z (2 days ago)
- Versions: 309
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent packages count: 4.714%
- Average: 4.872%
- Dependent repos count: 5.03%
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 over 1 year ago)
- Last Synced: 2026-09-07T16:42:42.976Z (1 day 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-09-07T13:43:23.080Z (1 day ago)
- Versions: 3
- Dependent Packages: 4
- Dependent Repositories: 1
- Downloads: 10,238 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: 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 (5 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 (about 1 month 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 (5 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)
proxy.golang.org: github.com/protocolbuffers/protobuf/examples/go
- Homepage: https://github.com/protocolbuffers/protobuf
- Documentation: https://pkg.go.dev/github.com/protocolbuffers/protobuf/examples/go#section-documentation
- Licenses: BSD-3-Clause
- Latest release: v0.0.0-20260516094241-bb940d7a693c (published 4 months ago)
- Last Synced: 2026-09-07T13:44:18.048Z (1 day ago)
- Versions: 1,488
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent packages count: 6.999%
- Average: 8.173%
- Dependent repos count: 9.346%
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-09-07T16:40:56.093Z (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: google-protobuf-tes
Protocol Buffers for JavaScript, forked to enable binary encoder & decoder
- Homepage:
- Licenses: BSD-3-Clause
- Latest release: 3.17.2 (published over 5 years ago)
- Last Synced: 2026-09-06T20:44:30.626Z (2 days ago)
- Versions: 4
- Dependent Packages: 1
- Dependent Repositories: 0
- Downloads: 364 Last month
-
Rankings:
- Stargazers count: 0.09%
- Forks count: 0.452%
- Downloads: 6.539%
- Average: 9.727%
- Dependent packages count: 16.224%
- Dependent repos count: 25.328%
- Maintainers (1)
nuget.org: google.protobuf.tools
See project site for more info.
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: other
- Latest release: 3.36.1 (published 8 days ago)
- Last Synced: 2026-09-06T20:31:50.153Z (2 days ago)
- Versions: 198
- Dependent Packages: 58
- Dependent Repositories: 0
- Downloads: 38,461,001 Total
-
Rankings:
- Downloads: 0.358%
- Average: 11.891%
- Dependent repos count: 14.978%
- Dependent packages count: 20.338%
- Maintainers (1)
nuget.org: pigment.protobuf
Pigment fork - C# runtime library for Protocol Buffers - Google's data interchange format.
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: (published 2 days ago)
- Last Synced: 2026-09-06T20:31:41.984Z (2 days ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 7.534%
- Average: 13.872%
- Dependent packages count: 20.211%
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.36.1 (published 7 days ago)
- Last Synced: 2026-09-07T16:41:11.548Z (1 day ago)
- Versions: 207
- 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:
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 about 2 months ago)
- Last Synced: 2026-07-22T19:05:05.527Z (about 2 months 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-native
A complete C++ development kit for Protocol Buffers ready to drop into Visual Studio C++ projects via NuGet.
- Homepage: https://protobuf.dev/
- Licenses: other
- Latest release: 6.33.4.2 (published 3 months ago)
- Last Synced: 2026-09-07T13:44:17.443Z (1 day ago)
- Versions: 3
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 405 Total
-
Rankings:
- Dependent repos count: 5.978%
- Dependent packages count: 15.978%
- Average: 26.1%
- Downloads: 56.343%
- Maintainers (1)
nuget.org: protobuf-vc143
Protocol Buffers 6.33.4 and Abseil 20250814.1 for Visual C++ 2022 (v143), x64 Windows. Includes headers, static libs (/MD, /MDd), and protoc.exe. Built with MSVC v143 (VS 2022 LTSC 17.12), C++20.
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: Apache-2.0
- Latest release: 6.33.4 (published 7 months ago)
- Last Synced: 2026-09-07T13:43:22.884Z (1 day ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 258 Total
-
Rankings:
- Dependent repos count: 6.198%
- Dependent packages count: 16.558%
- Average: 26.323%
- Downloads: 56.213%
- Maintainers (1)
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 1 day ago)
- Last Synced: 2026-09-07T13:44:18.939Z (1 day 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-09-06T20:31:38.904Z (2 days 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-09-06T20:31:45.057Z (2 days 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 about 1 month ago)
- Last Synced: 2026-07-30T02:04:03.202Z (about 1 month 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%
anaconda.org: libprotobuf-python-headers
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 about 2 months ago)
- Last Synced: 2026-07-22T19:05:00.016Z (about 2 months ago)
- Versions: 5
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 894 Total
-
Rankings:
- Dependent packages count: 51.787%
- Average: 54.361%
- Dependent repos count: 56.935%
registry.bazel.build: protobuf
- Homepage: https://github.com/protocolbuffers/protobuf
- Documentation: https://registry.bazel.build/docs/protobuf
- Licenses: other
- Latest release: 3.19.6 (published 8 months ago)
- Last Synced: 2026-09-07T13:43:22.415Z (1 day ago)
- Versions: 73
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
- Maintainers (18)
alpine-v3.19: py3-protobuf-pyc
Precompiled Python bytecode for py3-protobuf
- 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-02T04:14:05.937Z (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: 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 10 months ago)
- Last Synced: 2026-08-09T01:04:00.276Z (about 1 month 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 (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-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-r1 (published 11 months ago)
- Last Synced: 2026-04-14T15:02:48.014Z (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-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 (6 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: 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 (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.20: protobuf-vim
Vim syntax for protobuf
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 24.4-r1 (published over 2 years ago)
- Last Synced: 2026-08-10T07:07:05.588Z (30 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)
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 7 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.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 (30 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 (6 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)
alpine-v3.19: libprotobuf
Runtime library for C++ users 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-04-02T20:37:01.377Z (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 (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.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 (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: 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-08-20T20:27:13.136Z (19 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 (30 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)
openbsd-7.9-amd64: devel/protobuf
c++ protocol buffers
- Homepage: https://github.com/protocolbuffers/protobuf/
- Licenses: other
- Latest release: 6.34.1 (published 5 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.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 (30 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 6 months ago)
- Last Synced: 2026-08-10T07:07:17.835Z (30 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.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 (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 (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-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 8 months ago)
- Last Synced: 2026-05-13T14:09:22.257Z (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: 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 (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.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 (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: 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 (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.22: protobuf-dev
Library for extensible, efficient structure packing (development files)
- 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.787Z (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: 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 (about 2 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 10 months ago)
- Last Synced: 2026-07-25T03:01:30.061Z (about 2 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: 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 (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.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 (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: 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-r1 (published over 2 years ago)
- Last Synced: 2026-04-02T20:37:06.406Z (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 (5 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
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 (about 2 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 (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: 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 (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-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)
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 (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: 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 (about 2 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 (about 1 month 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 (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: 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 (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.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 (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
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 (30 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 (30 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: 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 (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)
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
- aho-corasick 1.1.5
- autocfg 1.5.1
- googletest 0.14.3
- googletest_macro 0.14.3
- linkme 0.3.37
- linkme-impl 0.3.37
- memchr 2.8.3
- num-traits 0.2.19
- paste 1.0.15
- proc-macro2 1.0.107
- quote 1.0.47
- regex 1.13.1
- regex-automata 0.4.18
- regex-syntax 0.8.11
- rustversion 1.0.23
- syn 2.0.119
- syn 3.0.4
- unicode-ident 1.0.24
Score: 41.49991029466665