aboutsummaryrefslogtreecommitdiff
path: root/echo/go.mod
diff options
context:
space:
mode:
authorMike Crute <mike@crute.us>2023-08-01 17:19:17 -0700
committerMike Crute <mike@crute.us>2023-08-01 17:19:17 -0700
commit058e4faba9c1531661234a5adaa7a6c3791f92d4 (patch)
treebf7cc7879e1ad41f8dc1cbbaae74dad632556af8 /echo/go.mod
parent14a8d74efed00c13bd59e2ff9adc0b743803535d (diff)
downloadgolib-058e4faba9c1531661234a5adaa7a6c3791f92d4.tar.bz2
golib-058e4faba9c1531661234a5adaa7a6c3791f92d4.tar.xz
golib-058e4faba9c1531661234a5adaa7a6c3791f92d4.zip
echo: add new content type negotiatorecho/v0.10.0
Diffstat (limited to 'echo/go.mod')
-rw-r--r--echo/go.mod8
1 files changed, 5 insertions, 3 deletions
diff --git a/echo/go.mod b/echo/go.mod
index 39501c2..fcedf30 100644
--- a/echo/go.mod
+++ b/echo/go.mod
@@ -2,16 +2,18 @@ module code.crute.us/mcrute/golib/echo
2 2
3go 1.18 3go 1.18
4 4
5replace code.crute.us/mcrute/golib => ../
6
5require ( 7require (
6 code.crute.us/mcrute/golib v0.4.2 8 code.crute.us/mcrute/golib v0.4.2
7 code.crute.us/mcrute/golib/clients/netbox v0.1.0 9 code.crute.us/mcrute/golib/clients/netbox v0.1.0
8 code.crute.us/mcrute/golib/secrets v0.1.0 10 code.crute.us/mcrute/golib/secrets v0.1.0
9 code.crute.us/mcrute/golib/vault v0.2.4 11 code.crute.us/mcrute/golib/vault v0.2.4
10 github.com/elnormous/contenttype v1.0.0 12 github.com/elnormous/contenttype v1.0.3
11 github.com/labstack/echo/v4 v4.6.1 13 github.com/labstack/echo/v4 v4.6.1
12 github.com/labstack/gommon v0.3.1 14 github.com/labstack/gommon v0.3.1
13 github.com/prometheus/client_golang v1.11.0 15 github.com/prometheus/client_golang v1.11.0
14 github.com/stretchr/testify v1.7.0 16 github.com/stretchr/testify v1.8.1
15 gopkg.in/square/go-jose.v2 v2.5.1 17 gopkg.in/square/go-jose.v2 v2.5.1
16) 18)
17 19
@@ -72,5 +74,5 @@ require (
72 google.golang.org/genproto v0.0.0-20200825200019-8632dd797987 // indirect 74 google.golang.org/genproto v0.0.0-20200825200019-8632dd797987 // indirect
73 google.golang.org/grpc v1.41.0 // indirect 75 google.golang.org/grpc v1.41.0 // indirect
74 google.golang.org/protobuf v1.26.0 // indirect 76 google.golang.org/protobuf v1.26.0 // indirect
75 gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect 77 gopkg.in/yaml.v3 v3.0.1 // indirect
76) 78)