Skip to content

Commit f9d70f8

Browse files
committed
feat: update fork
1 parent aeceb61 commit f9d70f8

File tree

3 files changed

+30
-882
lines changed

3 files changed

+30
-882
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ GOPATH?=${HOME}/go
2424
mocks:
2525
@echo "=== Generating mocks ==="
2626
rm -rf ./tests/mocks/*.go
27-
go install github.com/vektra/mockery/v2/.../
27+
go install github.com/vektra/mockery/v2@latest
2828
CGO_ENABLED=0 $(GOPATH)/bin/mockery --all --output ./tests/mocks --dir ./app/
2929
CGO_ENABLED=0 $(GOPATH)/bin/mockery --all --output ./tests/mocks --dir ./internal/
3030
@echo "=== Done ==="

go.mod

Lines changed: 26 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -2,49 +2,46 @@ module github.com/scaleway/gonsul
22

33
go 1.24.2
44

5+
require (
6+
github.com/cbroglie/mustache v1.0.1
7+
github.com/namsral/flag v1.7.4-pre
8+
github.com/olekukonko/tablewriter v0.0.0-20180506121414-d4647c9c7a84
9+
github.com/onsi/gomega v1.10.1
10+
github.com/stretchr/testify v1.7.0
11+
gopkg.in/src-d/go-git.v4 v4.4.1
12+
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
13+
)
14+
515
require (
616
github.com/alcortesm/tgz v0.0.0-20161220082320-9c5fe88206d7 // indirect
717
github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be // indirect
8-
github.com/armon/consul-api v0.0.0-20180202201655-eb2c6b5be1b6 // indirect
9-
github.com/bketelsen/crypt v0.0.3-0.20200106085610-5cbc8cc4026c // indirect
10-
github.com/cbroglie/mustache v1.0.1
11-
github.com/coreos/bbolt v1.3.2 // indirect
12-
github.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e // indirect
13-
github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f // indirect
14-
github.com/dgrijalva/jwt-go v3.2.0+incompatible // indirect
18+
github.com/davecgh/go-spew v1.1.1 // indirect
1519
github.com/emirpasic/gods v1.9.0 // indirect
20+
github.com/fsnotify/fsnotify v1.5.1 // indirect
1621
github.com/gliderlabs/ssh v0.3.2 // indirect
17-
github.com/gorilla/websocket v1.4.2 // indirect
18-
github.com/grpc-ecosystem/go-grpc-middleware v1.0.0 // indirect
19-
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 // indirect
22+
github.com/google/go-cmp v0.5.6 // indirect
2023
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
21-
github.com/jonboulle/clockwork v0.1.0 // indirect
2224
github.com/kevinburke/ssh_config v0.0.0-20180317175531-9fc7bb800b55 // indirect
25+
github.com/kr/pretty v0.2.0 // indirect
2326
github.com/mattn/go-runewidth v0.0.2 // indirect
24-
github.com/namsral/flag v1.7.4-pre
25-
github.com/olekukonko/tablewriter v0.0.0-20180506121414-d4647c9c7a84
27+
github.com/mitchellh/go-homedir v1.1.0 // indirect
2628
github.com/onsi/ginkgo v1.16.1 // indirect
27-
github.com/onsi/gomega v1.10.1
2829
github.com/pelletier/go-buffruneio v0.2.0 // indirect
29-
github.com/prometheus/tsdb v0.7.1 // indirect
30+
github.com/pkg/errors v0.9.1 // indirect
31+
github.com/pmezard/go-difflib v1.0.0 // indirect
3032
github.com/sergi/go-diff v1.0.0 // indirect
31-
github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect
32-
github.com/smartystreets/goconvey v1.6.4 // indirect
33-
github.com/soheilhy/cmux v0.1.4 // indirect
3433
github.com/src-d/gcfg v1.3.0 // indirect
35-
github.com/stretchr/testify v1.7.0
36-
github.com/tmc/grpc-websocket-proxy v0.0.0-20190109142713-0ad062ec5ee5 // indirect
37-
github.com/ugorji/go v1.1.4 // indirect
38-
github.com/vektra/mockery/v2 v2.10.0 // indirect
34+
github.com/stretchr/objx v0.1.1 // indirect
3935
github.com/xanzy/ssh-agent v0.1.0 // indirect
40-
github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2 // indirect
41-
github.com/xordataexchange/crypt v0.0.3-0.20170626215501-b2862e3d0a77 // indirect
42-
github.com/zenazn/goji v0.9.0 // indirect
43-
go.etcd.io/bbolt v1.3.2 // indirect
44-
gopkg.in/resty.v1 v1.12.0 // indirect
36+
golang.org/x/crypto v0.0.0-20220112180741-5e0467b6c7ce // indirect
37+
golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2 // indirect
38+
golang.org/x/sys v0.0.0-20220114195835-da31bd327af9 // indirect
39+
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect
40+
golang.org/x/text v0.3.7 // indirect
41+
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
42+
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
4543
gopkg.in/src-d/go-billy.v4 v4.2.0 // indirect
4644
gopkg.in/src-d/go-git-fixtures.v3 v3.5.0 // indirect
47-
gopkg.in/src-d/go-git.v4 v4.4.1
4845
gopkg.in/warnings.v0 v0.1.2 // indirect
49-
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
46+
gopkg.in/yaml.v2 v2.4.0 // indirect
5047
)

0 commit comments

Comments
 (0)