aboutsummaryrefslogtreecommitdiff
path: root/echo/go.mod
diff options
context:
space:
mode:
Diffstat (limited to 'echo/go.mod')
-rw-r--r--echo/go.mod14
1 files changed, 12 insertions, 2 deletions
diff --git a/echo/go.mod b/echo/go.mod
index 50a44a8..578e9fc 100644
--- a/echo/go.mod
+++ b/echo/go.mod
@@ -11,6 +11,7 @@ require (
11 github.com/labstack/echo/v4 v4.6.1 11 github.com/labstack/echo/v4 v4.6.1
12 github.com/labstack/gommon v0.3.1 12 github.com/labstack/gommon v0.3.1
13 github.com/prometheus/client_golang v1.11.0 13 github.com/prometheus/client_golang v1.11.0
14 github.com/quic-go/quic-go v0.39.0
14 github.com/stretchr/testify v1.8.1 15 github.com/stretchr/testify v1.8.1
15 gopkg.in/square/go-jose.v2 v2.5.1 16 gopkg.in/square/go-jose.v2 v2.5.1
16) 17)
@@ -23,9 +24,11 @@ require (
23 github.com/cespare/xxhash/v2 v2.1.1 // indirect 24 github.com/cespare/xxhash/v2 v2.1.1 // indirect
24 github.com/davecgh/go-spew v1.1.1 // indirect 25 github.com/davecgh/go-spew v1.1.1 // indirect
25 github.com/fatih/color v1.7.0 // indirect 26 github.com/fatih/color v1.7.0 // indirect
27 github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 // indirect
26 github.com/golang-jwt/jwt v3.2.2+incompatible // indirect 28 github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
27 github.com/golang/protobuf v1.5.2 // indirect 29 github.com/golang/protobuf v1.5.3 // indirect
28 github.com/golang/snappy v0.0.4 // indirect 30 github.com/golang/snappy v0.0.4 // indirect
31 github.com/google/pprof v0.0.0-20210407192527-94a9f03dee38 // indirect
29 github.com/hashicorp/errwrap v1.1.0 // indirect 32 github.com/hashicorp/errwrap v1.1.0 // indirect
30 github.com/hashicorp/go-cleanhttp v0.5.2 // indirect 33 github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
31 github.com/hashicorp/go-hclog v0.16.2 // indirect 34 github.com/hashicorp/go-hclog v0.16.2 // indirect
@@ -55,22 +58,29 @@ require (
55 github.com/mitchellh/mapstructure v1.5.0 // indirect 58 github.com/mitchellh/mapstructure v1.5.0 // indirect
56 github.com/mitchellh/reflectwalk v1.0.0 // indirect 59 github.com/mitchellh/reflectwalk v1.0.0 // indirect
57 github.com/oklog/run v1.0.0 // indirect 60 github.com/oklog/run v1.0.0 // indirect
61 github.com/onsi/ginkgo/v2 v2.9.5 // indirect
58 github.com/pierrec/lz4 v2.5.2+incompatible // indirect 62 github.com/pierrec/lz4 v2.5.2+incompatible // indirect
59 github.com/pmezard/go-difflib v1.0.0 // indirect 63 github.com/pmezard/go-difflib v1.0.0 // indirect
60 github.com/prometheus/client_model v0.2.0 // indirect 64 github.com/prometheus/client_model v0.2.0 // indirect
61 github.com/prometheus/common v0.32.1 // indirect 65 github.com/prometheus/common v0.32.1 // indirect
62 github.com/prometheus/procfs v0.6.0 // indirect 66 github.com/prometheus/procfs v0.6.0 // indirect
67 github.com/quic-go/qpack v0.4.0 // indirect
68 github.com/quic-go/qtls-go1-20 v0.3.4 // indirect
63 github.com/ryanuber/go-glob v1.0.0 // indirect 69 github.com/ryanuber/go-glob v1.0.0 // indirect
64 github.com/valyala/bytebufferpool v1.0.0 // indirect 70 github.com/valyala/bytebufferpool v1.0.0 // indirect
65 github.com/valyala/fasttemplate v1.2.1 // indirect 71 github.com/valyala/fasttemplate v1.2.1 // indirect
66 go.uber.org/atomic v1.9.0 // indirect 72 go.uber.org/atomic v1.9.0 // indirect
73 go.uber.org/mock v0.3.0 // indirect
67 golang.org/x/crypto v0.11.0 // indirect 74 golang.org/x/crypto v0.11.0 // indirect
75 golang.org/x/exp v0.0.0-20221205204356-47842c84f3db // indirect
76 golang.org/x/mod v0.11.0 // indirect
68 golang.org/x/net v0.10.0 // indirect 77 golang.org/x/net v0.10.0 // indirect
69 golang.org/x/sys v0.10.0 // indirect 78 golang.org/x/sys v0.10.0 // indirect
70 golang.org/x/text v0.11.0 // indirect 79 golang.org/x/text v0.11.0 // indirect
71 golang.org/x/time v0.0.0-20201208040808-7e3f01d25324 // indirect 80 golang.org/x/time v0.0.0-20201208040808-7e3f01d25324 // indirect
81 golang.org/x/tools v0.9.1 // indirect
72 google.golang.org/genproto v0.0.0-20200825200019-8632dd797987 // indirect 82 google.golang.org/genproto v0.0.0-20200825200019-8632dd797987 // indirect
73 google.golang.org/grpc v1.41.0 // indirect 83 google.golang.org/grpc v1.41.0 // indirect
74 google.golang.org/protobuf v1.26.0 // indirect 84 google.golang.org/protobuf v1.28.0 // indirect
75 gopkg.in/yaml.v3 v3.0.1 // indirect 85 gopkg.in/yaml.v3 v3.0.1 // indirect
76) 86)