-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathgo.mod
60 lines (57 loc) · 2.26 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
module github.com/golang-ninja-courses/error-handling-mastery
go 1.18
require (
emperror.dev/emperror v0.33.0
emperror.dev/errors v0.8.1
emperror.dev/handler/logrus v0.3.1
github.com/cockroachdb/errors v1.9.0
github.com/getsentry/sentry-go v0.13.0
github.com/gogo/protobuf v1.3.2
github.com/gogo/status v1.1.0
github.com/golang/mock v1.6.0
github.com/hashicorp/go-multierror v1.1.1
github.com/hydrogen18/memlistener v0.0.0-20200120041712-dcc25e7acd91
github.com/jackc/pgx v3.6.2+incompatible
github.com/labstack/echo/v4 v4.10.2
github.com/pkg/errors v0.9.1
github.com/quasilyte/go-ruleguard/dsl v0.3.19
github.com/sirupsen/logrus v1.8.1
github.com/stretchr/testify v1.8.1
go.uber.org/goleak v1.1.10
go.uber.org/multierr v1.8.0
go.uber.org/zap v1.18.1
golang.org/x/sync v0.2.0
google.golang.org/grpc v1.46.0
)
require (
github.com/cockroachdb/apd v1.1.0 // indirect
github.com/cockroachdb/logtags v0.0.0-20211118104740-dabe8e521a4f // indirect
github.com/cockroachdb/redact v1.1.3 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/gofrs/uuid v4.0.0+incompatible // indirect
github.com/gogo/googleapis v1.4.1 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/jackc/fake v0.0.0-20150926172116-812a484cc733 // indirect
github.com/kr/pretty v0.3.0 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/labstack/gommon v0.4.0 // indirect
github.com/lib/pq v1.10.2 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.17 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rogpeppe/go-internal v1.8.1 // indirect
github.com/shopspring/decimal v1.2.0 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasttemplate v1.2.2 // indirect
go.uber.org/atomic v1.9.0 // indirect
golang.org/x/crypto v0.6.0 // indirect
golang.org/x/lint v0.0.0-20210508222113-6edffad5e616 // indirect
golang.org/x/net v0.7.0 // indirect
golang.org/x/sys v0.5.0 // indirect
golang.org/x/text v0.7.0 // indirect
golang.org/x/tools v0.1.12 // indirect
google.golang.org/genproto v0.0.0-20220426171045-31bebdecfb46 // indirect
google.golang.org/protobuf v1.28.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)