-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
31 lines (28 loc) · 1.04 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
module github.com/nrfta/go-log
go 1.21
require (
github.com/99designs/gqlgen v0.17.40
github.com/go-chi/chi v4.1.2+incompatible
github.com/neighborly/go-errors v0.3.1
github.com/onsi/ginkgo v1.14.2
github.com/onsi/gomega v1.10.1
github.com/sirupsen/logrus v1.6.0
github.com/vektah/gqlparser/v2 v2.5.14
)
require (
github.com/fsnotify/fsnotify v1.4.9 // indirect
github.com/golang/protobuf v1.5.0 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/konsorten/go-windows-terminal-sequences v1.0.3 // indirect
github.com/kr/pretty v0.1.0 // indirect
github.com/nxadm/tail v1.4.4 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/sosodev/duration v1.1.0 // indirect
golang.org/x/net v0.23.0 // indirect
golang.org/x/sys v0.18.0 // indirect
golang.org/x/text v0.14.0 // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)