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 mvc activejob rack sinatra rubocop ruby-gem crash-reporting deployment
Last synced: about 18 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-02-07T05:25:58.000Z (25 days ago)
- Last Synced: 2026-02-07T09:26:01.236Z (24 days ago)
- Topics: marshalling, protobuf, protobuf-runtime, protoc, protocol-buffers, protocol-compiler, rpc, serialization
- Language: C++
- Homepage: http://protobuf.dev
- Size: 201 MB
- Stars: 70,647
- Watchers: 2,024
- Forks: 16,031
- Open Issues: 227
- 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 7 +.
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: about 1 month ago
Total Commits: 18,658
Total Committers: 1,321
Avg Commits per committer: 14.124
Development Distribution Score (DDS): 0.83
Commits in past year: 2,381
Committers in past year: 145
Avg Commits per committer in past year: 16.421
Development Distribution Score (DDS) in past year: 0.631
| Name | Commits | |
|---|---|---|
| Protobuf Team Bot | p****t@g****m | 3168 |
| Joshua Haberman | j****n@g****m | 2146 |
| Protobuf Team Bot | p****t@g****m | 1507 |
| Mike Kruskal | m****l@g****m | 1069 |
| 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 | 495 |
| Joshua Haberman | j****a@r****g | 422 |
| Deanna Garcia | d****a@g****m | 416 |
| Hong Shin | h****n@g****m | 385 |
| Eric Salo | s****o@g****m | 373 |
| Jisi Liu | j****u@g****m | 323 |
| Sandy Zhang | s****g@g****m | 320 |
| Feng Xiao | x****f@g****m | 317 |
| Jan Tattermusch | j****h@g****m | 295 |
| Jie Luo | j****o@g****m | 272 |
| csharptest | r****r@c****t | 239 |
| kenton@google.com | k****n@g****m@6****d | 184 |
| Clayton Knittel | c****l@g****m | 146 |
| Mark Hansen | m****n@g****m | 117 |
| Matt Kulukundis | k****m@g****m | 104 |
| Yilun Chong | y****g@g****m | 98 |
| Hao Nguyen | h****n@g****m | 90 |
| Sydney Acksman | o****r@g****m | 86 |
| Tony Liao | t****s@g****m | 85 |
| Chris Kennelly | c****y@g****m | 85 |
| David L. Jones | d****j@g****m | 82 |
| Martijn Vels | m****s@g****m | 76 |
| Elliotte Rusty Harold | e****o | 76 |
| and 1291 more... | ||
Committer domains:
- google.com: 292
- qq.com: 11
- 163.com: 7
- chromium.org: 6
- squareup.com: 6
- apache.org: 5
- microsoft.com: 5
- gmx.de: 4
- us.ibm.com: 3
- kitware.com: 3
- android.com: 3
- 126.com: 3
- amadeus.com: 2
- redhat.com: 2
- bloomberg.net: 2
- peloton-tech.com: 2
- foxmail.com: 2
- mozilla.com: 2
- live.cn: 2
- blueapron.com: 2
- python.org: 2
- cisco.com: 2
- cern.ch: 2
- gradle.com: 2
- arm.com: 2
- yandex-team.ru: 2
- ibm.com: 2
- tweag.io: 2
- eger-andreas.de: 1
- lixil.net: 1
- datacompboy.ru: 1
- nexthink.com: 1
- buszta.info: 1
- solodkiy.by: 1
- qt.io: 1
- canonical.com: 1
- transtex-llc.com: 1
- timin.me: 1
- aminvakil.com: 1
- alien-scripts.de: 1
- peterzhu.ca: 1
- sunpoet.net: 1
- pvl.dev: 1
- robcos.com: 1
- myitcv.org.uk: 1
- spinorx.com: 1
- seravo.fi: 1
- istellar.jp: 1
- cstanhope.com: 1
- gazprom-mt.com: 1
- felixjendrusch.is: 1
- asperasoft.com: 1
- race.u-tokyo.ac.jp: 1
- ubuntu32.(none): 1
- team.bumble.com: 1
- mizux.net: 1
- quizlet.com: 1
- will.party: 1
- slowdogs.com.au: 1
- cs.berkeley.edu: 1
- thoughtworks.com: 1
- oddsoftware.net: 1
- bendb.com: 1
- castar.com: 1
- jc-lab.net: 1
- codexdigital.com: 1
- systemviewinc.com: 1
- oblong.com: 1
- perpetualabs.com: 1
- kde.org: 1
- teboring-macpro.roam.corp.google.com: 1
- bryongloden.com: 1
- autonomic.ai: 1
- ivu.de: 1
- sofi.org: 1
- crowdstrike.com: 1
- mytaste.com: 1
- amazon.com: 1
- ufmg.br: 1
- 1c.ru: 1
- deloitte.com: 1
- cox.net: 1
- viasat.com: 1
- skyscanner.net: 1
- bucketplace.net: 1
- dsfishlabs.com: 1
- fiu.edu: 1
- gatech.edu: 1
- linux.com: 1
- liangsun.org: 1
- soe.ucsc.edu: 1
- adamyi.com: 1
- atlassian.com: 1
- achingbrain.net: 1
- salilab.org: 1
- zeroc.com: 1
- ethereum.org: 1
- boanderson.me: 1
- hintergarten.de: 1
- boukeversteegh.nl: 1
- lvht.net: 1
- nvidia.com: 1
- altitude.com: 1
- xiaofeng-macbookpro2.roam.corp.google.com: 1
- smarkets.com: 1
- mesosphere.io: 1
- enner.org: 1
- ostrovsky.org: 1
- sanders.org: 1
- jungroup.com: 1
- debian.org: 1
- worrbase.com: 1
- aliddell.com: 1
- barbon.org: 1
- ayende.com: 1
- plasma.ninja: 1
- ishiboo.com: 1
- lowe.nu: 1
- mad.cash: 1
- aeongames.com: 1
- luminatewireless.com: 1
- bouhuis.com: 1
- fittl.com: 1
- netflix.com: 1
- parnic.com: 1
- locati.it: 1
- smparkes.net: 1
- osrfoundation.org: 1
- reverberate.org: 1
- csharptest.net: 1
- coderoom.net: 1
- buf.build: 1
- yannic-bonenberger.com: 1
- newtonking.com: 1
- podsvirov.pro: 1
- leapmotion.com: 1
- palladion.com: 1
- deakin.edu.au: 1
- buildbuddy.io: 1
- nobis-crew.org: 1
- bluewin.ch: 1
- appliedintuition.com: 1
- gmx.at: 1
- pobox.com: 1
- finalsite.com: 1
- airtime.com: 1
- ntk.me: 1
- aspect.dev: 1
- noom.com: 1
- connect.ust.hk: 1
- warrenfalk.com: 1
- pm.me: 1
- manetu.com: 1
- houliston.me: 1
- iress.com: 1
- paneda.se: 1
- embeddedams.nl: 1
- parmet.com: 1
- 2f30.org: 1
- signalwerk.ch: 1
- gmx.com: 1
- sofialondonmoskva.com: 1
- posteo.eu: 1
- live.ru: 1
- quantexa.com: 1
- nkbrown.us: 1
- mnm.id.au: 1
- sprenker.net: 1
- hecker.io: 1
- userver.tech: 1
- snthhacks.com: 1
- petewarden.com: 1
- reverb.com: 1
- ewout.name: 1
- ngg.hu: 1
- shopify.com: 1
- jkvinge.net: 1
- john-millikin.com: 1
- michaelwerle.com: 1
- comstyle.com: 1
- tetrate.io: 1
- vrg.cz: 1
- daylessday.org: 1
- rubynerd.net: 1
- samegoal.com: 1
- digital-static.net: 1
- reynoldsalexander.com: 1
- dunelm.org.uk: 1
- dlitz.net: 1
- meumertzhe.im: 1
- infohazard.org: 1
- q42.nl: 1
- here.com: 1
- pivotal.io: 1
- topbug.net: 1
- phystech.edu: 1
- epitech.eu: 1
- carlo.cab: 1
- savagexi.com: 1
- mcclymont.it: 1
- opencsw.org: 1
- assiduo.com: 1
- free.fr: 1
- jetboystudio.com: 1
- douglasheriot.com: 1
- monteiro.eti.br: 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
- developer.geek.nz: 1
- coachclientconnect.com: 1
- realify.com: 1
- datacom.ind.br: 1
- scaramanga.co.uk: 1
- emersonecologics.com: 1
- imgtec.com: 1
- xinzhanguo.cn: 1
- eklitzke.org: 1
- heiko-becker.de: 1
- falkoaxmann.de: 1
- frederikspang.dk: 1
- leirbag.net: 1
- gregoirege.is: 1
- glup.org: 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
- chasestevens.com: 1
- hubspot.com: 1
- vomjom.net: 1
- thon.cc: 1
- naver.com: 1
- blockchaintp.com: 1
- jjerphan.xyz: 1
- stripe.com: 1
- jvolkman.com: 1
- cpan.org: 1
- delta46.us: 1
- conductive.de: 1
- stanford.edu: 1
- bellgeorge.com: 1
- chabek.cz: 1
- mcchouse.com: 1
- barrettnexus.com: 1
- esciencecenter.nl: 1
- hey.com: 1
- bakken.io: 1
- lutter.sk: 1
- blueshiftlabs.net: 1
- sandstorm.io: 1
- thekev.in: 1
- fmgl.com.au: 1
- winimage.com: 1
- oneiros.de: 1
- vip.qq.com: 1
- litwiniuk.net: 1
- arcor.de: 1
- spotify.com: 1
- marc-abramowitz.com: 1
- n-1.ch: 1
- teamviewer.com: 1
- improbable.io: 1
- markcostello.net: 1
- freeday.ai: 1
- mernst.org: 1
- engflow.com: 1
- m1ke.me: 1
- blowmage.com: 1
- omenos.dev: 1
- qslw.com: 1
- chinadtrace.org: 1
- nathanwong.co.uk: 1
- live.de: 1
- me.com: 1
- michaelcho.dev: 1
- tiger-222.fr: 1
- ironhidegames.com: 1
- yandex.com: 1
- netifi.com: 1
- elide.ventures: 1
- giga.or.at: 1
- fkie.fraunhofer.de: 1
- spencerconnaughton.com: 1
- rohde-schwarz.com: 1
- qrpff.net: 1
- harto.org: 1
- fortech.ro: 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
- querifylabs.com: 1
- nickpresta.ca: 1
- nilsand.re: 1
- toasttab.com: 1
- umn.edu: 1
- lucidchart.com: 1
- smartaction.com: 1
- shundaojia.com: 1
- folio3.com: 1
- nviso.ch: 1
- dolthub.com: 1
- zendesk.com: 1
- cogitai.com: 1
- chequer.io: 1
- intrinsec.com: 1
- pfelton.co.uk: 1
- lithium.com: 1
- castrofamily.email: 1
- yoti.com: 1
- tower-research.com: 1
- snapchat.com: 1
- pipping.org: 1
- mail.ru: 1
- macos-powerpc.org: 1
- sethvargo.com: 1
- bns-g.com: 1
- tut.by: 1
- ronklein.co.il: 1
- aliyun.com: 1
- xiaomi.com: 1
- zajca.cz: 1
- randomguy3.me.uk: 1
- shmarya.net: 1
- guidancesoftware.com: 1
- themoox.net: 1
- wolfsden.cz: 1
- jagels.us: 1
- saville.com: 1
- qiyi.com: 1
- yugui.jp: 1
- intel.com: 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
- tsutsumi.io: 1
- oracle.com: 1
- bitspill.net: 1
- rkxs.de: 1
- wepay.com: 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
- itwh.de: 1
- asctechnologies.com: 1
- passmail.net: 1
- jmarner.com: 1
- umich.edu: 1
- p2ware.com: 1
- barnesmail.net: 1
- ultraemail.net: 1
- pubref.org: 1
- outlook.in: 1
- ucsd.edu: 1
- inbox.ru: 1
Issue and Pull Request metadata
Last synced: 29 days ago
Total issues: 2,015
Total pull requests: 15,419
Average time to close issues: over 1 year
Average time to close pull requests: 11 days
Total issue authors: 1,589
Total pull request authors: 445
Average comments per issue: 4.48
Average comments per pull request: 0.42
Merged pull request: 5,691
Bot issues: 61
Bot pull requests: 13,397
Past year issues: 254
Past year pull requests: 5,133
Past year average time to close issues: about 1 month
Past year average time to close pull requests: 5 days
Past year issue authors: 218
Past year pull request authors: 116
Past year average comments per issue: 1.54
Past year average comments per pull request: 0.21
Past year merged pull request: 1,641
Past year bot issues: 9
Past year bot pull requests: 4,666
Top Issue Authors
- copybara-service[bot] (61)
- jhump (22)
- bshaffer (15)
- calvin2021y (11)
- h-vetinari (11)
- coryan (10)
- sgowroji (10)
- haberman (10)
- jtattermusch (8)
- FabioBatSilva (8)
- owent (7)
- JamesNK (6)
- dsnet (6)
- parthea (6)
- stepancheg (6)
Top Pull Request Authors
- copybara-service[bot] (13,339)
- zhangskz (281)
- mkruskal-google (179)
- acozzette (128)
- deannagarcia (66)
- dependabot[bot] (57)
- tempoz (56)
- JasonLunn (54)
- haberman (44)
- anandolee (32)
- y-yagi (31)
- cyyever (30)
- googleberg (25)
- esrauchg (21)
- bshaffer (19)
Top Issue Labels
- inactive (869)
- untriaged (410)
- c++ (295)
- python (179)
- enhancement (137)
- c# (102)
- java (94)
- documentation (84)
- bug (81)
- 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)
- syntax specification (20)
- discussion (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 (76)
- python (75)
- c# (70)
- dependencies (62)
- 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)
- windows (8)
- testing (8)
- bug (8)
- conformance tests (7)
- json (7)
- editions (7)
- untriaged (7)
- packaging & distribution (6)
Package metadata
- Total packages: 100
-
Total downloads:
- nuget: 1,119,850,642 total
- npm: 214 last-month
- pypi: 23,473 last-month
- rubygems: 815,704,813 total
- Total docker downloads: 10,349,784,709
- Total dependent packages: 7,747 (may contain duplicates)
- Total dependent repositories: 56,152 (may contain duplicates)
- Total versions: 7,089
- Total maintainers: 45
- Total advisories: 10
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 almost 3 years ago)
- Last Synced: 2026-02-03T14:38:51.180Z (28 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 almost 3 years ago)
- Last Synced: 2026-02-03T14:38:53.156Z (28 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 almost 3 years ago)
- Last Synced: 2026-02-03T14:38:55.083Z (28 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 almost 3 years ago)
- Last Synced: 2026-02-03T14:39:32.284Z (28 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 almost 3 years ago)
- Last Synced: 2026-02-03T14:40:27.814Z (28 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 almost 3 years ago)
- Last Synced: 2026-02-04T11:00:47.228Z (27 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: 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 almost 3 years ago)
- Last Synced: 2026-02-04T13:22:01.024Z (27 days ago)
- Versions: 1
- Dependent Packages: 1
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Forks count: 0.0%
- Average: 0.007%
- Stargazers count: 0.03%
- Maintainers (1)
alpine-v3.18: 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 almost 3 years ago)
- Last Synced: 2026-02-03T14:40:30.530Z (28 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: 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 almost 3 years ago)
- Last Synced: 2026-02-04T13:22:19.451Z (27 days ago)
- Versions: 1
- Dependent Packages: 4
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Forks count: 0.0%
- Average: 0.007%
- Stargazers count: 0.03%
- Maintainers (1)
alpine-v3.18: protoc
Protocol buffer compiler binary and library
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 3.21.12-r2 (published almost 3 years ago)
- Last Synced: 2026-02-03T14:39:34.918Z (28 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)
cocoapods.org: Protobuf
Protocol Buffers v.3 runtime library for Objective-C.
- Homepage: https://github.com/protocolbuffers/protobuf
- Documentation: https://cocoadocs.org/docsets/Protobuf/
- Licenses: BSD-3-Clause
- Latest release: 5.34.0 (published 1 day ago)
- Last Synced: 2026-03-02T08:04:03.804Z (1 day ago)
- Versions: 165
- Dependent Packages: 154
- Dependent Repositories: 6,509
- Docker Downloads: 9
-
Rankings:
- Stargazers count: 0.012%
- Forks count: 0.013%
- Average: 0.047%
- Dependent packages count: 0.061%
- Dependent repos count: 0.064%
- Docker downloads count: 0.084%
- Maintainers (2)
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.0 (published 5 days ago)
- Last Synced: 2026-03-02T12:33:47.370Z (1 day ago)
- Versions: 1,612
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 407,883,204 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 5 months ago)
- Last Synced: 2026-02-14T14:08:50.323Z (17 days 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.0 (published 5 days ago)
- Last Synced: 2026-03-02T08:12:21.729Z (1 day ago)
- Versions: 1,626
- Dependent Packages: 176
- Dependent Repositories: 4,547
- Downloads: 407,816,660 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.0 (published 5 days ago)
- Last Synced: 2026-03-02T11:11:12.336Z (1 day ago)
- Versions: 208
- 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
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.34.0 (published 5 days ago)
- Last Synced: 2026-03-02T12:34:22.021Z (1 day ago)
- Versions: 195
- 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: protobuf
Library for extensible, efficient structure packing
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 31.1-r1 (published 5 months ago)
- Last Synced: 2026-02-14T12:15:03.898Z (17 days 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: 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 5 months ago)
- Last Synced: 2026-02-14T12:14:59.844Z (17 days 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 5 months ago)
- Last Synced: 2026-02-14T12:14:49.458Z (17 days 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 9 months ago)
- Last Synced: 2026-03-02T07:12:49.404Z (1 day ago)
- Versions: 302
- 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.0 (published 5 days ago)
- Last Synced: 2026-03-02T03:32:54.018Z (1 day ago)
- Versions: 210
- Dependent Packages: 70
- Dependent Repositories: 213
- Docker Downloads: 69
-
Rankings:
- Stargazers count: 0.352%
- Forks count: 0.529%
- Average: 0.761%
- Dependent packages count: 1.059%
- Dependent repos count: 1.103%
alpine-v3.17: py3-protobuf
Google's data interchange format
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 4.21.9-r1 (published over 3 years ago)
- Last Synced: 2026-02-03T13:46:24.094Z (28 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)
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 5 months ago)
- Last Synced: 2026-02-14T12:12:24.953Z (17 days 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 4 months ago)
- Last Synced: 2026-02-15T19:12:10.131Z (16 days 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%
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 4 months ago)
- Last Synced: 2026-02-04T00:12:22.392Z (28 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.0 (published 5 days ago)
- Last Synced: 2026-03-02T15:11:12.735Z (1 day ago)
- Versions: 130
- 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 (10 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)
pypi.org: protobuf-distutils
This is a distutils extension to generate Python code for .proto files using an installed protoc binary.
- Homepage: https://github.com/protocolbuffers/protobuf/
- Documentation: https://protobuf-distutils.readthedocs.io/
- Licenses: 3-Clause BSD License
- Latest release: 1.0 (published over 5 years ago)
- Last Synced: 2026-03-02T08:09:34.381Z (1 day ago)
- Versions: 2
- Dependent Packages: 0
- Dependent Repositories: 2
- Downloads: 22,942 Last month
-
Rankings:
- Stargazers count: 0.011%
- Forks count: 0.012%
- Average: 4.897%
- Downloads: 5.372%
- Dependent packages count: 7.303%
- Dependent repos count: 11.788%
- Maintainers (1)
proxy.golang.org: github.com/protocolbuffers/ProtoBuf
- Homepage: https://github.com/protocolbuffers/ProtoBuf
- Documentation: https://pkg.go.dev/github.com/protocolbuffers/ProtoBuf#section-documentation
- Licenses: BSD-3-Clause
- Latest release: v6.31.1+incompatible (published 9 months ago)
- Last Synced: 2026-03-02T08:04:09.710Z (1 day ago)
- Versions: 300
- 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%
npmjs.org: @kintegrate/google-protobuf
Protocol Buffers for JavaScript
- Homepage:
- Licenses: BSD-3-Clause
- Latest release: 3.15.7 (published almost 5 years ago)
- Last Synced: 2026-03-02T08:04:01.242Z (1 day ago)
- Versions: 2
- Dependent Packages: 5
- Dependent Repositories: 5
- Downloads: 9 Last month
-
Rankings:
- Stargazers count: 0.089%
- Forks count: 0.337%
- Dependent packages count: 3.592%
- Dependent repos count: 5.224%
- Average: 5.674%
- Downloads: 19.131%
- 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-03-02T08:04:02.717Z (1 day ago)
- Versions: 3
- Dependent Packages: 4
- Dependent Repositories: 1
- Downloads: 10,044 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)
npmjs.org: @blocto/google-protobuf
Protocol Buffers for JavaScript
- Homepage:
- Licenses: BSD-3-Clause
- Latest release: 3.19.1 (published over 4 years ago)
- Last Synced: 2026-03-02T08:03:50.114Z (1 day ago)
- Versions: 1
- Dependent Packages: 2
- Dependent Repositories: 3
- Downloads: 149 Last month
-
Rankings:
- Stargazers count: 0.088%
- Forks count: 0.337%
- Average: 6.539%
- Dependent repos count: 6.605%
- Dependent packages count: 8.713%
- Downloads: 16.952%
- Maintainers (6)
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-02-03T13:42:16.869Z (28 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-02-03T13:40:39.246Z (28 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.0 (published 5 days ago)
- Last Synced: 2026-03-02T06:10:28.471Z (1 day ago)
- Versions: 196
- Dependent Packages: 986
- Dependent Repositories: 0
- Downloads: 1,080,402,327 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)
npmjs.org: @xrc-inc/google-protobuf
Protocol Buffers for JavaScript
- Homepage:
- Licenses: BSD-3-Clause
- Latest release: 3.6.4 (published over 7 years ago)
- Last Synced: 2026-03-02T08:06:11.798Z (1 day ago)
- Versions: 4
- Dependent Packages: 2
- Dependent Repositories: 1
- Downloads: 24 Last month
-
Rankings:
- Stargazers count: 0.089%
- Forks count: 0.337%
- Average: 7.334%
- Dependent packages count: 8.713%
- Dependent repos count: 10.702%
- Downloads: 16.828%
- Maintainers (4)
nuget.org: ydou.google.protobuf
C# runtime library for Protocol Buffers - Google's data interchange format.
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: other
- Latest release: (published 1 day ago)
- Last Synced: 2026-03-02T08:03:34.708Z (1 day ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Forks count: 0.001%
- Stargazers count: 0.001%
- Average: 8.062%
- Dependent repos count: 12.697%
- Dependent packages count: 19.548%
nuget.org: protobuff_x86_64
Protocol Buffers are a way of encoding structured data in an efficient yet extensible format.
- Homepage: https://github.com/protocolbuffers/protobuf/
- Licenses: other
- Latest release: (published 1 day ago)
- Last Synced: 2026-03-02T08:09:05.161Z (1 day ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Forks count: 0.001%
- Stargazers count: 0.001%
- Average: 8.062%
- Dependent repos count: 12.697%
- Dependent packages count: 19.548%
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-20260302032715-3d9471b823fa (published 1 day ago)
- Last Synced: 2026-03-02T08:09:37.575Z (1 day ago)
- Versions: 1,468
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent packages count: 6.999%
- Average: 8.173%
- Dependent repos count: 9.346%
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 6 months ago)
- Last Synced: 2026-03-02T08:04:19.905Z (1 day ago)
- Versions: 4
- Dependent Packages: 1
- Dependent Repositories: 0
- Downloads: 11,474,911 Total
-
Rankings:
- Downloads: 0.51%
- Average: 8.186%
- Dependent repos count: 10.162%
- Dependent packages count: 13.886%
- Maintainers (1)
pypi.org: protoc-exe
PyPI packaged Protocol Buffers Compiler
- Homepage: https://github.com/fleshgrinder/python-protoc-exe
- Documentation: https://protoc-exe.readthedocs.io/
- Licenses: BSD-3-Clause
- Latest release: 22.0rc1 (published almost 3 years ago)
- Last Synced: 2026-03-02T08:04:09.617Z (1 day ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 531 Last month
-
Rankings:
- Stargazers count: 0.009%
- Forks count: 0.012%
- Dependent packages count: 6.633%
- Average: 9.639%
- Downloads: 10.931%
- Dependent repos count: 30.611%
- Maintainers (1)
npmjs.org: @shaxbee/google-protobuf
Protocol Buffers for JavaScript
- Homepage:
- Licenses: BSD-3-Clause
- Latest release: 3.6.3 (published about 7 years ago)
- Last Synced: 2026-03-02T08:07:05.689Z (1 day ago)
- Versions: 3
- Dependent Packages: 1
- Dependent Repositories: 1
- Downloads: 15 Last month
-
Rankings:
- Stargazers count: 0.088%
- Forks count: 0.337%
- Average: 9.973%
- Dependent repos count: 10.702%
- Downloads: 17.663%
- Dependent packages count: 21.076%
- Maintainers (1)
nuget.org: protobuf.lite.static
Protocol Buffers Lite(a.k.a., protobuf) are Google's language-neutral, platform-neutral, extensible mechanism for serializing structured data. You can find protobuf's documentation on the Google Developers site.
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: other
- Latest release: (published 1 day ago)
- Last Synced: 2026-03-02T08:04:00.059Z (1 day ago)
- Versions: 1
- Dependent Packages: 1
- Dependent Repositories: 0
-
Rankings:
- Dependent packages count: 10.33%
- Average: 11.513%
- Dependent repos count: 12.697%
nuget.org: google.protobuf.tools
See project site for more info.
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: other
- Latest release: 3.34.0 (published 5 days ago)
- Last Synced: 2026-03-02T08:03:57.085Z (1 day ago)
- Versions: 186
- Dependent Packages: 58
- Dependent Repositories: 0
- Downloads: 27,960,433 Total
-
Rankings:
- Downloads: 0.358%
- Average: 11.891%
- Dependent repos count: 14.978%
- Dependent packages count: 20.338%
- Maintainers (1)
npmjs.org: google-protobuf-haddas
Protocol Buffers for JavaScript
- Homepage:
- Licenses: BSD-3-Clause
- Latest release: 3.17.3 (published over 4 years ago)
- Last Synced: 2026-03-02T08:03:59.069Z (1 day ago)
- Versions: 4
- Dependent Packages: 1
- Dependent Repositories: 0
- Downloads: 10 Last month
-
Rankings:
- Stargazers count: 0.094%
- Forks count: 0.456%
- Average: 13.336%
- Dependent packages count: 16.224%
- Downloads: 24.577%
- Dependent repos count: 25.328%
- 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 1 day ago)
- Last Synced: 2026-03-02T08:06:24.135Z (1 day ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 7.534%
- Average: 13.872%
- Dependent packages count: 20.211%
npmjs.org: minified-google-protobuf
Protocol Buffers for JavaScript
- Homepage:
- Licenses: BSD-3-Clause
- Latest release: 1.0.0 (published over 4 years ago)
- Last Synced: 2026-03-02T08:04:21.585Z (1 day ago)
- Versions: 1
- Dependent Packages: 1
- Dependent Repositories: 0
- Downloads: 7 Last month
-
Rankings:
- Stargazers count: 0.098%
- Forks count: 0.452%
- Average: 14.143%
- Dependent packages count: 16.224%
- Dependent repos count: 25.328%
- Downloads: 28.613%
- Maintainers (1)
repo1.maven.org: com.google.protobuf:protobuf-parent
Protocol Buffers are a way of encoding structured data in an efficient yet extensible format.
- Homepage: https://developers.google.com/protocol-buffers/
- Documentation: https://appdoc.app/artifact/com.google.protobuf/protobuf-parent/
- Licenses: BSD-3-Clause
- Latest release: 4.34.0 (published 5 days ago)
- Last Synced: 2026-03-02T08:04:11.972Z (1 day ago)
- Versions: 195
- Dependent Packages: 0
- Dependent Repositories: 3
- Docker Downloads: 69
-
Rankings:
- Stargazers count: 0.351%
- Forks count: 0.528%
- Dependent repos count: 13.691%
- Average: 16.111%
- Dependent packages count: 49.872%
- Advisories:
nuget.org: fluid.protobuf
Protocol Buffers - Google's data interchange format
- Homepage: https://github.com/protocolbuffers/protobuf.git
- Licenses: MIT
- Latest release: 1.0.14 (published over 3 years ago)
- Last Synced: 2026-03-02T08:04:00.584Z (1 day ago)
- Versions: 2
- Dependent Packages: 1
- Dependent Repositories: 0
- Downloads: 2,927 Total
-
Rankings:
- Dependent packages count: 10.33%
- Dependent repos count: 12.697%
- Average: 22.105%
- Downloads: 43.289%
- Maintainers (1)
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 4 months ago)
- Last Synced: 2026-02-15T19:11:56.179Z (16 days 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.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-03-02T08:07:32.751Z (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)
rubygems.org: jitera-google-protobuf
Protocol Buffers are Google's data interchange format.
- Homepage:
- Documentation: http://www.rubydoc.info/gems/jitera-google-protobuf/
- Licenses: BSD-3-Clause
- Latest release: 3.21.12.pre.beta.3 (published about 3 years ago)
- Last Synced: 2026-03-02T08:03:48.748Z (1 day ago)
- Versions: 3
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 4,949 Total
-
Rankings:
- Stargazers count: 0.001%
- Forks count: 0.01%
- Dependent packages count: 15.706%
- Average: 32.25%
- Dependent repos count: 46.779%
- Downloads: 98.753%
- Maintainers (1)
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 22 days ago)
- Last Synced: 2026-02-15T20:05:51.832Z (16 days ago)
- Versions: 4
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent packages count: 51.787%
- Average: 54.361%
- Dependent repos count: 56.935%
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-03-02T20:26:19.226Z (about 22 hours 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-03-02T20:26:16.872Z (about 22 hours 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
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 30 days ago)
- Last Synced: 2026-02-03T18:35:48.476Z (28 days ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
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-03-02T20:26:18.384Z (about 22 hours 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 about 2 years ago)
- Last Synced: 2026-02-03T12:19:08.318Z (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: 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 about 2 years ago)
- Last Synced: 2026-02-03T12:17:09.600Z (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: 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-02-03T13:31:15.133Z (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: 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-02-03T13:33:12.093Z (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: 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-02-03T13:27:49.933Z (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.23: protobuf-vim
Vim syntax for protobuf
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 almost 2 years ago)
- Last Synced: 2026-02-04T00:11:46.867Z (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-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-02-04T00:12:13.271Z (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: 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 about 2 years ago)
- Last Synced: 2026-03-02T20:26:13.195Z (about 22 hours 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 about 2 years ago)
- Last Synced: 2026-02-04T00:12:13.578Z (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: 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 almost 2 years ago)
- Last Synced: 2026-02-22T07:24:52.097Z (9 days ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
- Maintainers (1)
alpine-v3.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-02-04T00:12:33.973Z (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.22: protobuf
Library for extensible, efficient structure packing
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 29.4-r0 (published 10 months ago)
- Last Synced: 2026-02-04T00:12:05.017Z (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 about 1 month ago)
- Last Synced: 2026-02-03T17:24:20.092Z (28 days ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
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-02-04T00:11:47.437Z (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.23: libprotobuf
Runtime library for C++ users of protocol buffers
alpine-v3.23: libprotobuf-lite
Runtime library for C++ users with 'lite runtime' setting of protocol buffers
alpine-v3.23: libprotoc
Runtime library for Protocol Buffer compiler
registry.bazel.build: protobuf
- Homepage: https://github.com/protocolbuffers/protobuf
- Documentation: https://registry.bazel.build/docs/protobuf
- Licenses:
- Latest release: 3.19.6 (published about 1 month ago)
- Last Synced: 2026-03-02T08:04:35.192Z (1 day ago)
- Versions: 59
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
- Maintainers (19)
alpine-v3.23: protobuf
Library for extensible, efficient structure packing
alpine-v3.23: protobuf-dev
Library for extensible, efficient structure packing (development files)
alpine-v3.23: py3-protobuf-pyc
Precompiled Python bytecode for py3-protobuf
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 about 2 years ago)
- Last Synced: 2026-03-02T04:09:05.071Z (1 day 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 10 months ago)
- Last Synced: 2026-02-04T00:12:13.483Z (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.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 10 months ago)
- Last Synced: 2026-02-04T00:12:11.880Z (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.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 10 months ago)
- Last Synced: 2026-02-04T00:12:08.596Z (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: 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 about 2 years ago)
- Last Synced: 2026-02-22T07:24:33.155Z (9 days ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
- Maintainers (1)
alpine-v3.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 10 months ago)
- Last Synced: 2026-02-04T00:11:53.860Z (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.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 10 months ago)
- Last Synced: 2026-02-28T12:04:55.988Z (3 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 10 months ago)
- Last Synced: 2026-02-04T00:12:14.564Z (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: 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-02-28T06:03:42.054Z (4 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 30 days ago)
- Last Synced: 2026-02-03T20:20:00.507Z (28 days ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
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-02-04T00:12:37.847Z (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: 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-02-04T00:12:14.147Z (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: 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-02-04T00:12:14.203Z (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: 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-02-04T00:12:07.550Z (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: 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-02-04T00:12:06.838Z (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: 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 almost 2 years ago)
- Last Synced: 2026-02-04T00:12:01.047Z (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-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 about 1 month ago)
- Last Synced: 2026-02-04T00:12:04.381Z (28 days ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
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-02-04T00:11:56.226Z (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)
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#n638
- Licenses: bsd-3
- Latest release: 3.21.9 (published about 23 hours ago)
- Last Synced: 2026-03-02T19:49:55.826Z (about 23 hours ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
alpine-v3.20: libprotoc
Runtime library for Protocol Buffer compiler
- Homepage: https://github.com/protocolbuffers/protobuf
- Licenses: BSD-3-Clause
- Latest release: 24.4-r1 (published about 2 years ago)
- Last Synced: 2026-03-02T20:26:12.641Z (about 22 hours 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
- com.google.guava:guava test
- com.google.truth:truth test
- junit:junit test
- org.mockito:mockito-core test
- 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-javalite 3.21.12
- 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.guava:guava test
- com.google.truth:truth test
- junit:junit 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
- com.google.code.findbugs:jsr305 3.0.2
- com.google.code.gson:gson 2.8.9
- com.google.errorprone:error_prone_annotations 2.5.1
- com.google.guava:guava
- com.google.j2objc:j2objc-annotations 1.3
- com.google.protobuf:protobuf-java
- junit:junit
- com.google.guava:guava-testlib test
- com.google.truth:truth test
- org.mockito:mockito-core 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
- aho-corasick 1.1.2
- autocfg 1.1.0
- googletest 0.10.0
- googletest_macro 0.10.0
- memchr 2.6.4
- num-traits 0.2.17
- paste 1.0.14
- proc-macro2 1.0.69
- quote 1.0.33
- regex 1.10.0
- regex-automata 0.4.1
- regex-syntax 0.8.1
- rustversion 1.0.14
- syn 2.0.38
- unicode-ident 1.0.12
- 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
Score: 41.58648432639406