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 sinatra ruby-gem crash-reporting deployment
Last synced: about 13 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 (over 11 years ago)
- Default Branch: main
- Last Pushed: 2026-04-24T22:04:30.000Z (6 days ago)
- Last Synced: 2026-04-24T22:36:22.959Z (6 days ago)
- Topics: marshalling, protobuf, protobuf-runtime, protoc, protocol-buffers, protocol-compiler, rpc, serialization
- Language: C++
- Homepage: http://protobuf.dev
- Size: 210 MB
- Stars: 71,150
- Watchers: 2,023
- Forks: 16,116
- Open Issues: 302
- Releases: 204
-
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
- Fork event: 586
- Create event: 3239
- Commit comment event: 12
- Release event: 22
- Issues event: 611
- Watch event: 3377
- Delete event: 2973
- Member event: 2
- Issue comment event: 2772
- Push event: 8937
- Pull request review event: 588
- Pull request review comment event: 307
- Pull request event: 6805
Last Year
- Fork event: 598
- Create event: 3321
- Commit comment event: 12
- Release event: 22
- Issues event: 622
- Watch event: 3434
- Delete event: 3102
- Member event: 4
- Issue comment event: 2946
- Push event: 9145
- Pull request review event: 593
- Pull request review comment event: 309
- Pull request event: 7052
Committers metadata
Last synced: 3 days ago
Total Commits: 19,230
Total Committers: 1,337
Avg Commits per committer: 14.383
Development Distribution Score (DDS): 0.825
Commits in past year: 2,276
Committers in past year: 138
Avg Commits per committer in past year: 16.493
Development Distribution Score (DDS) in past year: 0.655
| Name | Commits | |
|---|---|---|
| Protobuf Team Bot | p****t@g****m | 3366 |
| Joshua Haberman | j****n@g****m | 2168 |
| Protobuf Team Bot | p****t@g****m | 1594 |
| Mike Kruskal | m****l@g****m | 1073 |
| Adam Cozzette | a****e@g****m | 682 |
| Jon Skeet | j****t@g****m | 583 |
| Paul Yang | T****g | 521 |
| Thomas Van Lenten | t****l@g****m | 497 |
| Joshua Haberman | j****a@r****g | 422 |
| Deanna Garcia | d****a@g****m | 416 |
| Hong Shin | h****n@g****m | 399 |
| Eric Salo | s****o@g****m | 375 |
| Sandy Zhang | s****g@g****m | 325 |
| 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 | 280 |
| csharptest | r****r@c****t | 239 |
| Clayton Knittel | c****l@g****m | 202 |
| kenton@google.com | k****n@g****m@6****d | 184 |
| Mark Hansen | m****n@g****m | 146 |
| Matt Kulukundis | k****m@g****m | 104 |
| Yilun Chong | y****g@g****m | 98 |
| Hao Nguyen | h****n@g****m | 90 |
| Tony Liao | t****s@g****m | 89 |
| Chris Kennelly | c****y@g****m | 88 |
| Sydney Acksman | o****r@g****m | 86 |
| Samuel Benzaquen | s****a@g****m | 85 |
| David L. Jones | d****j@g****m | 82 |
| Martijn Vels | m****s@g****m | 76 |
| and 1307 more... | ||
Committer domains:
- google.com: 297
- qq.com: 12
- 163.com: 7
- chromium.org: 6
- squareup.com: 6
- microsoft.com: 6
- apache.org: 5
- gmx.de: 4
- 126.com: 3
- kitware.com: 3
- android.com: 3
- us.ibm.com: 3
- live.cn: 2
- tweag.io: 2
- redhat.com: 2
- amadeus.com: 2
- ibm.com: 2
- arm.com: 2
- cern.ch: 2
- mozilla.com: 2
- bloomberg.net: 2
- foxmail.com: 2
- blueapron.com: 2
- gradle.com: 2
- peloton-tech.com: 2
- yandex-team.ru: 2
- cisco.com: 2
- engflow.com: 2
- cs.berkeley.edu: 1
- slowdogs.com.au: 1
- will.party: 1
- mytaste.com: 1
- quizlet.com: 1
- mizux.net: 1
- bendb.com: 1
- oddsoftware.net: 1
- thoughtworks.com: 1
- dlitz.net: 1
- eger-andreas.de: 1
- python.org: 1
- datacompboy.ru: 1
- buszta.info: 1
- solodkiy.by: 1
- crowdstrike.com: 1
- qt.io: 1
- signalwerk.ch: 1
- snthhacks.com: 1
- robcos.com: 1
- pvl.dev: 1
- sunpoet.net: 1
- nexthink.com: 1
- peterzhu.ca: 1
- petewarden.com: 1
- team.bumble.com: 1
- ubuntu32.(none): 1
- viasat.com: 1
- cox.net: 1
- race.u-tokyo.ac.jp: 1
- deloitte.com: 1
- asperasoft.com: 1
- 1c.ru: 1
- felixjendrusch.is: 1
- gazprom-mt.com: 1
- cstanhope.com: 1
- istellar.jp: 1
- ufmg.br: 1
- canonical.com: 1
- boanderson.me: 1
- hintergarten.de: 1
- teboring-macpro.roam.corp.google.com: 1
- boukeversteegh.nl: 1
- dsfishlabs.com: 1
- kde.org: 1
- fiu.edu: 1
- nvidia.com: 1
- perpetualabs.com: 1
- altitude.com: 1
- amazon.com: 1
- xiaofeng-macbookpro2.roam.corp.google.com: 1
- oblong.com: 1
- smarkets.com: 1
- mesosphere.io: 1
- systemviewinc.com: 1
- lucidchart.com: 1
- castar.com: 1
- jc-lab.net: 1
- codexdigital.com: 1
- transtex-llc.com: 1
- timin.me: 1
- aminvakil.com: 1
- sofi.org: 1
- ivu.de: 1
- folio3.com: 1
- nviso.ch: 1
- dolthub.com: 1
- linux.com: 1
- liangsun.org: 1
- soe.ucsc.edu: 1
- adamyi.com: 1
- gatech.edu: 1
- achingbrain.net: 1
- salilab.org: 1
- alien-scripts.de: 1
- bryongloden.com: 1
- autonomic.ai: 1
- zeroc.com: 1
- ethereum.org: 1
- connect.ust.hk: 1
- ostrovsky.org: 1
- jungroup.com: 1
- aliddell.com: 1
- worrbase.com: 1
- debian.org: 1
- sanders.org: 1
- lowe.nu: 1
- ishiboo.com: 1
- barbon.org: 1
- plasma.ninja: 1
- ayende.com: 1
- fittl.com: 1
- mad.cash: 1
- aeongames.com: 1
- luminatewireless.com: 1
- bouhuis.com: 1
- netflix.com: 1
- jkvinge.net: 1
- john-millikin.com: 1
- digital-static.net: 1
- shopify.com: 1
- reverberate.org: 1
- csharptest.net: 1
- coderoom.net: 1
- buf.build: 1
- yannic-bonenberger.com: 1
- newtonking.com: 1
- podsvirov.pro: 1
- palladion.com: 1
- leapmotion.com: 1
- deakin.edu.au: 1
- buildbuddy.io: 1
- bluewin.ch: 1
- nobis-crew.org: 1
- appliedintuition.com: 1
- gmx.at: 1
- aspect.dev: 1
- noom.com: 1
- airtime.com: 1
- finalsite.com: 1
- pobox.com: 1
- ntk.me: 1
- enner.org: 1
- pivotal.io: 1
- warrenfalk.com: 1
- pm.me: 1
- houliston.me: 1
- iress.com: 1
- paneda.se: 1
- manetu.com: 1
- embeddedams.nl: 1
- parmet.com: 1
- 2f30.org: 1
- gmx.com: 1
- sofialondonmoskva.com: 1
- myitcv.org.uk: 1
- spinorx.com: 1
- seravo.fi: 1
- quantexa.com: 1
- nkbrown.us: 1
- mnm.id.au: 1
- sprenker.net: 1
- hecker.io: 1
- userver.tech: 1
- posteo.eu: 1
- reverb.com: 1
- michaelwerle.com: 1
- locati.it: 1
- parnic.com: 1
- daylessday.org: 1
- rubynerd.net: 1
- tetrate.io: 1
- samegoal.com: 1
- comstyle.com: 1
- dunelm.org.uk: 1
- ewout.name: 1
- ngg.hu: 1
- vrg.cz: 1
- reynoldsalexander.com: 1
- smparkes.net: 1
- osrfoundation.org: 1
- meumertzhe.im: 1
- q42.nl: 1
- here.com: 1
- infohazard.org: 1
- lixil.net: 1
- live.ru: 1
- topbug.net: 1
- phystech.edu: 1
- mcclymont.it: 1
- epitech.eu: 1
- carlo.cab: 1
- savagexi.com: 1
- sfu.ca: 1
- davidben.net: 1
- assiduo.com: 1
- free.fr: 1
- jetboystudio.com: 1
- opencsw.org: 1
- atlassian.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
- freeday.ai: 1
- developer.geek.nz: 1
- falkoaxmann.de: 1
- frederikspang.dk: 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
- douglasheriot.com: 1
- xinzhanguo.cn: 1
- glup.org: 1
- chabek.cz: 1
- restphone.com: 1
- midnightlinux.com: 1
- jazzy.id.au: 1
- ehrhardt.nl: 1
- inai.de: 1
- sparist.com: 1
- eklitzke.org: 1
- gregoirege.is: 1
- chasestevens.com: 1
- michaelcho.dev: 1
- hubspot.com: 1
- vomjom.net: 1
- thon.cc: 1
- naver.com: 1
- jjerphan.xyz: 1
- monteiro.eti.br: 1
- blockchaintp.com: 1
- somethingsimilar.com: 1
- jvolkman.com: 1
- cpan.org: 1
- delta46.us: 1
- conductive.de: 1
- bancel.me: 1
- stanford.edu: 1
- bellgeorge.com: 1
- mcchouse.com: 1
- barrettnexus.com: 1
- esciencecenter.nl: 1
- stripe.com: 1
- lutter.sk: 1
- blueshiftlabs.net: 1
- sandstorm.io: 1
- thekev.in: 1
- heiko-becker.de: 1
- oneiros.de: 1
- hey.com: 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
- tiger-222.fr: 1
- m1ke.me: 1
- blowmage.com: 1
- omenos.dev: 1
- qslw.com: 1
- chinadtrace.org: 1
- nathanwong.co.uk: 1
- markcostello.net: 1
- mernst.org: 1
- live.de: 1
- me.com: 1
- ironhidegames.com: 1
- yandex.com: 1
- netifi.com: 1
- github.com: 1
- elide.ventures: 1
- fortech.ro: 1
- giga.or.at: 1
- fkie.fraunhofer.de: 1
- spencerconnaughton.com: 1
- rohde-schwarz.com: 1
- qrpff.net: 1
- harto.org: 1
- fillmore-labs.com: 1
- indoorway.com: 1
- students.iiit.ac.in: 1
- appian.com: 1
- muet.com: 1
- pat.email: 1
- mongodb.com: 1
- kilink.net: 1
- pubref.org: 1
- querifylabs.com: 1
- nickpresta.ca: 1
- nilsand.re: 1
- skyscanner.net: 1
- bucketplace.net: 1
- smartaction.com: 1
- shundaojia.com: 1
- lvht.net: 1
- zendesk.com: 1
- cogitai.com: 1
- chequer.io: 1
- yoti.com: 1
- intrinsec.com: 1
- pfelton.co.uk: 1
- lithium.com: 1
- castrofamily.email: 1
- tower-research.com: 1
- ronklein.co.il: 1
- wepay.com: 1
- pipping.org: 1
- mail.ru: 1
- macos-powerpc.org: 1
- sethvargo.com: 1
- bns-g.com: 1
- intel.com: 1
- tut.by: 1
- xiaomi.com: 1
- zajca.cz: 1
- outlook.in: 1
- randomguy3.me.uk: 1
- shmarya.net: 1
- guidancesoftware.com: 1
- wolfsden.cz: 1
- jagels.us: 1
- saville.com: 1
- qiyi.com: 1
- yugui.jp: 1
- abv.bg: 1
- factset.com: 1
- twice.moe: 1
- uebelandre.com: 1
- unistack.org: 1
- jvnv.net: 1
- usask.ca: 1
- freeform.co: 1
- themoox.net: 1
- tsutsumi.io: 1
- oracle.com: 1
- ultraemail.net: 1
- bitspill.net: 1
- rkxs.de: 1
- toasttab.com: 1
- itwh.de: 1
- snapchat.com: 1
- umn.edu: 1
- vsco.co: 1
- sedsystems.ca: 1
- robinlinden.eu: 1
- rogerhub.com: 1
- innovatrics.com: 1
- philwo.de: 1
- catenacyber.fr: 1
- informatik.hu-berlin.de: 1
- rocketmail.com: 1
- halas.net.pl: 1
- asctechnologies.com: 1
- passmail.net: 1
- jmarner.com: 1
- umich.edu: 1
- p2ware.com: 1
- barnesmail.net: 1
- ucsd.edu: 1
- inbox.ru: 1
- aliyun.com: 1
Issue and Pull Request metadata
Last synced: 1 day ago
Total issues: 2,019
Total pull requests: 15,463
Average time to close issues: over 1 year
Average time to close pull requests: 11 days
Total issue authors: 1,593
Total pull request authors: 458
Average comments per issue: 4.48
Average comments per pull request: 0.42
Merged pull request: 5,694
Bot issues: 60
Bot pull requests: 13,426
Past year issues: 157
Past year pull requests: 2,901
Past year average time to close issues: 17 days
Past year average time to close pull requests: 6 days
Past year issue authors: 135
Past year pull request authors: 84
Past year average comments per issue: 1.22
Past year average comments per pull request: 0.14
Past year merged pull request: 780
Past year bot issues: 9
Past year bot pull requests: 2,647
Top Issue Authors
- copybara-service[bot] (60)
- jhump (22)
- bshaffer (15)
- calvin2021y (11)
- h-vetinari (11)
- haberman (10)
- coryan (10)
- sgowroji (10)
- FabioBatSilva (8)
- jtattermusch (8)
- owent (7)
- j0078910 (6)
- JamesNK (6)
- thomasvl (6)
- parthea (6)
Top Pull Request Authors
- copybara-service[bot] (13,365)
- zhangskz (281)
- mkruskal-google (179)
- acozzette (128)
- deannagarcia (66)
- dependabot[bot] (60)
- tempoz (56)
- JasonLunn (54)
- haberman (44)
- anandolee (32)
- y-yagi (31)
- cyyever (30)
- googleberg (25)
- esrauchg (21)
- bshaffer (19)
Top Issue Labels
- inactive (870)
- untriaged (414)
- c++ (295)
- python (179)
- enhancement (137)
- c# (102)
- java (94)
- bug (85)
- documentation (84)
- wait for user action (75)
- windows (59)
- cmake (53)
- php (52)
- help wanted (50)
- protoc (49)
- packaging & distribution (48)
- ruby (47)
- json (44)
- bazel (43)
- P3 (39)
- platform related (36)
- customer issue (27)
- cleanup (24)
- question (21)
- discussion (20)
- syntax specification (20)
- upb (18)
- mac (17)
- kotlin (15)
- 22.x (14)
Top Pull Request Labels
- inactive (213)
- back-port (123)
- c++ (98)
- ruby (92)
- :a: safe for tests (87)
- wait for user action (77)
- python (75)
- c# (70)
- dependencies (65)
- cla: yes (46)
- php (44)
- bazel (39)
- github_actions (38)
- cmake (34)
- java (32)
- jruby (31)
- cleanup (17)
- cla: no (16)
- protoc (15)
- upb (12)
- documentation (10)
- rust (9)
- bug (8)
- testing (8)
- windows (8)
- conformance tests (7)
- untriaged (7)
- editions (7)
- json (7)
- packaging & distribution (6)
Package metadata
- Total packages: 100
-
Total downloads:
- conda: 82,059,730 total
- homebrew: 9 last-month
- nuget: 1,191,868,676 total
- rubygems: 843,776,922 total
- Total docker downloads: 6,934,586,808
- Total dependent packages: 7,229 (may contain duplicates)
- Total dependent repositories: 48,773 (may contain duplicates)
- Total versions: 5,317
- Total maintainers: 9
- Total advisories: 8
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 about 3 years ago)
- Last Synced: 2026-04-08T18:07:18.797Z (22 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 about 3 years ago)
- Last Synced: 2026-04-08T18:07:25.662Z (22 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: 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 about 3 years ago)
- Last Synced: 2026-04-08T18:07:38.735Z (22 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 about 3 years ago)
- Last Synced: 2026-04-08T18:07:41.271Z (22 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 about 3 years ago)
- Last Synced: 2026-04-08T18:07:39.857Z (22 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-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 about 3 years ago)
- Last Synced: 2026-04-08T18:07:40.028Z (22 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-pyc
Precompiled Python bytecode for py3-protobuf
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 4.21.12-r1 (published about 3 years ago)
- Last Synced: 2026-04-15T17:04:19.766Z (15 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: libprotoc
Runtime library for Protocol Buffer compiler
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 3.21.12-r2 (published about 3 years ago)
- Last Synced: 2026-04-08T18:07:24.324Z (22 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)
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.34.1 (published about 1 month ago)
- Last Synced: 2026-04-27T14:31:31.208Z (3 days ago)
- Versions: 1,648
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 421,553,425 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-r1 (published 7 months ago)
- Last Synced: 2026-03-14T15:26:18.122Z (about 2 months ago)
- Versions: 15
- 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)
rubygems.org: 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.34.1 (published about 1 month ago)
- Last Synced: 2026-04-30T00:14:15.701Z (about 18 hours ago)
- Versions: 1,662
- Dependent Packages: 176
- Dependent Repositories: 4,547
- Downloads: 422,223,497 Total
- Docker Downloads: 479,694,129
-
Rankings:
- Stargazers count: 0.001%
- Forks count: 0.009%
- Downloads: 0.067%
- Average: 0.17%
- Dependent packages count: 0.214%
- Docker downloads count: 0.259%
- Dependent repos count: 0.467%
- Maintainers (1)
- Advisories:
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.34.1 (published about 1 month ago)
- Last Synced: 2026-04-29T06:15:57.452Z (1 day ago)
- Versions: 212
- 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 over 3 years ago)
- Last Synced: 2026-04-17T20:03:35.725Z (13 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)
alpine-edge: py3-protobuf
Google's data interchange format
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 6.31.1-r1 (published 6 months ago)
- Last Synced: 2026-03-10T07:17:13.195Z (about 2 months ago)
- Versions: 10
- 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 over 3 years ago)
- Last Synced: 2026-04-01T16:23:13.974Z (29 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 over 3 years ago)
- Last Synced: 2026-04-01T16:20:48.553Z (29 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%
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.34.1 (published about 1 month ago)
- Last Synced: 2026-04-29T16:47:15.313Z (1 day ago)
- Versions: 184
- 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-r1 (published 7 months ago)
- Last Synced: 2026-03-14T15:25:56.271Z (about 2 months ago)
- Versions: 15
- 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: protobuf
Library for extensible, efficient structure packing
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 31.1-r1 (published 7 months ago)
- Last Synced: 2026-03-14T15:25:58.672Z (about 2 months ago)
- Versions: 15
- 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-r1 (published 7 months ago)
- Last Synced: 2026-03-14T15:25:45.833Z (about 2 months ago)
- Versions: 16
- 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 11 months ago)
- Last Synced: 2026-04-29T22:16:46.999Z (about 20 hours ago)
- Versions: 307
- 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.34.1 (published about 1 month ago)
- Last Synced: 2026-04-29T08:31:03.156Z (1 day ago)
- Versions: 214
- 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-javalite
Lite version of Protocol Buffers library. This version is targeted for mobile client use rather than server side use. It is optimized for code size, but does not guarantee API/ABI stability.
- Homepage: https://developers.google.com/protocol-buffers/
- Documentation: https://appdoc.app/artifact/com.google.protobuf/protobuf-javalite/
- Licenses: BSD-3-Clause
- Latest release: 4.34.1 (published about 1 month ago)
- Last Synced: 2026-04-30T03:18:08.864Z (about 15 hours ago)
- Versions: 179
- Dependent Packages: 75
- Dependent Repositories: 765
- Docker Downloads: 113,713
-
Rankings:
- Stargazers count: 0.352%
- Dependent repos count: 0.456%
- Forks count: 0.53%
- Average: 0.965%
- Dependent packages count: 0.97%
- Docker downloads count: 2.515%
- Advisories:
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 over 3 years ago)
- Last Synced: 2026-04-08T14:07:39.549Z (22 days 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)
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.34.1 (published about 1 month ago)
- Last Synced: 2026-04-29T16:23:42.459Z (1 day ago)
- Versions: 134
- 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-r1 (published 7 months ago)
- Last Synced: 2026-03-14T15:23:27.434Z (about 2 months ago)
- Versions: 15
- 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: 6.33.0 (published 6 months ago)
- Last Synced: 2026-03-15T20:13:21.693Z (about 2 months ago)
- Versions: 26
- Dependent Packages: 14
- Dependent Repositories: 1,203
-
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 3 months ago)
- Last Synced: 2026-03-10T18:50:50.121Z (about 2 months 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 over 3 years ago)
- Last Synced: 2026-04-11T22:05:15.865Z (19 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.31.1-r1 (published 6 months ago)
- Last Synced: 2026-04-11T20:04:16.789Z (19 days ago)
- Versions: 9
- 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.34.1 (published about 1 month ago)
- Last Synced: 2026-04-29T19:14:21.687Z (about 23 hours ago)
- Versions: 134
- 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: 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 over 1 year ago)
- Last Synced: 2025-05-02T04:16:35.393Z (12 months 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-r1 (published 7 months ago)
- Last Synced: 2026-04-11T20:05:36.463Z (19 days ago)
- Versions: 15
- 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)
nuget.org: tfg.protobuff35
See project site for more info.
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: other
- Latest release: 3.6.2 (published over 5 years ago)
- Last Synced: 2026-04-26T11:28:33.620Z (4 days ago)
- Versions: 3
- Dependent Packages: 4
- Dependent Repositories: 1
- Downloads: 10,102 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: protobuf-vim
Vim syntax for protobuf
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 3.21.9-r0 (published over 3 years ago)
- Last Synced: 2026-04-11T22:05:16.028Z (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: 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 over 3 years ago)
- Last Synced: 2026-04-08T14:07:05.494Z (22 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: protoc
Protocol buffer compiler binary and library
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 3.21.9-r0 (published over 3 years ago)
- Last Synced: 2026-04-11T22:05:18.218Z (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: 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 over 3 years ago)
- Last Synced: 2026-04-08T14:06:56.296Z (22 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)
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.34.1 (published about 1 month ago)
- Last Synced: 2026-04-29T19:15:24.161Z (about 23 hours ago)
- Versions: 200
- Dependent Packages: 986
- Dependent Repositories: 0
- Downloads: 1,179,550,444 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)
nuget.org: pulumi.protobuf
Pulumi fork to override DefaultRecursionLimit - C# runtime library for Protocol Buffers - Google's data interchange format.
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 3.33.0 (published 8 months ago)
- Last Synced: 2026-04-26T11:28:19.811Z (4 days ago)
- Versions: 4
- Dependent Packages: 1
- Dependent Repositories: 0
- Downloads: 12,308,000 Total
-
Rankings:
- Downloads: 0.51%
- Average: 8.186%
- Dependent repos count: 10.162%
- Dependent packages count: 13.886%
- Maintainers (1)
formulae.brew.sh: protobuf@3
Protocol buffers (Google's data interchange format)
- Homepage: https://github.com/protocolbuffers/protobuf/
- Licenses: BSD-3-Clause
- Latest release: 3.20.3 (published over 3 years ago)
- Last Synced: 2026-04-26T11:28:13.121Z (4 days ago)
- Versions: 2
- Dependent Packages: 1
- Dependent Repositories: 2
- Downloads: 9 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%
metacpan.org: Protobuf
Namespace reservation for Google's Protocol Buffers
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 over 3 years ago)
- Last Synced: 2026-04-01T16:12:23.769Z (29 days 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: 6.33.0 (published 6 months ago)
- Last Synced: 2026-03-15T20:13:06.965Z (about 2 months ago)
- Versions: 14
- Dependent Packages: 0
- Dependent Repositories: 0
-
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-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 2 months ago)
- Last Synced: 2026-04-26T11:28:59.140Z (4 days ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 130 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 26 days ago)
- Last Synced: 2026-04-04T11:31:14.832Z (26 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)
anaconda.org: protobuf-bazel-rules
Bazel rules for protobuf
- Homepage: https://developers.google.com/protocol-buffers
- Licenses: BSD-3-Clause
- Latest release: 33.5 (published 3 months ago)
- Last Synced: 2026-03-10T18:50:23.838Z (about 2 months ago)
- Versions: 3
- Dependent Packages: 0
- Dependent Repositories: 0
-
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: 6.33.5 (published 3 months ago)
- Last Synced: 2026-03-15T20:13:08.049Z (about 2 months ago)
- Versions: 4
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent packages count: 51.787%
- Average: 54.361%
- Dependent repos count: 56.935%
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:
- Latest release: 20240823.1417 (published 3 months ago)
- Last Synced: 2026-03-07T01:23:40.980Z (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%
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 12 months ago)
- Last Synced: 2026-04-11T22:04:26.233Z (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: 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 over 1 year ago)
- Last Synced: 2026-04-11T22:04:28.290Z (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: protoc
Protocol buffer compiler binary and library
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 24.4-r4 (published over 1 year ago)
- Last Synced: 2026-04-11T22:04:28.489Z (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.19: protobuf
Library for extensible, efficient structure packing
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 24.4-r0 (published over 2 years ago)
- Last Synced: 2026-04-11T22:04:53.108Z (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.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 (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.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 (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.19: libprotoc
Runtime library for Protocol Buffer compiler
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 24.4-r0 (published over 2 years ago)
- Last Synced: 2026-04-11T22:05:00.758Z (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.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 over 2 years ago)
- Last Synced: 2026-04-08T14:05:34.524Z (22 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: 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 about 2 months ago)
- Last Synced: 2026-04-27T16:44:45.063Z (3 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: 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 over 2 years ago)
- Last Synced: 2026-04-08T14:05:12.771Z (22 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 about 2 months ago)
- Last Synced: 2026-04-27T16:44:46.286Z (3 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: py3-protobuf
Google's data interchange format
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 4.24.4-r0 (published over 2 years ago)
- Last Synced: 2026-04-08T14:04:50.895Z (22 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: protoc
Protocol buffer compiler binary and library
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 29.4-r0 (published 12 months ago)
- Last Synced: 2026-04-11T22:04:26.472Z (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.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 (22 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-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-04-08T09:56:55.644Z (22 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
Library for extensible, efficient structure packing
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 24.4-r4 (published over 1 year ago)
- Last Synced: 2026-04-11T22:04:10.416Z (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.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 about 2 years ago)
- Last Synced: 2026-03-28T06:10:32.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: libprotoc
Runtime library for Protocol Buffer compiler
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 24.4-r4 (published over 1 year ago)
- Last Synced: 2026-03-28T06:06:42.794Z (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.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 12 months ago)
- Last Synced: 2026-04-11T22:04:17.787Z (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 over 1 year ago)
- Last Synced: 2026-04-11T22:04:28.738Z (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.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 (28 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
Runtime library for C++ users of protocol buffers
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 24.4-r4 (published over 1 year ago)
- Last Synced: 2026-04-11T22:04:28.460Z (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.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 12 months ago)
- Last Synced: 2026-04-11T22:04:17.374Z (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.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 (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: 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 (29 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: protoc
Protocol buffer compiler binary and library
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 31.1-r1 (published 7 months ago)
- Last Synced: 2026-04-09T23:04:43.678Z (21 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 7 months ago)
- Last Synced: 2026-04-14T15:02:45.076Z (16 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: 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 7 months ago)
- Last Synced: 2026-04-14T15:02:46.132Z (16 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: 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 7 months ago)
- Last Synced: 2026-04-14T15:02:48.014Z (16 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: protoc
Protocol buffer compiler binary and library
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 24.4-r0 (published over 2 years ago)
- Last Synced: 2026-03-23T16:15:10.338Z (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.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 over 2 years ago)
- Last Synced: 2026-04-02T20:37:01.377Z (28 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-vim
Vim syntax for protobuf
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 24.4-r0 (published over 2 years ago)
- Last Synced: 2026-04-02T20:37:02.563Z (28 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-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 over 2 years ago)
- Last Synced: 2026-04-02T20:37:03.075Z (28 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 (28 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-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:
- Latest release: 20240823.1417 (published 3 months ago)
- Last Synced: 2026-04-14T18:01:33.050Z (16 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.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 6 months ago)
- Last Synced: 2026-04-15T01:05:11.553Z (16 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-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:
- Latest release: 20240222.1652 (published 3 months ago)
- Last Synced: 2026-03-05T19:13:02.805Z (about 2 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
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 7 months ago)
- Last Synced: 2026-04-07T20:05:15.297Z (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-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 7 months ago)
- Last Synced: 2026-04-07T20:05:15.068Z (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 7 months ago)
- Last Synced: 2026-04-07T20:05:15.274Z (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)
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:
- Latest release: 20230506.330 (published 3 months ago)
- Last Synced: 2026-04-15T05:05:53.809Z (16 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.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 6 months ago)
- Last Synced: 2026-04-08T21:03:11.613Z (22 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.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:
- Latest release: 20230506.330 (published 3 months ago)
- Last Synced: 2026-04-11T18:00:45.339Z (19 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: 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 about 2 years ago)
- Last Synced: 2026-04-11T22:04:24.103Z (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.22: protobuf-vim
Vim syntax for protobuf
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 29.4-r0 (published 12 months ago)
- Last Synced: 2026-04-11T22:04:00.722Z (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.22: libprotoc
Runtime library for Protocol Buffer compiler
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 29.4-r0 (published 12 months ago)
- Last Synced: 2026-04-11T22:03:57.539Z (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: protobuf-vim
Vim syntax for protobuf
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 24.4-r4 (published over 1 year ago)
- Last Synced: 2026-04-11T22:04:10.407Z (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.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 12 months ago)
- Last Synced: 2026-04-11T22:04:16.316Z (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: 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 over 1 year ago)
- Last Synced: 2026-04-11T22:04:28.317Z (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: py3-protobuf
Google's data interchange format
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 4.24.4-r1 (published about 2 years ago)
- Last Synced: 2026-04-11T22:04:23.892Z (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.22: protobuf
Library for extensible, efficient structure packing
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 29.4-r0 (published 12 months ago)
- Last Synced: 2026-04-11T22:04:24.431Z (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)
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
- protobuf *
- 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.30125623273714