-
Notifications
You must be signed in to change notification settings - Fork 15
/
go.mod
32 lines (29 loc) · 1.05 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
module github.com/heetch/avro
go 1.19
require (
github.com/actgardner/gogen-avro/v10 v10.2.1
github.com/frankban/quicktest v1.14.0
github.com/google/uuid v1.3.0
github.com/kr/pretty v0.3.0
github.com/linkedin/goavro/v2 v2.11.1
github.com/rogpeppe/go-internal v1.9.0
github.com/sebdah/goldie/v2 v2.5.5
github.com/stretchr/testify v1.7.1
golang.org/x/text v0.3.0
gopkg.in/httprequest.v1 v1.2.1
gopkg.in/retry.v1 v1.0.3
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/golang/snappy v0.0.4 // indirect
github.com/google/go-cmp v0.5.6 // indirect
github.com/julienschmidt/httprouter v1.3.0 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/sergi/go-diff v1.0.0 // indirect
golang.org/x/net v0.0.0-20200505041828-1ed23360d12c // indirect
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543 // indirect
gopkg.in/errgo.v1 v1.0.0 // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
)