-
Notifications
You must be signed in to change notification settings - Fork 159
/
go.mod
65 lines (61 loc) · 2.75 KB
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
module github.com/alecthomas/go_serialization_benchmarks
go 1.22.4
require (
github.com/200sc/bebop v0.5.0
github.com/Sereal/Sereal v0.0.0-20230201113653-fa72c87b650e
github.com/alecthomas/binary v0.0.0-20221018225505-74871811ee56
github.com/calmh/xdr v1.1.0
github.com/chmike/ditp v0.0.0-20240629115045-1ab5bbd646cd
github.com/cosmos/cosmos-proto v1.0.0-beta.3
github.com/cybriq/gotiny v0.0.5
github.com/davecgh/go-xdr v0.0.0-20161123171359-e6a2ba005892
github.com/deneonet/benc v1.0.2
github.com/glycerine/go-capnproto v0.0.0-20190118050403-2d07de3aa7fc
github.com/gogo/protobuf v1.3.2
github.com/google/flatbuffers v23.1.21+incompatible
github.com/hprose/hprose-go v0.0.0-20161031134501-83de97da5004
github.com/hprose/hprose-golang v2.0.4+incompatible
github.com/ikkerens/ikeapack v1.5.1
github.com/json-iterator/go v1.1.12
github.com/linkedin/goavro v1.0.5
github.com/linkedin/goavro/v2 v2.12.0
github.com/mailru/easyjson v0.7.7
github.com/nazarifard/fastape v0.0.0-20240611084216-abaecf150e5b
github.com/prysmaticlabs/go-ssz v0.0.0-20190827151743-72881c4223d8
github.com/shamaton/msgpack/v2 v2.1.1
github.com/shamaton/msgpackgen v0.3.0
github.com/tinylib/msgp v1.1.8
github.com/ugorji/go/codec v1.2.9
github.com/valyala/fastjson v1.6.4
github.com/vmihailenco/msgpack/v5 v5.3.5
go.dedis.ch/protobuf v1.0.11
go.mongodb.org/mongo-driver v1.11.1
google.golang.org/protobuf v1.34.2
gopkg.in/mgo.v2 v2.0.0-20190816093944-a6b53ec6cb22
wellquite.org/bebop v0.0.0-20231109192402-a92af83691ec
)
require github.com/mus-format/common-go v0.0.0-20240427160332-fda7f59c1da2 // indirect
require (
github.com/DataDog/zstd v1.5.2 // indirect
github.com/glycerine/goconvey v0.0.0-20190410193231-58a59202ab31 // indirect
github.com/glycerine/rbtree v0.0.0-20190406191118-ceb71889d809 // indirect
github.com/golang/snappy v0.0.4 // indirect
github.com/google/go-cmp v0.5.9 // indirect
github.com/google/uuid v1.3.1 // indirect
github.com/gopherjs/gopherjs v0.0.0-20210603182125-eeedf4a0e899 // indirect
github.com/gorilla/websocket v1.4.2 // indirect
github.com/josharian/intern v1.0.0 // indirect
github.com/jtolds/gls v4.20.0+incompatible // indirect
github.com/kr/pretty v0.3.1 // indirect
github.com/minio/sha256-simd v0.1.0 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/mus-format/mus-go v0.3.0
github.com/philhofer/fwd v1.1.2 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/protolambda/zssz v0.1.1 // indirect
github.com/prysmaticlabs/go-bitfield v0.0.0-20190825002834-fb724e897364 // indirect
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
golang.org/x/exp v0.0.0-20231110203233-9a3e6036ecaa // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)