From 166edaf3648b2d0e3dd217997e8f077894dfaeec Mon Sep 17 00:00:00 2001 From: Victor Gaydov Date: Tue, 15 Nov 2022 16:35:05 +0400 Subject: [PATCH] Cleanup go.mod --- _examples/go.mod | 11 +++++++---- _examples/go.sum | 1 - go.mod | 17 ++++++++++------- 3 files changed, 17 insertions(+), 12 deletions(-) diff --git a/_examples/go.mod b/_examples/go.mod index 5bc144e37..6a087947e 100644 --- a/_examples/go.mod +++ b/_examples/go.mod @@ -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 ) diff --git a/_examples/go.sum b/_examples/go.sum index 826579128..d5f9f7703 100644 --- a/_examples/go.sum +++ b/_examples/go.sum @@ -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= diff --git a/go.mod b/go.mod index 1d74320fc..8b2c395ab 100644 --- a/go.mod +++ b/go.mod @@ -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 )