-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #23 from exaring/update-go1.19
update to go 1.19
- Loading branch information
Showing
4 changed files
with
519 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,33 @@ | ||
module github.com/exaring/matroschka-prober | ||
|
||
go 1.19 | ||
|
||
require ( | ||
github.com/StackExchange/wmi v0.0.0-20180116203802-5d049714c4a6 | ||
github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc | ||
github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf | ||
github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973 | ||
github.com/davecgh/go-spew v1.1.1 | ||
github.com/go-ole/go-ole v1.2.1 | ||
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b | ||
github.com/golang/protobuf v1.2.0 | ||
github.com/google/gopacket v1.1.15 | ||
github.com/konsorten/go-windows-terminal-sequences v1.0.1 | ||
github.com/matttproud/golang_protobuf_extensions v1.0.1 | ||
github.com/pkg/errors v0.8.1 | ||
github.com/pmezard/go-difflib v1.0.0 | ||
github.com/prometheus/client_golang v0.9.1 | ||
github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910 | ||
github.com/prometheus/common v0.0.0-20181116084131-1f2c4f3cd6db | ||
github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d | ||
github.com/q3k/goveralls v0.1.0 | ||
github.com/google/gopacket v1.1.19 | ||
github.com/pkg/errors v0.9.1 | ||
github.com/prometheus/client_golang v1.13.0 | ||
github.com/q3k/statusz v0.0.0-20180806125932-924f04ea7114 | ||
github.com/shirou/gopsutil v0.0.0-20181107111621-48177ef5f880 | ||
github.com/sirupsen/logrus v1.2.0 | ||
github.com/stretchr/testify v1.2.2 | ||
golang.org/x/crypto v0.0.0-20181112202954-3d3f9f413869 | ||
golang.org/x/net v0.0.0-20181114220301-adae6a3d119a | ||
golang.org/x/sys v0.0.0-20181116161606-93218def8b18 | ||
golang.org/x/tools v0.0.0-20181117154741-2ddaf7f79a09 | ||
gopkg.in/alecthomas/kingpin.v2 v2.2.6 | ||
gopkg.in/yaml.v2 v2.2.1 | ||
github.com/sirupsen/logrus v1.9.0 | ||
github.com/stretchr/testify v1.8.0 | ||
golang.org/x/net v0.0.0-20220826154423-83b083e8dc8b | ||
gopkg.in/yaml.v2 v2.4.0 | ||
) | ||
|
||
go 1.13 | ||
require ( | ||
github.com/beorn7/perks v1.0.1 // indirect | ||
github.com/cespare/xxhash/v2 v2.1.2 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/go-ole/go-ole v1.2.6 // indirect | ||
github.com/golang/glog v1.0.0 // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/prometheus/client_model v0.2.0 // indirect | ||
github.com/prometheus/common v0.37.0 // indirect | ||
github.com/prometheus/procfs v0.8.0 // indirect | ||
github.com/shirou/gopsutil v2.21.11+incompatible // indirect | ||
github.com/yusufpapurcu/wmi v1.2.2 // indirect | ||
golang.org/x/sys v0.0.0-20220829200755-d48e67d00261 // indirect | ||
google.golang.org/protobuf v1.28.1 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
Oops, something went wrong.