-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(BUX-420): go version and workflows update (#64)
* feat(BUX-420): go version and workflows update * feat(BUX-420): udpate go to the newest version * feat(BUX-420): go.sum tidy * feat(BUX-420): rebase and go version update to the newest
- Loading branch information
1 parent
6dcfe54
commit 64a7bd4
Showing
3 changed files
with
86 additions
and
41 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,40 @@ | ||
module github.com/bitcoin-sv/go-paymail | ||
|
||
go 1.18 | ||
go 1.21.5 | ||
|
||
require ( | ||
github.com/bitcoinschema/go-bitcoin/v2 v2.0.5 | ||
github.com/go-resty/resty/v2 v2.7.0 | ||
github.com/go-resty/resty/v2 v2.10.0 | ||
github.com/jarcoal/httpmock v1.3.1 | ||
github.com/julienschmidt/httprouter v1.3.0 | ||
github.com/libsv/go-bc v0.1.17 | ||
github.com/libsv/go-bc v0.1.25 | ||
github.com/libsv/go-bk v0.1.6 | ||
github.com/libsv/go-bt/v2 v2.2.5 | ||
github.com/miekg/dns v1.1.55 | ||
github.com/miekg/dns v1.1.57 | ||
github.com/newrelic/go-agent/v3/integrations/nrhttprouter v1.0.2 | ||
github.com/rs/zerolog v1.31.0 | ||
github.com/stretchr/testify v1.8.4 | ||
go.elastic.co/ecszerolog v0.2.0 | ||
golang.org/x/net v0.14.0 | ||
golang.org/x/net v0.19.0 | ||
) | ||
|
||
require ( | ||
github.com/bitcoinsv/bsvd v0.0.0-20190609155523-4c29707f7173 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/golang/protobuf v1.5.3 // indirect | ||
github.com/libsv/go-p2p v0.1.5 // indirect | ||
github.com/mattn/go-colorable v0.1.13 // indirect | ||
github.com/mattn/go-isatty v0.0.20 // indirect | ||
github.com/newrelic/go-agent/v3 v3.24.1 // indirect | ||
github.com/newrelic/go-agent/v3 v3.29.0 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
golang.org/x/crypto v0.13.0 // indirect | ||
golang.org/x/mod v0.12.0 // indirect | ||
golang.org/x/sys v0.13.0 // indirect | ||
golang.org/x/text v0.13.0 // indirect | ||
golang.org/x/tools v0.12.0 // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20230815205213-6bfd019c3878 // indirect | ||
google.golang.org/grpc v1.57.0 // indirect | ||
golang.org/x/crypto v0.17.0 // indirect | ||
golang.org/x/mod v0.14.0 // indirect | ||
golang.org/x/sys v0.15.0 // indirect | ||
golang.org/x/text v0.14.0 // indirect | ||
golang.org/x/tools v0.16.1 // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20231212172506-995d672761c0 // indirect | ||
google.golang.org/grpc v1.60.1 // indirect | ||
google.golang.org/protobuf v1.31.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // 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