Skip to content

Commit 3d17a1a

Browse files
authored
Merge update dependencies
2 parents 60ec238 + b1f61dc commit 3d17a1a

File tree

955 files changed

+122252
-35727
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

955 files changed

+122252
-35727
lines changed

go.mod

+46-31
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,60 @@
11
module github.com/rekby/lets-proxy2
22

3-
go 1.14
3+
go 1.18
44

55
require (
6-
github.com/Azure/go-ansiterm v0.0.0-20170929234023-d6e3b3328b78 // indirect
7-
github.com/BurntSushi/toml v0.3.1
8-
github.com/Microsoft/go-winio v0.4.16 // indirect
9-
github.com/Nvveen/Gotty v0.0.0-20120604004816-cd527374f1e5 // indirect
10-
github.com/aws/aws-sdk-go v1.29.19
11-
github.com/docker/distribution v2.7.1+incompatible // indirect
12-
github.com/docker/docker v17.12.0-ce-rc1.0.20190206233949-eb137ff1765f+incompatible // need old version for compatible with go1.10
13-
github.com/docker/go-connections v0.4.0 // indirect
14-
github.com/docker/go-units v0.4.0 // indirect
15-
github.com/gobuffalo/envy v1.9.0 // indirect
16-
github.com/gobuffalo/packd v1.0.0 // indirect
6+
github.com/BurntSushi/toml v1.1.0
7+
github.com/aws/aws-sdk-go v1.44.32
8+
github.com/docker/docker v20.10.17+incompatible // need old version for compatible with go1.10
179
github.com/gobuffalo/packr v1.30.1
18-
github.com/gogo/protobuf v1.2.1 // indirect
1910
github.com/gojuno/minimock/v3 v3.0.5
20-
github.com/gorilla/mux v1.8.0 // indirect
21-
github.com/kardianos/minwinsvc v0.0.0-20151122163309-cad6b2b879b0
11+
github.com/kardianos/minwinsvc v1.0.0
2212
github.com/maxatome/go-testdeep v1.1.0
23-
github.com/miekg/dns v1.1.25
24-
github.com/opencontainers/go-digest v1.0.0 // indirect
25-
github.com/opencontainers/image-spec v1.0.1 // indirect
13+
github.com/miekg/dns v1.1.49
2614
github.com/pkg/errors v0.9.1
27-
github.com/prometheus/client_golang v1.4.1
15+
github.com/prometheus/client_golang v1.12.2
2816
github.com/prometheus/client_model v0.2.0
2917
github.com/rekby/fixenv v0.0.0-20210828185014-c79c816ca0c9
3018
github.com/rekby/zapcontext v0.0.4
31-
github.com/rogpeppe/go-internal v1.6.0 // indirect
3219
github.com/satori/go.uuid v1.2.0
33-
github.com/sirupsen/logrus v1.6.0
34-
go.uber.org/atomic v1.4.0 // indirect
35-
go.uber.org/zap v1.11.0
36-
golang.org/x/crypto v0.0.0-20210817164053-32db794688a5
37-
golang.org/x/net v0.0.0-20210825183410-e898025ed96a
38-
golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208 // indirect
39-
golang.org/x/sys v0.0.0-20210823070655-63515b42dcdf // indirect
40-
golang.org/x/time v0.0.0-20190308202827-9d24e82272b4 // indirect
41-
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543
42-
google.golang.org/grpc v1.21.0 // indirect
20+
github.com/sirupsen/logrus v1.8.1
21+
go.uber.org/zap v1.21.0
22+
golang.org/x/crypto v0.0.0-20220525230936-793ad666bf5e
23+
golang.org/x/net v0.0.0-20220607020251-c690dde0001d
24+
golang.org/x/xerrors v0.0.0-20220609144429-65e65417b02f
4325
gopkg.in/natefinch/lumberjack.v2 v2.0.0
44-
gotest.tools v2.2.0+incompatible // indirect
26+
)
27+
28+
require (
29+
github.com/Microsoft/go-winio v0.5.2 // indirect
30+
github.com/benbjohnson/clock v1.1.0 // indirect
31+
github.com/beorn7/perks v1.0.1 // indirect
32+
github.com/cespare/xxhash/v2 v2.1.2 // indirect
33+
github.com/davecgh/go-spew v1.1.1 // indirect
34+
github.com/docker/distribution v2.8.1+incompatible // indirect
35+
github.com/docker/go-connections v0.4.0 // indirect
36+
github.com/docker/go-units v0.4.0 // indirect
37+
github.com/gobuffalo/envy v1.10.1 // indirect
38+
github.com/gobuffalo/packd v1.0.1 // indirect
39+
github.com/gogo/protobuf v1.3.2 // indirect
40+
github.com/golang/protobuf v1.5.2 // indirect
41+
github.com/jmespath/go-jmespath v0.4.0 // indirect
42+
github.com/joho/godotenv v1.4.0 // indirect
43+
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
44+
github.com/moby/term v0.0.0-20210619224110-3f7ff695adc6 // indirect
45+
github.com/morikuni/aec v1.0.0 // indirect
46+
github.com/opencontainers/go-digest v1.0.0 // indirect
47+
github.com/opencontainers/image-spec v1.0.2 // indirect
48+
github.com/pmezard/go-difflib v1.0.0 // indirect
49+
github.com/prometheus/common v0.34.0 // indirect
50+
github.com/prometheus/procfs v0.7.3 // indirect
51+
github.com/rogpeppe/go-internal v1.8.1 // indirect
52+
go.uber.org/atomic v1.9.0 // indirect
53+
go.uber.org/multierr v1.8.0 // indirect
54+
golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4 // indirect
55+
golang.org/x/sys v0.0.0-20220608164250-635b8c9b7f68 // indirect
56+
golang.org/x/text v0.3.7 // indirect
57+
golang.org/x/tools v0.1.11 // indirect
58+
google.golang.org/protobuf v1.28.0 // indirect
59+
gotest.tools/v3 v3.2.0 // indirect
4560
)

go.sum

+456-88
Large diffs are not rendered by default.

vendor/github.com/BurntSushi/toml/.gitignore

+1-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/BurntSushi/toml/.travis.yml

-15
This file was deleted.

vendor/github.com/BurntSushi/toml/COMPATIBLE

+1-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/BurntSushi/toml/Makefile

-19
This file was deleted.

vendor/github.com/BurntSushi/toml/README.md

+47-54
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)