-
Notifications
You must be signed in to change notification settings - Fork 4
/
go.mod
44 lines (40 loc) · 1.32 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
module github.com/kumparan/go-utils
go 1.23.4
require (
github.com/99designs/gqlgen v0.17.49
github.com/agiledragon/gomonkey/v2 v2.12.0
github.com/getsentry/sentry-go v0.30.0
github.com/globalsign/mgo v0.0.0-20181015135952-eeefdecb41b8
github.com/gofrs/uuid/v5 v5.3.0
github.com/goodsign/monday v1.0.2
github.com/graph-gophers/graphql-go v1.5.0
github.com/leekchan/accounting v1.0.0
github.com/microcosm-cc/bluemonday v1.0.27
github.com/robfig/cron/v3 v3.0.1
github.com/shopspring/decimal v1.4.0
github.com/sirupsen/logrus v1.9.3
github.com/stretchr/testify v1.9.0
github.com/vektah/gqlparser/v2 v2.5.16
golang.org/x/text v0.21.0
google.golang.org/grpc v1.69.2
gopkg.in/guregu/null.v4 v4.0.0
gorm.io/gorm v1.22.4
)
require (
github.com/google/uuid v1.6.0 // indirect
github.com/sosodev/duration v1.3.1 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
require (
github.com/aymerick/douceur v0.2.0 // indirect
github.com/cockroachdb/apd v1.1.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/gorilla/css v1.0.1 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.3 // indirect
github.com/oklog/ulid v1.3.1
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/net v0.33.0
golang.org/x/sys v0.28.0 // indirect
)