-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update Go version and dependencies
- Update the Go version from `1.19` to `1.18` - Update the dependency `github.com/nats-io/nats.go` from `v1.23.0` to `v1.31.0` - Update the dependency `github.com/goccy/go-json` from `v0.10.0` to `v0.10.2` - Add the dependency `github.com/klauspost/compress v1.17.4` - Update the dependency `github.com/nats-io/nkeys` from `v0.3.0` to `v0.4.6` - Update the dependency `golang.org/x/crypto` from `v0.6.0` to `v0.16.0` - Add the dependency `golang.org/x/sys v0.15.0` Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
- Loading branch information
Showing
2 changed files
with
19 additions
and
38 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,23 +1,22 @@ | ||
module github.com/golang-queue/nats | ||
|
||
go 1.19 | ||
go 1.18 | ||
|
||
require ( | ||
github.com/golang-queue/queue v0.1.4-0.20221230133718-0314ef173f98 | ||
github.com/nats-io/nats.go v1.23.0 | ||
github.com/nats-io/nats.go v1.31.0 | ||
github.com/stretchr/testify v1.8.1 | ||
go.uber.org/goleak v1.2.0 | ||
) | ||
|
||
require ( | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/goccy/go-json v0.10.0 // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/nats-io/nats-server/v2 v2.7.4 // indirect | ||
github.com/nats-io/nkeys v0.3.0 // indirect | ||
github.com/goccy/go-json v0.10.2 // indirect | ||
github.com/klauspost/compress v1.17.4 // indirect | ||
github.com/nats-io/nkeys v0.4.6 // indirect | ||
github.com/nats-io/nuid v1.0.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
golang.org/x/crypto v0.6.0 // indirect | ||
google.golang.org/protobuf v1.28.0 // indirect | ||
golang.org/x/crypto v0.16.0 // indirect | ||
golang.org/x/sys v0.15.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