aboutsummaryrefslogtreecommitdiff
path: root/echo/go.mod
diff options
context:
space:
mode:
authorMike Crute <mike@crute.us>2022-11-23 15:32:45 -0800
committerMike Crute <mike@crute.us>2022-11-23 15:32:45 -0800
commita1e017514304206e2fccd72eaa6825f1d7911c79 (patch)
treea2ba3c2f2003b84b7c1d9a6dfe7963d73a4b829d /echo/go.mod
parentdb793c7ca3b80e7e7e3b2d8668e62cb9f7d2d254 (diff)
downloadgolib-a1e017514304206e2fccd72eaa6825f1d7911c79.tar.bz2
golib-a1e017514304206e2fccd72eaa6825f1d7911c79.tar.xz
golib-a1e017514304206e2fccd72eaa6825f1d7911c79.zip
echo: support secrets APIecho/v0.9.0
Diffstat (limited to 'echo/go.mod')
-rw-r--r--echo/go.mod17
1 files changed, 9 insertions, 8 deletions
diff --git a/echo/go.mod b/echo/go.mod
index d62094d..0b1ed59 100644
--- a/echo/go.mod
+++ b/echo/go.mod
@@ -5,14 +5,16 @@ go 1.18
5replace code.crute.us/mcrute/golib => ../ 5replace code.crute.us/mcrute/golib => ../
6 6
7require ( 7require (
8 code.crute.us/mcrute/golib v0.3.6 8 code.crute.us/mcrute/golib v0.4.0
9 code.crute.us/mcrute/golib/clients/netbox v0.1.0 9 code.crute.us/mcrute/golib/clients/netbox v0.1.0
10 code.crute.us/mcrute/golib/secrets v0.1.0
10 code.crute.us/mcrute/golib/vault v0.2.4 11 code.crute.us/mcrute/golib/vault v0.2.4
11 github.com/elnormous/contenttype v1.0.0 12 github.com/elnormous/contenttype v1.0.0
12 github.com/labstack/echo/v4 v4.6.1 13 github.com/labstack/echo/v4 v4.6.1
13 github.com/labstack/gommon v0.3.1 14 github.com/labstack/gommon v0.3.1
14 github.com/prometheus/client_golang v1.11.0 15 github.com/prometheus/client_golang v1.11.0
15 github.com/stretchr/testify v1.7.0 16 github.com/stretchr/testify v1.7.0
17 gopkg.in/square/go-jose.v2 v2.5.1
16) 18)
17 19
18require ( 20require (
@@ -35,16 +37,16 @@ require (
35 github.com/hashicorp/go-retryablehttp v0.6.6 // indirect 37 github.com/hashicorp/go-retryablehttp v0.6.6 // indirect
36 github.com/hashicorp/go-rootcerts v1.0.2 // indirect 38 github.com/hashicorp/go-rootcerts v1.0.2 // indirect
37 github.com/hashicorp/go-secure-stdlib/mlock v0.1.1 // indirect 39 github.com/hashicorp/go-secure-stdlib/mlock v0.1.1 // indirect
38 github.com/hashicorp/go-secure-stdlib/parseutil v0.1.1 // indirect 40 github.com/hashicorp/go-secure-stdlib/parseutil v0.1.6 // indirect
39 github.com/hashicorp/go-secure-stdlib/strutil v0.1.1 // indirect 41 github.com/hashicorp/go-secure-stdlib/strutil v0.1.2 // indirect
40 github.com/hashicorp/go-sockaddr v1.0.2 // indirect 42 github.com/hashicorp/go-sockaddr v1.0.2 // indirect
41 github.com/hashicorp/go-uuid v1.0.2 // indirect 43 github.com/hashicorp/go-uuid v1.0.2 // indirect
42 github.com/hashicorp/go-version v1.2.0 // indirect 44 github.com/hashicorp/go-version v1.2.0 // indirect
43 github.com/hashicorp/golang-lru v0.5.4 // indirect 45 github.com/hashicorp/golang-lru v0.5.4 // indirect
44 github.com/hashicorp/hcl v1.0.0 // indirect 46 github.com/hashicorp/hcl v1.0.0 // indirect
45 github.com/hashicorp/vault/api v1.5.0 // indirect 47 github.com/hashicorp/vault/api v1.8.0 // indirect
46 github.com/hashicorp/vault/api/auth/approle v0.1.1 // indirect 48 github.com/hashicorp/vault/api/auth/approle v0.3.0 // indirect
47 github.com/hashicorp/vault/sdk v0.4.1 // indirect 49 github.com/hashicorp/vault/sdk v0.6.0 // indirect
48 github.com/hashicorp/yamux v0.0.0-20180604194846-3520598351bb // indirect 50 github.com/hashicorp/yamux v0.0.0-20180604194846-3520598351bb // indirect
49 github.com/mattn/go-colorable v0.1.11 // indirect 51 github.com/mattn/go-colorable v0.1.11 // indirect
50 github.com/mattn/go-isatty v0.0.14 // indirect 52 github.com/mattn/go-isatty v0.0.14 // indirect
@@ -52,7 +54,7 @@ require (
52 github.com/mitchellh/copystructure v1.0.0 // indirect 54 github.com/mitchellh/copystructure v1.0.0 // indirect
53 github.com/mitchellh/go-homedir v1.1.0 // indirect 55 github.com/mitchellh/go-homedir v1.1.0 // indirect
54 github.com/mitchellh/go-testing-interface v1.0.0 // indirect 56 github.com/mitchellh/go-testing-interface v1.0.0 // indirect
55 github.com/mitchellh/mapstructure v1.4.2 // indirect 57 github.com/mitchellh/mapstructure v1.5.0 // indirect
56 github.com/mitchellh/reflectwalk v1.0.0 // indirect 58 github.com/mitchellh/reflectwalk v1.0.0 // indirect
57 github.com/oklog/run v1.0.0 // indirect 59 github.com/oklog/run v1.0.0 // indirect
58 github.com/pierrec/lz4 v2.5.2+incompatible // indirect 60 github.com/pierrec/lz4 v2.5.2+incompatible // indirect
@@ -72,6 +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/square/go-jose.v2 v2.5.1 // indirect
76 gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect 77 gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
77) 78)