diff options
| author | washcycle <litho23@gmail.com> | 2023-04-22 15:56:35 -0500 |
|---|---|---|
| committer | washcycle <litho23@gmail.com> | 2023-04-22 15:56:35 -0500 |
| commit | 20a5cfbbc5eb7a1fed3cc0fac502328bcd44057f (patch) | |
| tree | 2ebea439b4fb039147e475ebbaa53636a106a11f /go.mod | |
| parent | 8208f32f3f7047ed5f315523dcf89ba86329d0ee (diff) | |
| download | seaweedfs-csi-driver-20a5cfbbc5eb7a1fed3cc0fac502328bcd44057f.tar.xz seaweedfs-csi-driver-20a5cfbbc5eb7a1fed3cc0fac502328bcd44057f.zip | |
Validations to Pass CSI Sanity Tests
-removed deprecated/unneeded passthrough import
-added test.sh (needs work)
Diffstat (limited to 'go.mod')
| -rw-r--r-- | go.mod | 11 |
1 files changed, 10 insertions, 1 deletions
@@ -10,7 +10,15 @@ require ( require github.com/seaweedfs/seaweedfs v0.0.0-20230417045743-8ecdf958ab05 -require github.com/rwcarlsen/goexif v0.0.0-20190401172101-9e8deecbddbd // indirect +require ( + github.com/google/go-cmp v0.5.9 // indirect + github.com/google/uuid v1.3.0 // indirect + github.com/nxadm/tail v1.4.8 // indirect + github.com/onsi/ginkgo v1.16.5 // indirect + github.com/onsi/gomega v1.23.0 // indirect + github.com/rwcarlsen/goexif v0.0.0-20190401172101-9e8deecbddbd // indirect + gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect +) require ( github.com/beorn7/perks v1.0.1 // indirect @@ -26,6 +34,7 @@ require ( github.com/google/gofuzz v1.2.0 // indirect github.com/hashicorp/hcl v1.0.0 // indirect github.com/json-iterator/go v1.1.12 // indirect + github.com/kubernetes-csi/csi-test v2.2.0+incompatible github.com/magiconair/properties v1.8.7 // indirect github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect github.com/mitchellh/mapstructure v1.5.0 // indirect |
