Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update go version to 1.21 and update required modules #8

Draft
wants to merge 3 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 16 additions & 5 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,19 @@
module github.com/m3db/prometheus_remote_client_golang
module github.com/sebbbastien/prometheus_remote_client_golang

go 1.21

require (
github.com/golang/protobuf v1.5.3
github.com/golang/snappy v0.0.4
github.com/m3db/prometheus_remote_client_golang v0.4.4
github.com/prometheus/prometheus v0.47.2
github.com/stretchr/testify v1.8.4
)

require (
github.com/golang/protobuf v1.3.2
github.com/golang/snappy v0.0.1
github.com/prometheus/prometheus v0.0.0-20190818123050-43acd0e2e93f
github.com/stretchr/testify v1.3.0
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
google.golang.org/protobuf v1.31.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
Loading