|
1 | 1 | module github.com/metal-stack/csi-driver-lvm |
2 | 2 |
|
3 | | -go 1.23 |
| 3 | +go 1.24 |
4 | 4 |
|
5 | 5 | require ( |
6 | 6 | github.com/container-storage-interface/spec v1.9.0 |
7 | 7 | github.com/docker/go-units v0.5.0 |
8 | 8 | github.com/kubernetes-csi/csi-lib-utils v0.19.0 |
9 | | - github.com/urfave/cli/v2 v2.27.4 |
10 | | - golang.org/x/net v0.28.0 |
11 | | - golang.org/x/sys v0.25.0 |
12 | | - google.golang.org/grpc v1.66.0 |
13 | | - k8s.io/api v0.31.0 |
14 | | - k8s.io/apimachinery v0.31.0 |
15 | | - k8s.io/client-go v0.31.0 |
| 9 | + github.com/urfave/cli/v2 v2.27.6 |
| 10 | + golang.org/x/net v0.37.0 |
| 11 | + golang.org/x/sys v0.31.0 |
| 12 | + google.golang.org/grpc v1.71.0 |
| 13 | + k8s.io/api v0.32.0 |
| 14 | + k8s.io/apimachinery v0.32.0 |
| 15 | + k8s.io/client-go v0.32.0 |
16 | 16 | k8s.io/klog/v2 v2.130.1 |
17 | 17 | ) |
18 | 18 |
|
19 | 19 | require ( |
20 | | - github.com/cpuguy83/go-md2man/v2 v2.0.4 // indirect |
| 20 | + github.com/cpuguy83/go-md2man/v2 v2.0.6 // indirect |
21 | 21 | github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect |
22 | | - github.com/emicklei/go-restful/v3 v3.12.1 // indirect |
| 22 | + github.com/emicklei/go-restful/v3 v3.12.2 // indirect |
23 | 23 | github.com/fxamacker/cbor/v2 v2.7.0 // indirect |
24 | 24 | github.com/go-logr/logr v1.4.2 // indirect |
25 | 25 | github.com/go-openapi/jsonpointer v0.21.0 // indirect |
26 | 26 | github.com/go-openapi/jsonreference v0.21.0 // indirect |
27 | 27 | github.com/go-openapi/swag v0.23.0 // indirect |
28 | 28 | github.com/gogo/protobuf v1.3.2 // indirect |
29 | 29 | github.com/golang/protobuf v1.5.4 // indirect |
30 | | - github.com/google/gnostic-models v0.6.8 // indirect |
31 | | - github.com/google/go-cmp v0.6.0 // indirect |
| 30 | + github.com/google/gnostic-models v0.6.9 // indirect |
| 31 | + github.com/google/go-cmp v0.7.0 // indirect |
32 | 32 | github.com/google/gofuzz v1.2.0 // indirect |
33 | 33 | github.com/google/uuid v1.6.0 // indirect |
34 | 34 | github.com/josharian/intern v1.0.0 // indirect |
35 | 35 | github.com/json-iterator/go v1.1.12 // indirect |
36 | | - github.com/mailru/easyjson v0.7.7 // indirect |
| 36 | + github.com/mailru/easyjson v0.9.0 // indirect |
37 | 37 | github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect |
38 | 38 | github.com/modern-go/reflect2 v1.0.2 // indirect |
39 | 39 | github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect |
| 40 | + github.com/pkg/errors v0.9.1 // indirect |
40 | 41 | github.com/russross/blackfriday/v2 v2.1.0 // indirect |
41 | 42 | github.com/x448/float16 v0.8.4 // indirect |
42 | 43 | github.com/xrash/smetrics v0.0.0-20240521201337-686a1a2994c1 // indirect |
43 | | - golang.org/x/oauth2 v0.23.0 // indirect |
44 | | - golang.org/x/term v0.24.0 // indirect |
45 | | - golang.org/x/text v0.18.0 // indirect |
46 | | - golang.org/x/time v0.6.0 // indirect |
47 | | - google.golang.org/genproto/googleapis/rpc v0.0.0-20240903143218-8af14fe29dc1 // indirect |
48 | | - google.golang.org/protobuf v1.34.2 // indirect |
| 44 | + golang.org/x/oauth2 v0.28.0 // indirect |
| 45 | + golang.org/x/term v0.30.0 // indirect |
| 46 | + golang.org/x/text v0.23.0 // indirect |
| 47 | + golang.org/x/time v0.11.0 // indirect |
| 48 | + google.golang.org/genproto/googleapis/rpc v0.0.0-20250303144028-a0af3efb3deb // indirect |
| 49 | + google.golang.org/protobuf v1.36.5 // indirect |
| 50 | + gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect |
49 | 51 | gopkg.in/inf.v0 v0.9.1 // indirect |
50 | | - gopkg.in/yaml.v2 v2.4.0 // indirect |
51 | 52 | gopkg.in/yaml.v3 v3.0.1 // indirect |
52 | | - k8s.io/kube-openapi v0.0.0-20240903163716-9e1beecbcb38 // indirect |
53 | | - k8s.io/utils v0.0.0-20240902221715-702e33fdd3c3 // indirect |
54 | | - sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect |
55 | | - sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect |
| 53 | + k8s.io/kube-openapi v0.0.0-20250304201544-e5f78fe3ede9 // indirect |
| 54 | + k8s.io/utils v0.0.0-20241210054802-24370beab758 // indirect |
| 55 | + sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8 // indirect |
| 56 | + sigs.k8s.io/randfill v1.0.0 // indirect |
| 57 | + sigs.k8s.io/structured-merge-diff/v4 v4.6.0 // indirect |
56 | 58 | sigs.k8s.io/yaml v1.4.0 // indirect |
57 | 59 | ) |
0 commit comments