-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
15 additions
and
7 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,20 +1,28 @@ | ||
module github.com/cyverse/irods-csi-driver | ||
|
||
go 1.14 | ||
go 1.18 | ||
|
||
require ( | ||
github.com/container-storage-interface/spec v1.2.0 | ||
github.com/cyverse/go-irodsclient v0.9.3 | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/kr/pretty v0.2.0 // indirect | ||
github.com/rs/xid v1.3.0 | ||
github.com/sirupsen/logrus v1.8.1 // indirect | ||
golang.org/x/text v0.3.3 // indirect | ||
google.golang.org/grpc v1.40.0 | ||
google.golang.org/protobuf v1.27.1 // indirect | ||
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 | ||
k8s.io/klog v1.0.0 | ||
k8s.io/klog/v2 v2.2.0 | ||
k8s.io/utils v0.0.0-20200619165400-6e3d28b6ed19 | ||
) | ||
|
||
require ( | ||
github.com/go-logr/logr v0.2.0 // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/kr/pretty v0.2.0 // indirect | ||
github.com/patrickmn/go-cache v2.1.0+incompatible // indirect | ||
github.com/sirupsen/logrus v1.8.1 // indirect | ||
golang.org/x/net v0.0.0-20200822124328-c89045814202 // indirect | ||
golang.org/x/sys v0.0.0-20210119212857-b64e53b001e4 // indirect | ||
golang.org/x/text v0.3.3 // indirect | ||
google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013 // indirect | ||
google.golang.org/protobuf v1.27.1 // indirect | ||
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect | ||
) |