Skip to content

Commit d5615fd

Browse files
committed
Minimum Go version is now 1.19
1 parent 80a78cd commit d5615fd

File tree

2 files changed

+61
-973
lines changed

2 files changed

+61
-973
lines changed

go.mod

Lines changed: 57 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
module github.com/philips-software/logproxy
22

33
require (
4-
github.com/cloudfoundry-community/go-cfenv v1.18.0 // indirect
54
github.com/google/uuid v1.3.0
65
github.com/hashicorp/go-multierror v1.1.1
76
github.com/hashicorp/go-plugin v1.4.6
@@ -22,4 +21,60 @@ require (
2221
google.golang.org/protobuf v1.28.1
2322
)
2423

25-
go 1.16
24+
require (
25+
github.com/azer/snakecase v1.0.0 // indirect
26+
github.com/beorn7/perks v1.0.1 // indirect
27+
github.com/cenkalti/backoff/v4 v4.2.0 // indirect
28+
github.com/cespare/xxhash/v2 v2.1.2 // indirect
29+
github.com/cloudfoundry-community/gautocloud v1.1.5 // indirect
30+
github.com/cloudfoundry-community/go-cfenv v1.18.0 // indirect
31+
github.com/davecgh/go-spew v1.1.1 // indirect
32+
github.com/fatih/color v1.13.0 // indirect
33+
github.com/fsnotify/fsnotify v1.6.0 // indirect
34+
github.com/go-playground/locales v0.14.0 // indirect
35+
github.com/go-playground/universal-translator v0.18.0 // indirect
36+
github.com/go-playground/validator/v10 v10.11.1 // indirect
37+
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
38+
github.com/golang/mock v1.4.4 // indirect
39+
github.com/golang/protobuf v1.5.2 // indirect
40+
github.com/google/go-querystring v1.1.0 // indirect
41+
github.com/hashicorp/errwrap v1.1.0 // indirect
42+
github.com/hashicorp/go-hclog v1.2.0 // indirect
43+
github.com/hashicorp/hcl v1.0.0 // indirect
44+
github.com/hashicorp/yamux v0.0.0-20180604194846-3520598351bb // indirect
45+
github.com/labstack/gommon v0.4.0 // indirect
46+
github.com/leodido/go-urn v1.2.1 // indirect
47+
github.com/magiconair/properties v1.8.6 // indirect
48+
github.com/mattn/go-colorable v0.1.12 // indirect
49+
github.com/mattn/go-isatty v0.0.14 // indirect
50+
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
51+
github.com/mitchellh/go-testing-interface v0.0.0-20171004221916-a61a99592b77 // indirect
52+
github.com/mitchellh/mapstructure v1.5.0 // indirect
53+
github.com/oklog/run v1.0.0 // indirect
54+
github.com/pelletier/go-toml v1.9.5 // indirect
55+
github.com/pelletier/go-toml/v2 v2.0.5 // indirect
56+
github.com/philips-software/go-hsdp-signer v1.4.0 // indirect
57+
github.com/pmezard/go-difflib v1.0.0 // indirect
58+
github.com/prometheus/client_model v0.3.0 // indirect
59+
github.com/prometheus/common v0.37.0 // indirect
60+
github.com/prometheus/procfs v0.8.0 // indirect
61+
github.com/satori/go.uuid v1.2.0 // indirect
62+
github.com/spf13/afero v1.9.2 // indirect
63+
github.com/spf13/cast v1.5.0 // indirect
64+
github.com/spf13/jwalterweatherman v1.1.0 // indirect
65+
github.com/spf13/pflag v1.0.5 // indirect
66+
github.com/subosito/gotenv v1.4.1 // indirect
67+
github.com/valyala/bytebufferpool v1.0.0 // indirect
68+
github.com/valyala/fasttemplate v1.2.1 // indirect
69+
golang.org/x/crypto v0.0.0-20221010152910-d6f0a8c073c2 // indirect
70+
golang.org/x/net v0.0.0-20221014081412-f15817d10f9b // indirect
71+
golang.org/x/sys v0.0.0-20221010170243-090e33056c14 // indirect
72+
golang.org/x/text v0.4.0 // indirect
73+
golang.org/x/time v0.0.0-20220722155302-e5dcc9cfc0b9 // indirect
74+
google.golang.org/genproto v0.0.0-20221024183307-1bc688fe9f3e // indirect
75+
gopkg.in/ini.v1 v1.67.0 // indirect
76+
gopkg.in/yaml.v2 v2.4.0 // indirect
77+
gopkg.in/yaml.v3 v3.0.1 // indirect
78+
)
79+
80+
go 1.19

0 commit comments

Comments
 (0)