-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Martin Chodur <[email protected]>
- Loading branch information
Showing
4 changed files
with
38 additions
and
7 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
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
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,13 +1,44 @@ | ||
module github.com/fusakla/promruval | ||
|
||
go 1.15 | ||
go 1.17 | ||
|
||
require ( | ||
github.com/prometheus/client_golang v1.8.0 // indirect | ||
github.com/prometheus/common v0.15.0 | ||
github.com/prometheus/prometheus v1.8.2-0.20201105135750-00f16d1ac3a4 | ||
github.com/stretchr/testify v1.6.1 // indirect | ||
gopkg.in/alecthomas/kingpin.v2 v2.2.6 | ||
gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776 | ||
gotest.tools v2.2.0+incompatible | ||
) | ||
|
||
require ( | ||
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 // indirect | ||
github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d // indirect | ||
github.com/beorn7/perks v1.0.1 // indirect | ||
github.com/cespare/xxhash v1.1.0 // indirect | ||
github.com/cespare/xxhash/v2 v2.1.1 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/edsrzf/mmap-go v1.0.0 // indirect | ||
github.com/go-kit/kit v0.10.0 // indirect | ||
github.com/go-logfmt/logfmt v0.5.0 // indirect | ||
github.com/golang/protobuf v1.4.3 // indirect | ||
github.com/golang/snappy v0.0.2 // indirect | ||
github.com/google/go-cmp v0.5.2 // indirect | ||
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect | ||
github.com/oklog/ulid v1.3.1 // indirect | ||
github.com/opentracing/opentracing-go v1.2.0 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/prometheus/client_golang v1.8.0 // indirect | ||
github.com/prometheus/client_model v0.2.0 // indirect | ||
github.com/prometheus/procfs v0.2.0 // indirect | ||
github.com/stretchr/testify v1.6.1 // indirect | ||
github.com/uber/jaeger-client-go v2.25.0+incompatible // indirect | ||
github.com/uber/jaeger-lib v2.4.0+incompatible // indirect | ||
go.uber.org/atomic v1.7.0 // indirect | ||
go.uber.org/goleak v1.1.10 // indirect | ||
golang.org/x/lint v0.0.0-20200302205851-738671d3881b // indirect | ||
golang.org/x/sync v0.0.0-20200930132711-30421366ff76 // indirect | ||
golang.org/x/sys v0.0.0-20201015000850-e3ed0017c211 // indirect | ||
golang.org/x/tools v0.0.0-20201008025239-9df69603baec // indirect | ||
google.golang.org/protobuf v1.25.0 // indirect | ||
) |
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