Ecosyste.ms: Funds

An open API service for providing issue and pull request metadata for open source projects.

https://github.com/hashicorp/go-msgpack

Last synced: about 4 hours ago

Repository metadata:

Open-Source Go Code. msgpack.org[Go]


Owner metadata:


Committers metadata

Last synced: about 7 hours ago

Total Commits: 438
Total Committers: 16
Avg Commits per committer: 27.375
Development Distribution Score (DDS): 0.048

Commits in past year: 1
Committers in past year: 1
Avg Commits per committer in past year: 1.0
Development Distribution Score (DDS) in past year: 0.0

Name Email Commits
Ugorji Nwoke u****i@g****m 417
Christopher Swenson s****n@s****o 5
Christopher Swenson c****n@h****m 2
Daniel Cannon d****l@d****k 2
Alfonso Acosta f****s@w****s 1
Chris S. Kim c****m@h****m 1
Joe Farrell j****l@g****m 1
Jordan Liggitt j****t@r****m 1
Mahmood Ali m****d@h****m 1
Sergey Shepelev t****r@g****m 1
Vincent Vanackere v****e@g****m 1
teeler t****r@g****m 1
Allen Luce a****e 1
Chris Baker 1****r 1
Nick Galbreath c****9 1
hashicorp-tsccr[bot] 1****] 1

Issue and Pull Request metadata

Last synced: about 4 hours ago


Package metadata

go: github.com/hashicorp/go-msgpack

  • Homepage: https://github.com/hashicorp/go-msgpack
  • Documentation: https://pkg.go.dev/github.com/hashicorp/go-msgpack#section-documentation
  • Licenses: BSD-3-Clause
  • Latest release: v0.5.5 (published over 5 years ago)
  • Last Synced: 2024-11-09T00:04:20.604Z (1 day ago)
  • Versions: 8
  • Dependent Packages: 6,408
  • Dependent Repositories: 69,918
  • Docker Downloads: 19,711,984,817
  • Rankings:
    • Dependent repos count: 0.018%
    • Docker downloads count: 0.019%
    • Dependent packages count: 0.03%
    • Average: 2.131%
    • Stargazers count: 5.279%
    • Forks count: 5.308%
go: github.com/hashicorp/go-msgpack/v2

  • Homepage: https://github.com/hashicorp/go-msgpack
  • Documentation: https://pkg.go.dev/github.com/hashicorp/go-msgpack/v2#section-documentation
  • Licenses: MIT
  • Latest release: v2.1.2 (published 8 months ago)
  • Last Synced: 2024-11-09T00:04:23.717Z (1 day ago)
  • Versions: 4
  • Dependent Packages: 39
  • Dependent Repositories: 147
  • Docker Downloads: 1,714,546,470
  • Rankings:
    • Docker downloads count: 0.103%
    • Dependent repos count: 0.51%
    • Dependent packages count: 0.764%
    • Average: 2.446%
    • Stargazers count: 5.41%
    • Forks count: 5.442%
go: github.com/hashicorp/go-msgpack/codec

High Performance, Feature-Rich Idiomatic Go encoding library for msgpack and binc . Supported Serialization formats are: To install: The idiomatic Go support is as seen in other encoding packages in the standard library (ie json, xml, gob, etc). Rich Feature Set includes: Users can register a function to handle the encoding or decoding of their custom types. There are no restrictions on what the custom type can be. Some examples: As an illustration, MyStructWithUnexportedFields would normally be encoded as an empty map because it has no exported fields, while UUID would be encoded as a string. However, with extension support, you can encode any of these however you like. RPC Client and Server Codecs are implemented, so the codecs can be used with the standard net/rpc package. Typical usage model: Run the benchmark suite using: To run full benchmark suite (including against vmsgpack and bson), see notes in ext_dep_test.go Msgpack-c implementation powers the c, c++, python, ruby, etc libraries. We need to maintain compatibility with it and how it encodes integer values without caring about the type. For compatibility with behaviour of msgpack-c reference implementation:

  • Homepage: https://github.com/hashicorp/go-msgpack
  • Documentation: https://pkg.go.dev/github.com/hashicorp/go-msgpack/codec#section-documentation
  • Licenses: BSD-3-Clause
  • Latest release: v1.1.6 (published almost 2 years ago)
  • Last Synced: 2024-11-04T22:02:50.373Z (5 days ago)
  • Versions: 5
  • Dependent Packages: 36
  • Dependent Repositories: 68
  • Rankings:
    • Dependent repos count: 0.71%
    • Dependent packages count: 0.8%
    • Average: 3.024%
    • Stargazers count: 5.279%
    • Forks count: 5.308%

