Skip to content

Commit cb04537

Browse files
committed
update deps
1 parent 31e7f84 commit cb04537

File tree

3 files changed

+212
-3
lines changed

3 files changed

+212
-3
lines changed

Makefile

+2
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ GOFORMAT=$(GOCMD) fmt
2929
GORUN=$(GOCMD) run
3030
GOGET=$(GOCMD) get
3131
GOVET=$(GOCMD) vet
32+
GOMOD=$(GOCMD) mod
3233
BUILD_DIR=build
3334
SCRIPTS_DIR=scripts
3435
BINARY_NAME=$(BUILD_DIR)/go-microservice
@@ -67,3 +68,4 @@ deploy: docker
6768

6869
update:
6970
$(GOGET) -u all
71+
$(GOMOD) tidy

go.mod

+23-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,29 @@ go 1.14
44

55
require (
66
github.com/DATA-DOG/go-sqlmock v1.4.1
7+
github.com/Microsoft/hcsshim v0.8.9 // indirect
8+
github.com/containerd/continuity v0.0.0-20200413184840-d3ef23f19fbb // indirect
79
github.com/docker/go-connections v0.4.0
8-
github.com/lib/pq v1.5.1
10+
github.com/fsnotify/fsnotify v1.4.9 // indirect
11+
github.com/golang/protobuf v1.4.2 // indirect
12+
github.com/google/go-cmp v0.4.1 // indirect
13+
github.com/gorilla/mux v1.7.4 // indirect
14+
github.com/kr/text v0.2.0 // indirect
15+
github.com/lib/pq v1.5.2
16+
github.com/morikuni/aec v1.0.0 // indirect
17+
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
18+
github.com/onsi/ginkgo v1.12.1 // indirect
19+
github.com/onsi/gomega v1.10.0 // indirect
20+
github.com/opencontainers/go-digest v1.0.0 // indirect
21+
github.com/sirupsen/logrus v1.6.0 // indirect
22+
github.com/stretchr/testify v1.5.1 // indirect
923
github.com/testcontainers/testcontainers-go v0.5.1
24+
golang.org/x/net v0.0.0-20200513185701-a91f0712d120 // indirect
25+
golang.org/x/sync v0.0.0-20200317015054-43a5402ce75a // indirect
26+
golang.org/x/sys v0.0.0-20200515095857-1151b9dac4a9 // indirect
27+
golang.org/x/time v0.0.0-20200416051211-89c76fbcd5d1 // indirect
28+
google.golang.org/genproto v0.0.0-20200515170657-fc4c6c6a6587 // indirect
29+
google.golang.org/grpc v1.29.1 // indirect
30+
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
31+
gopkg.in/yaml.v2 v2.3.0 // indirect
1032
)

0 commit comments

Comments
 (0)