Skip to content

Commit fc55a24

Browse files
committed
[26/12/22] fix module to go 1.18
1 parent 5fd45b8 commit fc55a24

File tree

2 files changed

+47
-44
lines changed

2 files changed

+47
-44
lines changed

go.mod

Lines changed: 35 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,57 @@
11
module github.com/ockibagusp/golang-website-example
22

3-
go 1.14
3+
go 1.18
44

55
require (
6+
github.com/gavv/httpexpect/v2 v2.3.1
7+
github.com/go-ozzo/ozzo-validation/v4 v4.3.0
8+
github.com/gorilla/sessions v1.2.1
9+
github.com/labstack/echo-contrib v0.11.0
10+
github.com/labstack/echo/v4 v4.6.1
11+
github.com/sirupsen/logrus v1.8.1
12+
github.com/stretchr/testify v1.7.0
13+
github.com/tkanos/gonfig v0.0.0-20210106201359-53e13348de2f
14+
golang.org/x/crypto v0.0.0-20211117183948-ae814b36b871
15+
gorm.io/driver/mysql v1.2.0
16+
gorm.io/gorm v1.22.3
17+
)
18+
19+
require (
20+
github.com/ajg/form v1.5.1 // indirect
621
github.com/andybalholm/brotli v1.0.4 // indirect
22+
github.com/asaskevich/govalidator v0.0.0-20200108200545-475eaeb16496 // indirect
723
github.com/davecgh/go-spew v1.1.1 // indirect
824
github.com/fatih/structs v1.1.0 // indirect
9-
github.com/gavv/httpexpect/v2 v2.3.1
1025
github.com/ghodss/yaml v1.0.0 // indirect
11-
github.com/go-ozzo/ozzo-validation/v4 v4.3.0
26+
github.com/go-sql-driver/mysql v1.6.0 // indirect
27+
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
1228
github.com/google/go-querystring v1.1.0 // indirect
13-
github.com/gorilla/sessions v1.2.1
29+
github.com/gorilla/context v1.1.1 // indirect
30+
github.com/gorilla/securecookie v1.1.1 // indirect
31+
github.com/gorilla/websocket v1.4.2 // indirect
1432
github.com/imkira/go-interpol v1.1.0 // indirect
33+
github.com/jinzhu/inflection v1.0.0 // indirect
34+
github.com/jinzhu/now v1.1.2 // indirect
1535
github.com/klauspost/compress v1.13.6 // indirect
16-
github.com/labstack/echo-contrib v0.11.0
17-
github.com/labstack/echo/v4 v4.6.1
1836
github.com/labstack/gommon v0.3.1 // indirect
1937
github.com/mattn/go-colorable v0.1.11 // indirect
38+
github.com/mattn/go-isatty v0.0.14 // indirect
39+
github.com/pmezard/go-difflib v1.0.0 // indirect
2040
github.com/sergi/go-diff v1.2.0 // indirect
21-
github.com/sirupsen/logrus v1.8.1
22-
github.com/stretchr/testify v1.7.0
23-
github.com/tkanos/gonfig v0.0.0-20210106201359-53e13348de2f
41+
github.com/valyala/bytebufferpool v1.0.0 // indirect
2442
github.com/valyala/fasthttp v1.31.0 // indirect
43+
github.com/valyala/fasttemplate v1.2.1 // indirect
2544
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
45+
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
2646
github.com/xeipuuv/gojsonschema v1.2.0 // indirect
27-
golang.org/x/crypto v0.0.0-20211117183948-ae814b36b871
47+
github.com/yalp/jsonpath v0.0.0-20180802001716-5cc68e5049a0 // indirect
48+
github.com/yudai/gojsondiff v1.0.0 // indirect
49+
github.com/yudai/golcs v0.0.0-20170316035057-ecda9a501e82 // indirect
2850
golang.org/x/net v0.0.0-20211205041911-012df41ee64c // indirect
2951
golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e // indirect
52+
golang.org/x/text v0.3.7 // indirect
3053
golang.org/x/time v0.0.0-20211116232009-f0f3c7e86c11 // indirect
3154
gopkg.in/yaml.v2 v2.4.0 // indirect
32-
gorm.io/driver/mysql v1.2.0
33-
gorm.io/gorm v1.22.3
55+
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
56+
moul.io/http2curl v1.0.1-0.20190925090545-5cd742060b0e // indirect
3457
)

0 commit comments

Comments
 (0)