-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgo.mod
30 lines (27 loc) · 1.16 KB
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
module github.com/Shuttl-Tech/vault-plugin-postgres
go 1.13
require (
github.com/Microsoft/go-winio v0.4.14 // indirect
github.com/containerd/continuity v0.0.0-20200107194136-26c1120b8d41 // indirect
github.com/google/go-cmp v0.4.0 // indirect
github.com/hashicorp/go-uuid v1.0.2
github.com/hashicorp/vault v1.3.2
github.com/hashicorp/vault/api v1.0.5-0.20200117231345-460d63e36490
github.com/hashicorp/vault/sdk v0.1.14-0.20200121232954-73f411823aa0
github.com/kisielk/errcheck v1.4.0 // indirect
github.com/lib/pq v1.3.0
github.com/mitchellh/mapstructure v1.1.2
github.com/ory/dockertest v3.3.5+incompatible
github.com/pkg/errors v0.9.1 // indirect
github.com/stretchr/testify v1.5.1 // indirect
github.com/yuin/goldmark v1.2.1 // indirect
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9 // indirect
golang.org/x/mod v0.3.0 // indirect
golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9 // indirect
golang.org/x/text v0.3.3 // indirect
golang.org/x/tools v0.0.0-20201026223136-e84cfc6dd5ca // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
)
replace (
golang.org/x/sys => golang.org/x/sys v0.0.0-20200826173525-f9321e4c35a6
)