go-ceph: bump Go version of module to 1.17

Updates the Go version of the module with `go mod tidy -go 1.17`,
which also adds some explicit requirements in order to support lazy
module loading.

Signed-off-by: Sven Anderson <sven@redhat.com>
This commit is contained in:
Sven Anderson 2022-07-07 02:54:22 +09:00 committed by mergify[bot]
parent 6dad78e5af
commit a2cf1e7262
1 changed files with 8 additions and 1 deletions

9
go.mod
View File

@ -1,6 +1,6 @@
module github.com/ceph/go-ceph
go 1.12
go 1.17
require (
github.com/aws/aws-sdk-go v1.44.47
@ -8,3 +8,10 @@ require (
github.com/stretchr/testify v1.8.0
golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/jmespath/go-jmespath v0.4.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)