|
1 | 1 | module github.com/ockibagusp/golang-website-example |
2 | 2 |
|
3 | | -go 1.14 |
| 3 | +go 1.18 |
4 | 4 |
|
5 | 5 | 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 |
6 | 21 | github.com/andybalholm/brotli v1.0.4 // indirect |
| 22 | + github.com/asaskevich/govalidator v0.0.0-20200108200545-475eaeb16496 // indirect |
7 | 23 | github.com/davecgh/go-spew v1.1.1 // indirect |
8 | 24 | github.com/fatih/structs v1.1.0 // indirect |
9 | | - github.com/gavv/httpexpect/v2 v2.3.1 |
10 | 25 | 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 |
12 | 28 | 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 |
14 | 32 | 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 |
15 | 35 | 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 |
18 | 36 | github.com/labstack/gommon v0.3.1 // indirect |
19 | 37 | 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 |
20 | 40 | 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 |
24 | 42 | github.com/valyala/fasthttp v1.31.0 // indirect |
| 43 | + github.com/valyala/fasttemplate v1.2.1 // indirect |
25 | 44 | github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect |
| 45 | + github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect |
26 | 46 | 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 |
28 | 50 | golang.org/x/net v0.0.0-20211205041911-012df41ee64c // indirect |
29 | 51 | golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e // indirect |
| 52 | + golang.org/x/text v0.3.7 // indirect |
30 | 53 | golang.org/x/time v0.0.0-20211116232009-f0f3c7e86c11 // indirect |
31 | 54 | 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 |
34 | 57 | ) |
0 commit comments