-
Notifications
You must be signed in to change notification settings - Fork 199
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reduce the required Go version to 1.20 to support EL9; Update the dep…
…endencies
- Loading branch information
Showing
2 changed files
with
165 additions
and
48 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,29 +1,47 @@ | ||
module github.com/aerospike/aerospike-client-go/v7 | ||
|
||
go 1.21 | ||
go 1.20 | ||
|
||
require ( | ||
github.com/onsi/ginkgo/v2 v2.13.0 | ||
github.com/onsi/gomega v1.29.0 | ||
github.com/onsi/ginkgo/v2 v2.16.0 | ||
github.com/onsi/gomega v1.32.0 | ||
github.com/yuin/gopher-lua v1.1.1 | ||
golang.org/x/sync v0.5.0 | ||
google.golang.org/grpc v1.59.0 | ||
google.golang.org/protobuf v1.31.0 | ||
golang.org/x/sync v0.6.0 | ||
google.golang.org/grpc v1.62.1 | ||
google.golang.org/protobuf v1.33.0 | ||
) | ||
|
||
require ( | ||
github.com/go-logr/logr v1.2.4 // indirect | ||
github.com/BurntSushi/toml v1.3.2 // indirect | ||
github.com/chavacava/garif v0.1.0 // indirect | ||
github.com/fatih/color v1.16.0 // indirect | ||
github.com/fatih/structtag v1.2.0 // indirect | ||
github.com/fsnotify/fsnotify v1.7.0 // indirect | ||
github.com/go-logr/logr v1.4.1 // indirect | ||
github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 // indirect | ||
github.com/golang/protobuf v1.5.3 // indirect | ||
github.com/golang/protobuf v1.5.4 // indirect | ||
github.com/google/go-cmp v0.6.0 // indirect | ||
github.com/google/pprof v0.0.0-20210720184732-4bb14d4b1be1 // indirect | ||
github.com/google/pprof v0.0.0-20240227163752-401108e1b7e7 // indirect | ||
github.com/kr/pretty v0.1.0 // indirect | ||
github.com/mattn/go-colorable v0.1.13 // indirect | ||
github.com/mattn/go-isatty v0.0.20 // indirect | ||
github.com/mattn/go-runewidth v0.0.15 // indirect | ||
github.com/mgechev/dots v0.0.0-20210922191527-e955255bf517 // indirect | ||
github.com/mgechev/revive v1.3.7 // indirect | ||
github.com/mitchellh/go-homedir v1.1.0 // indirect | ||
github.com/nxadm/tail v1.4.11 // indirect | ||
github.com/olekukonko/tablewriter v0.0.5 // indirect | ||
github.com/onsi/ginkgo v1.16.5 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/rivo/uniseg v0.4.7 // indirect | ||
github.com/spf13/afero v1.11.0 // indirect | ||
github.com/stretchr/testify v1.8.4 // indirect | ||
golang.org/x/net v0.19.0 // indirect | ||
golang.org/x/sys v0.15.0 // indirect | ||
golang.org/x/net v0.22.0 // indirect | ||
golang.org/x/sys v0.18.0 // indirect | ||
golang.org/x/text v0.14.0 // indirect | ||
golang.org/x/tools v0.14.0 // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20231127180814-3a041ad873d4 // indirect | ||
golang.org/x/tools v0.19.0 // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20240318140521-94a12d6c2237 // indirect | ||
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect | ||
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
Oops, something went wrong.