Skip to content

Commit

Permalink
Cleanup go.mod
Browse files Browse the repository at this point in the history
  • Loading branch information
gavv committed Nov 15, 2022
1 parent beb677d commit 166edaf
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 12 deletions.
11 changes: 7 additions & 4 deletions _examples/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,21 @@ go 1.14
require (
github.com/dgrijalva/jwt-go v3.0.0+incompatible
github.com/fasthttp/websocket v1.4.2
github.com/gavv/httpexpect v2.0.0+incompatible // indirect
github.com/gavv/httpexpect/v2 v2.0.3
github.com/gin-gonic/gin v1.7.0
github.com/gorilla/websocket v1.4.2
github.com/kataras/iris/v12 v12.1.8
github.com/klauspost/compress v1.15.12 // indirect
github.com/labstack/echo v3.1.0+incompatible
github.com/valyala/fasthttp v1.34.0
google.golang.org/appengine v1.0.0
)

require (
github.com/gavv/httpexpect v2.0.0+incompatible // indirect
github.com/klauspost/compress v1.15.12 // indirect
github.com/labstack/gommon v0.2.9 // indirect
github.com/moul/http2curl v1.0.0 // indirect
github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect
github.com/smartystreets/goconvey v0.0.0-20190731233626-505e41936337 // indirect
github.com/valyala/fasthttp v1.34.0
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
google.golang.org/appengine v1.0.0
)
1 change: 0 additions & 1 deletion _examples/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,6 @@ github.com/kataras/sitemap v0.0.5/go.mod h1:KY2eugMKiPwsJgx7+U103YZehfvNGOXURubc
github.com/klauspost/compress v1.4.0/go.mod h1:RyIbtBH6LamlWaDj8nUwkbUhJ87Yi3uG0guNDohfE1A=
github.com/klauspost/compress v1.8.2/go.mod h1:RyIbtBH6LamlWaDj8nUwkbUhJ87Yi3uG0guNDohfE1A=
github.com/klauspost/compress v1.9.7/go.mod h1:RyIbtBH6LamlWaDj8nUwkbUhJ87Yi3uG0guNDohfE1A=
github.com/klauspost/compress v1.15.0 h1:xqfchp4whNFxn5A4XFyyYtitiWI8Hy5EW59jEwcyL6U=
github.com/klauspost/compress v1.15.0/go.mod h1:/3/Vjq9QcHkK5uEr5lBEmyoZ1iFhe47etQ6QUkpK6sk=
github.com/klauspost/compress v1.15.12 h1:YClS/PImqYbn+UILDnqxQCZ3RehC9N318SU3kElDUEM=
github.com/klauspost/compress v1.15.12/go.mod h1:QPwzmACJjUTFsnSHH934V6woptycfrDDJnH7hvFVbGM=
Expand Down
17 changes: 10 additions & 7 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,22 @@ require (
github.com/google/go-querystring v1.0.0
github.com/gorilla/websocket v1.4.2
github.com/imkira/go-interpol v1.0.0
github.com/stretchr/testify v1.4.0
github.com/valyala/fasthttp v1.34.0
github.com/xeipuuv/gojsonschema v1.1.0
github.com/yalp/jsonpath v0.0.0-20180802001716-5cc68e5049a0
github.com/yudai/gojsondiff v1.0.0
golang.org/x/net v0.0.0-20220225172249-27dd8689420f
moul.io/http2curl/v2 v2.3.0
)

require (
github.com/k0kubun/colorstring v0.0.0-20150214042306-9440f1994b88 // indirect
github.com/mattn/go-colorable v0.1.2 // indirect
github.com/onsi/ginkgo v1.10.1 // indirect
github.com/onsi/gomega v1.7.0 // indirect
github.com/stretchr/testify v1.4.0
github.com/valyala/fasthttp v1.34.0
github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f // indirect
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
github.com/xeipuuv/gojsonschema v1.1.0
github.com/yalp/jsonpath v0.0.0-20180802001716-5cc68e5049a0
github.com/yudai/gojsondiff v1.0.0
github.com/yudai/golcs v0.0.0-20170316035057-ecda9a501e82 // indirect
github.com/yudai/pp v2.0.1+incompatible // indirect
golang.org/x/net v0.0.0-20220225172249-27dd8689420f
moul.io/http2curl/v2 v2.3.0
)

0 comments on commit 166edaf

Please sign in to comment.