Dependencies

.github/workflows/test.yaml actions
  • actions/checkout v3 composite
  • actions/setup-go v3 composite
go.mod go
  • github.com/DataDog/zstd v1.5.2
  • github.com/Sereal/Sereal v0.0.0-20221130110801-16a4f76670cd
  • github.com/davecgh/go-xdr v0.0.0-20161123171359-e6a2ba005892
  • github.com/golang/protobuf v1.5.2
  • github.com/golang/snappy v0.0.4
  • github.com/google/go-cmp v0.5.9
  • github.com/josharian/intern v1.0.0
  • github.com/json-iterator/go v1.1.12
  • github.com/mailru/easyjson v0.7.7
  • github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd
  • github.com/modern-go/reflect2 v1.0.2
  • github.com/philhofer/fwd v1.1.1
  • github.com/pquerna/ffjson v0.0.0-20190930134022-aa0246cd15f7
  • github.com/tinylib/msgp v1.1.6
  • golang.org/x/mod v0.7.0
  • golang.org/x/net v0.2.0
  • golang.org/x/sys v0.3.0
  • golang.org/x/tools v0.3.0
  • google.golang.org/appengine v1.6.7
  • google.golang.org/protobuf v1.28.1
  • gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c
  • gopkg.in/mgo.v2 v2.0.0-20190816093944-a6b53ec6cb22
  • gopkg.in/vmihailenco/msgpack.v2 v2.9.2
  • gopkg.in/yaml.v2 v2.4.0
go.sum go
  • github.com/DataDog/zstd v1.5.2
  • github.com/Sereal/Sereal v0.0.0-20221130110801-16a4f76670cd
  • github.com/davecgh/go-spew v1.1.0
  • github.com/davecgh/go-spew v1.1.1
  • github.com/davecgh/go-xdr v0.0.0-20161123171359-e6a2ba005892
  • github.com/golang/protobuf v1.3.1
  • github.com/golang/protobuf v1.5.0
  • github.com/golang/protobuf v1.5.2
  • github.com/golang/snappy v0.0.4
  • github.com/google/go-cmp v0.5.5
  • github.com/google/go-cmp v0.5.9
  • github.com/google/gofuzz v1.0.0
  • github.com/josharian/intern v1.0.0
  • github.com/json-iterator/go v1.1.12
  • github.com/kr/pretty v0.2.1
  • github.com/kr/pty v1.1.1
  • github.com/kr/text v0.1.0
  • github.com/mailru/easyjson v0.7.7
  • github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421
  • github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd
  • github.com/modern-go/reflect2 v1.0.2
  • github.com/philhofer/fwd v1.1.1
  • github.com/pmezard/go-difflib v1.0.0
  • github.com/pquerna/ffjson v0.0.0-20190930134022-aa0246cd15f7
  • github.com/stretchr/objx v0.1.0
  • github.com/stretchr/testify v1.3.0
  • github.com/tinylib/msgp v1.1.6
  • github.com/yuin/goldmark v1.2.1
  • golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2
  • golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550
  • golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9
  • golang.org/x/mod v0.3.0
  • golang.org/x/mod v0.7.0
  • golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3
  • golang.org/x/net v0.0.0-20190603091049-60506f45cf65
  • golang.org/x/net v0.0.0-20190620200207-3b0461eec859
  • golang.org/x/net v0.0.0-20201021035429-f5854403a974
  • golang.org/x/net v0.2.0
  • golang.org/x/sync v0.0.0-20190423024810-112230192c58
  • golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9
  • golang.org/x/sync v0.1.0
  • golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a
  • golang.org/x/sys v0.0.0-20190412213103-97732733099d
  • golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f
  • golang.org/x/sys v0.3.0
  • golang.org/x/text v0.3.0
  • golang.org/x/text v0.3.2
  • golang.org/x/text v0.3.3
  • golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e
  • golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e
  • golang.org/x/tools v0.0.0-20201022035929-9cf592e881e9
  • golang.org/x/tools v0.3.0
  • golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7
  • golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898
  • golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543
  • golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1
  • google.golang.org/appengine v1.6.7
  • google.golang.org/protobuf v1.26.0-rc.1
  • google.golang.org/protobuf v1.26.0
  • google.golang.org/protobuf v1.28.1
  • gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405
  • gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c
  • gopkg.in/mgo.v2 v2.0.0-20190816093944-a6b53ec6cb22
  • gopkg.in/vmihailenco/msgpack.v2 v2.9.2
  • gopkg.in/yaml.v2 v2.4.0