Lorenz Brun | d13c1c6 | 2022-03-30 19:58:58 +0200 | [diff] [blame] | 1 | module source.monogon.dev |
| 2 | |
Lorenz Brun | 20b27af | 2023-03-27 15:58:01 +0200 | [diff] [blame] | 3 | go 1.18 |
Lorenz Brun | d13c1c6 | 2022-03-30 19:58:58 +0200 | [diff] [blame] | 4 | |
| 5 | // Kubernetes is not fully consumable as a module, fix that |
| 6 | replace ( |
Lorenz Brun | 6f852d5 | 2022-06-28 12:50:25 +0000 | [diff] [blame] | 7 | k8s.io/api => k8s.io/api v0.24.2 |
| 8 | k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.24.2 |
| 9 | k8s.io/apimachinery => k8s.io/apimachinery v0.24.2 |
| 10 | k8s.io/apiserver => k8s.io/apiserver v0.24.2 |
| 11 | k8s.io/cli-runtime => k8s.io/cli-runtime v0.24.2 |
| 12 | k8s.io/client-go => k8s.io/client-go v0.24.2 |
| 13 | k8s.io/cloud-provider => k8s.io/cloud-provider v0.24.2 |
| 14 | k8s.io/cluster-bootstrap => k8s.io/cluster-bootstrap v0.24.2 |
| 15 | k8s.io/code-generator => k8s.io/code-generator v0.24.2 |
| 16 | k8s.io/component-base => k8s.io/component-base v0.24.2 |
| 17 | k8s.io/component-helpers => k8s.io/component-helpers v0.24.2 |
| 18 | k8s.io/controller-manager => k8s.io/controller-manager v0.24.2 |
| 19 | k8s.io/cri-api => k8s.io/cri-api v0.24.2 |
| 20 | k8s.io/csi-translation-lib => k8s.io/csi-translation-lib v0.24.2 |
| 21 | k8s.io/kube-aggregator => k8s.io/kube-aggregator v0.24.2 |
| 22 | k8s.io/kube-controller-manager => k8s.io/kube-controller-manager v0.24.2 |
| 23 | k8s.io/kube-proxy => k8s.io/kube-proxy v0.24.2 |
| 24 | k8s.io/kube-scheduler => k8s.io/kube-scheduler v0.24.2 |
| 25 | k8s.io/kubectl => k8s.io/kubectl v0.24.2 |
| 26 | k8s.io/kubelet => k8s.io/kubelet v0.24.2 |
| 27 | k8s.io/legacy-cloud-providers => k8s.io/legacy-cloud-providers v0.24.2 |
| 28 | k8s.io/metrics => k8s.io/metrics v0.24.2 |
| 29 | k8s.io/mount-utils => k8s.io/mount-utils v0.24.2 |
| 30 | k8s.io/pod-security-admission => k8s.io/pod-security-admission v0.24.2 |
| 31 | k8s.io/sample-apiserver => k8s.io/sample-apiserver v0.24.2 |
Lorenz Brun | d13c1c6 | 2022-03-30 19:58:58 +0200 | [diff] [blame] | 32 | ) |
| 33 | |
| 34 | // Pin down opentelementry |
| 35 | // See https://github.com/open-telemetry/opentelemetry-go/issues/2577 |
| 36 | replace ( |
| 37 | go.opentelemetry.io/contrib => go.opentelemetry.io/contrib v0.20.0 |
| 38 | go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc => go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.20.0 |
| 39 | go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp => go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.20.0 |
| 40 | go.opentelemetry.io/otel => go.opentelemetry.io/otel v0.20.0 |
| 41 | go.opentelemetry.io/otel/exporters/otlp => go.opentelemetry.io/otel/exporters/otlp v0.20.0 |
| 42 | go.opentelemetry.io/otel/metric => go.opentelemetry.io/otel/metric v0.20.0 |
| 43 | go.opentelemetry.io/otel/oteltest => go.opentelemetry.io/otel/oteltest v0.20.0 |
| 44 | go.opentelemetry.io/otel/sdk => go.opentelemetry.io/otel/sdk v0.20.0 |
| 45 | go.opentelemetry.io/otel/sdk/export/metric => go.opentelemetry.io/otel/sdk/export/metric v0.20.0 |
| 46 | go.opentelemetry.io/otel/sdk/metric => go.opentelemetry.io/otel/sdk/metric v0.20.0 |
| 47 | go.opentelemetry.io/otel/trace => go.opentelemetry.io/otel/trace v0.20.0 |
| 48 | go.opentelemetry.io/proto/otlp => go.opentelemetry.io/proto/otlp v0.7.0 |
| 49 | ) |
| 50 | |
| 51 | // Custom pins for semver breakage best resolved by manual resolution |
| 52 | // Breaking change in 1.15.0 at https://github.com/onsi/ginkgo/pull/736 |
| 53 | // K8s still uses 1.12 |
| 54 | replace github.com/onsi/ginkgo => github.com/onsi/ginkgo v1.14.2 |
| 55 | |
| 56 | // Our own patches |
| 57 | replace github.com/containerd/ttrpc => github.com/monogon-dev/ttrpc v1.0.2-0.20210119122237-222b428f008e |
| 58 | |
| 59 | // Override version for Bazel support |
| 60 | replace github.com/mwitkow/go-proto-validators => github.com/mwitkow/go-proto-validators v0.3.2 |
| 61 | |
Leopold | be326c2 | 2023-01-04 20:42:59 +0100 | [diff] [blame] | 62 | // bazeldnf currently comes with a go-rpmutils patch |
| 63 | replace github.com/sassoftware/go-rpmutils v0.1.1 => github.com/rmohr/go-rpmutils v0.1.2-0.20201215123907-5acf7436c00d |
| 64 | |
Mateusz Zalega | f220b29 | 2023-01-31 16:52:53 +0000 | [diff] [blame] | 65 | // Our psample patches |
| 66 | replace github.com/vishvananda/netlink => github.com/monogon-dev/netlink v0.0.0-20230125113930-88977c3ff4b3 |
| 67 | |
Lorenz Brun | d13c1c6 | 2022-03-30 19:58:58 +0200 | [diff] [blame] | 68 | require ( |
Serge Bazanski | 77b87a6 | 2023-04-03 15:24:27 +0200 | [diff] [blame] | 69 | cloud.google.com/go/storage v1.28.0 |
Lorenz Brun | d13c1c6 | 2022-03-30 19:58:58 +0200 | [diff] [blame] | 70 | github.com/adrg/xdg v0.4.0 |
Lorenz Brun | d13c1c6 | 2022-03-30 19:58:58 +0200 | [diff] [blame] | 71 | github.com/bazelbuild/rules_go v0.30.0 |
| 72 | github.com/cavaliergopher/cpio v1.0.1 |
| 73 | github.com/cenkalti/backoff/v4 v4.1.2 |
Serge Bazanski | 1e9d7d8 | 2022-09-15 18:45:44 +0200 | [diff] [blame] | 74 | github.com/cockroachdb/cockroach-go/v2 v2.2.10 |
Lorenz Brun | d13c1c6 | 2022-03-30 19:58:58 +0200 | [diff] [blame] | 75 | github.com/container-storage-interface/spec v1.5.0 |
Lorenz Brun | 6107ed1 | 2022-06-28 12:56:28 +0000 | [diff] [blame] | 76 | github.com/containerd/containerd v1.6.6 |
| 77 | github.com/containernetworking/plugins v1.1.1 |
Lorenz Brun | 1104341 | 2022-05-16 14:51:45 +0200 | [diff] [blame] | 78 | github.com/coredns/coredns v1.9.2 |
Lorenz Brun | d13c1c6 | 2022-03-30 19:58:58 +0200 | [diff] [blame] | 79 | github.com/corverroos/commentwrap v0.0.0-20191204065359-2926638be44c |
| 80 | github.com/diskfs/go-diskfs v1.2.0 |
| 81 | github.com/go-delve/delve v1.8.2 |
Serge Bazanski | 1e9d7d8 | 2022-09-15 18:45:44 +0200 | [diff] [blame] | 82 | github.com/golang-migrate/migrate/v4 v4.15.2 |
Lorenz Brun | d13c1c6 | 2022-03-30 19:58:58 +0200 | [diff] [blame] | 83 | github.com/golang/protobuf v1.5.2 |
Lorenz Brun | 6f852d5 | 2022-06-28 12:50:25 +0000 | [diff] [blame] | 84 | github.com/google/cel-go v0.11.4 |
Lorenz Brun | d13c1c6 | 2022-03-30 19:58:58 +0200 | [diff] [blame] | 85 | github.com/google/certificate-transparency-go v1.1.2 |
Serge Bazanski | a6d8b39 | 2023-04-03 15:23:57 +0200 | [diff] [blame] | 86 | github.com/google/go-cmp v0.5.9 |
Lorenz Brun | d13c1c6 | 2022-03-30 19:58:58 +0200 | [diff] [blame] | 87 | github.com/google/go-tpm v0.3.3 |
| 88 | github.com/google/go-tpm-tools v0.3.5 |
| 89 | github.com/google/gopacket v1.1.19 |
| 90 | github.com/google/nftables v0.0.0-20220221214239-211824995dcb |
| 91 | github.com/google/uuid v1.3.0 |
Serge Bazanski | 424e201 | 2023-02-15 23:31:49 +0100 | [diff] [blame] | 92 | github.com/iancoleman/strcase v0.2.0 |
Serge Bazanski | a9590fe | 2022-09-13 13:51:41 +0200 | [diff] [blame] | 93 | github.com/improbable-eng/grpc-web v0.15.0 |
Lorenz Brun | d13c1c6 | 2022-03-30 19:58:58 +0200 | [diff] [blame] | 94 | github.com/insomniacslk/dhcp v0.0.0-20220119180841-3c283ff8b7dd |
| 95 | github.com/joho/godotenv v1.4.0 |
Serge Bazanski | 1f8cad7 | 2023-03-20 16:58:10 +0100 | [diff] [blame] | 96 | github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 |
Serge Bazanski | 1b28e1b | 2022-09-05 18:41:18 +0200 | [diff] [blame] | 97 | github.com/kevinburke/go-bindata v3.23.0+incompatible |
Serge Bazanski | 213d90c | 2023-04-19 17:42:06 +0200 | [diff] [blame] | 98 | github.com/kyleconroy/sqlc v1.17.2 |
| 99 | github.com/lib/pq v1.10.7 |
Lorenz Brun | d13c1c6 | 2022-03-30 19:58:58 +0200 | [diff] [blame] | 100 | github.com/mattn/go-shellwords v1.0.12 |
Leopold | d639776 | 2023-01-31 18:16:07 +0100 | [diff] [blame] | 101 | github.com/mdlayher/ethtool v0.0.0-20211028163843-288d040e9d60 |
Mateusz Zalega | 3ccf696 | 2023-01-23 17:01:40 +0000 | [diff] [blame] | 102 | github.com/mdlayher/genetlink v1.2.0 |
| 103 | github.com/mdlayher/netlink v1.6.0 |
Lorenz Brun | d13c1c6 | 2022-03-30 19:58:58 +0200 | [diff] [blame] | 104 | github.com/mdlayher/raw v0.1.0 |
Serge Bazanski | 367ee27 | 2023-03-16 17:50:39 +0100 | [diff] [blame] | 105 | github.com/mitchellh/go-wordwrap v1.0.0 |
Lorenz Brun | 6107ed1 | 2022-06-28 12:56:28 +0000 | [diff] [blame] | 106 | github.com/opencontainers/runc v1.1.3 |
Mateusz Zalega | 6a058e7 | 2022-11-30 18:03:07 +0100 | [diff] [blame] | 107 | github.com/packethost/packngo v0.29.0 |
Lorenz Brun | d13c1c6 | 2022-03-30 19:58:58 +0200 | [diff] [blame] | 108 | github.com/pierrec/lz4/v4 v4.1.14 |
| 109 | github.com/pkg/errors v0.9.1 |
Serge Bazanski | caa1208 | 2023-02-16 14:54:04 +0100 | [diff] [blame] | 110 | github.com/pkg/sftp v1.10.1 |
Serge Bazanski | 6d563ca | 2023-06-14 13:44:20 +0200 | [diff] [blame] | 111 | github.com/prometheus/node_exporter v1.3.1 |
Leopold | be326c2 | 2023-01-04 20:42:59 +0100 | [diff] [blame] | 112 | github.com/rmohr/bazeldnf v0.5.4 |
Lorenz Brun | d13c1c6 | 2022-03-30 19:58:58 +0200 | [diff] [blame] | 113 | github.com/sbezverk/nfproxy v0.0.0-20210112155058-0d98b4a69f0c |
Serge Bazanski | 213d90c | 2023-04-19 17:42:06 +0200 | [diff] [blame] | 114 | github.com/spf13/cobra v1.6.1 |
Lorenz Brun | d13c1c6 | 2022-03-30 19:58:58 +0200 | [diff] [blame] | 115 | github.com/spf13/pflag v1.0.5 |
Serge Bazanski | a6d8b39 | 2023-04-03 15:23:57 +0200 | [diff] [blame] | 116 | github.com/stretchr/testify v1.8.1 |
Lorenz Brun | d13c1c6 | 2022-03-30 19:58:58 +0200 | [diff] [blame] | 117 | github.com/vishvananda/netlink v1.1.1-0.20210330154013-f5de75959ad5 |
| 118 | github.com/yalue/native_endian v1.0.2 |
Lorenz Brun | 6f852d5 | 2022-06-28 12:50:25 +0000 | [diff] [blame] | 119 | go.etcd.io/etcd/api/v3 v3.5.4 |
| 120 | go.etcd.io/etcd/client/pkg/v3 v3.5.4 |
| 121 | go.etcd.io/etcd/client/v3 v3.5.4 |
Lorenz Brun | b401d63 | 2022-06-28 13:00:02 +0000 | [diff] [blame] | 122 | go.etcd.io/etcd/server/v3 v3.5.4 |
| 123 | go.etcd.io/etcd/tests/v3 v3.5.4 |
Lorenz Brun | d13c1c6 | 2022-03-30 19:58:58 +0200 | [diff] [blame] | 124 | go.uber.org/multierr v1.8.0 |
Serge Bazanski | 213d90c | 2023-04-19 17:42:06 +0200 | [diff] [blame] | 125 | golang.org/x/crypto v0.6.0 |
Serge Bazanski | 7457ee9 | 2023-03-15 19:06:28 +0100 | [diff] [blame] | 126 | golang.org/x/exp v0.0.0-20220428152302-39d4317da171 |
Serge Bazanski | a6d8b39 | 2023-04-03 15:23:57 +0200 | [diff] [blame] | 127 | golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4 |
| 128 | golang.org/x/net v0.7.0 |
| 129 | golang.org/x/sync v0.1.0 |
| 130 | golang.org/x/sys v0.5.0 |
| 131 | golang.org/x/text v0.7.0 |
Serge Bazanski | caa1208 | 2023-02-16 14:54:04 +0100 | [diff] [blame] | 132 | golang.org/x/time v0.0.0-20220224211638-0e9765cccd65 |
Serge Bazanski | a6d8b39 | 2023-04-03 15:23:57 +0200 | [diff] [blame] | 133 | golang.org/x/tools v0.1.12 |
Lorenz Brun | d13c1c6 | 2022-03-30 19:58:58 +0200 | [diff] [blame] | 134 | golang.zx2c4.com/wireguard/wgctrl v0.0.0-20220208144051-fde48d68ee68 |
Serge Bazanski | a6d8b39 | 2023-04-03 15:23:57 +0200 | [diff] [blame] | 135 | google.golang.org/grpc v1.53.0 |
Serge Bazanski | 46e72ab | 2022-09-05 15:13:22 +0200 | [diff] [blame] | 136 | google.golang.org/protobuf v1.28.1 |
Lorenz Brun | d13c1c6 | 2022-03-30 19:58:58 +0200 | [diff] [blame] | 137 | gvisor.dev/gvisor v0.0.0-20220315202956-f1399ecf1672 |
Lorenz Brun | 6f852d5 | 2022-06-28 12:50:25 +0000 | [diff] [blame] | 138 | k8s.io/api v0.24.2 |
| 139 | k8s.io/apimachinery v0.24.2 |
| 140 | k8s.io/cli-runtime v0.24.2 |
| 141 | k8s.io/client-go v0.24.2 |
| 142 | k8s.io/component-base v0.24.2 |
Serge Bazanski | a9590fe | 2022-09-13 13:51:41 +0200 | [diff] [blame] | 143 | k8s.io/klog/v2 v2.60.1 |
Lorenz Brun | d13c1c6 | 2022-03-30 19:58:58 +0200 | [diff] [blame] | 144 | k8s.io/kubectl v0.0.0 |
| 145 | k8s.io/kubelet v0.0.0 |
Lorenz Brun | 961c7a2 | 2022-07-07 10:51:33 +0000 | [diff] [blame] | 146 | k8s.io/kubernetes v1.24.2 |
Lorenz Brun | d13c1c6 | 2022-03-30 19:58:58 +0200 | [diff] [blame] | 147 | ) |
| 148 | |
| 149 | require ( |
Serge Bazanski | 77b87a6 | 2023-04-03 15:24:27 +0200 | [diff] [blame] | 150 | cloud.google.com/go v0.107.0 // indirect |
| 151 | cloud.google.com/go/iam v0.8.0 // indirect |
Serge Bazanski | 6d563ca | 2023-06-14 13:44:20 +0200 | [diff] [blame] | 152 | github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 // indirect |
| 153 | github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d // indirect |
| 154 | github.com/beevik/ntp v0.3.0 // indirect |
Serge Bazanski | 213d90c | 2023-04-19 17:42:06 +0200 | [diff] [blame] | 155 | github.com/bytecodealliance/wasmtime-go/v5 v5.0.0 // indirect |
Serge Bazanski | 6d563ca | 2023-06-14 13:44:20 +0200 | [diff] [blame] | 156 | github.com/coreos/go-systemd v0.0.0-20191104093116-d3cd4ed1dbcf // indirect |
Serge Bazanski | 213d90c | 2023-04-19 17:42:06 +0200 | [diff] [blame] | 157 | github.com/cubicdaiya/gonp v1.0.4 // indirect |
Serge Bazanski | 6d563ca | 2023-06-14 13:44:20 +0200 | [diff] [blame] | 158 | github.com/ema/qdisc v0.0.0-20200603082823-62d0308e3e00 // indirect |
| 159 | github.com/go-kit/log v0.2.0 // indirect |
| 160 | github.com/go-logfmt/logfmt v0.5.1 // indirect |
| 161 | github.com/godbus/dbus v0.0.0-20190422162347-ade71ed3457e // indirect |
| 162 | github.com/hashicorp/go-envparse v0.0.0-20200406174449-d9cfd743a15e // indirect |
| 163 | github.com/hodgesds/perf-utils v0.4.0 // indirect |
| 164 | github.com/illumos/go-kstat v0.0.0-20210513183136-173c9b0a9973 // indirect |
| 165 | github.com/jpillora/backoff v1.0.0 // indirect |
| 166 | github.com/jsimonetti/rtnetlink v0.0.0-20211022192332-93da33804786 // indirect |
| 167 | github.com/lufia/iostat v1.2.0 // indirect |
| 168 | github.com/mattn/go-xmlrpc v0.0.3 // indirect |
| 169 | github.com/mdlayher/wifi v0.0.0-20200527114002-84f0b9457fdd // indirect |
| 170 | github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f // indirect |
| 171 | github.com/prometheus/exporter-toolkit v0.7.0 // indirect |
| 172 | github.com/soundcloud/go-runit v0.0.0-20150630195641-06ad41a06c4a // indirect |
| 173 | gopkg.in/alecthomas/kingpin.v2 v2.2.6 // indirect |
Tim Windelschmidt | 4264b8c | 2023-06-12 23:54:58 +0200 | [diff] [blame] | 174 | k8s.io/klog v1.0.0 // indirect |
Serge Bazanski | 77b87a6 | 2023-04-03 15:24:27 +0200 | [diff] [blame] | 175 | ) |
| 176 | |
| 177 | require ( |
Serge Bazanski | a6d8b39 | 2023-04-03 15:23:57 +0200 | [diff] [blame] | 178 | cloud.google.com/go/compute v1.18.0 // indirect |
| 179 | cloud.google.com/go/compute/metadata v0.2.3 // indirect |
Lorenz Brun | 6f852d5 | 2022-06-28 12:50:25 +0000 | [diff] [blame] | 180 | github.com/Azure/azure-sdk-for-go v63.4.0+incompatible // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 181 | github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect |
| 182 | github.com/Azure/go-autorest v14.2.0+incompatible // indirect |
Lorenz Brun | 6f852d5 | 2022-06-28 12:50:25 +0000 | [diff] [blame] | 183 | github.com/Azure/go-autorest/autorest v0.11.27 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 184 | github.com/Azure/go-autorest/autorest/adal v0.9.18 // indirect |
| 185 | github.com/Azure/go-autorest/autorest/azure/auth v0.5.11 // indirect |
| 186 | github.com/Azure/go-autorest/autorest/azure/cli v0.4.5 // indirect |
| 187 | github.com/Azure/go-autorest/autorest/date v0.3.0 // indirect |
Lorenz Brun | 6f852d5 | 2022-06-28 12:50:25 +0000 | [diff] [blame] | 188 | github.com/Azure/go-autorest/autorest/mocks v0.4.2 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 189 | github.com/Azure/go-autorest/autorest/to v0.4.0 // indirect |
| 190 | github.com/Azure/go-autorest/autorest/validation v0.1.0 // indirect |
| 191 | github.com/Azure/go-autorest/logger v0.2.1 // indirect |
| 192 | github.com/Azure/go-autorest/tracing v0.6.0 // indirect |
Leopold | d639776 | 2023-01-31 18:16:07 +0100 | [diff] [blame] | 193 | github.com/BurntSushi/toml v0.4.1 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 194 | github.com/DataDog/datadog-agent/pkg/obfuscate v0.0.0-20211129110424-6491aa3bf583 // indirect |
| 195 | github.com/DataDog/datadog-go v4.8.2+incompatible // indirect |
| 196 | github.com/DataDog/datadog-go/v5 v5.0.2 // indirect |
| 197 | github.com/DataDog/sketches-go v1.0.0 // indirect |
| 198 | github.com/GoogleCloudPlatform/k8s-cloud-provider v1.16.1-0.20210702024009-ea6160c1d0e3 // indirect |
| 199 | github.com/JeffAshton/win_pdh v0.0.0-20161109143554-76bb4ee9f0ab // indirect |
| 200 | github.com/MakeNowJust/heredoc v0.0.0-20170808103936-bb23615498cd // indirect |
Serge Bazanski | 1e9d7d8 | 2022-09-15 18:45:44 +0200 | [diff] [blame] | 201 | github.com/Microsoft/go-winio v0.5.2 // indirect |
Lorenz Brun | 6107ed1 | 2022-06-28 12:56:28 +0000 | [diff] [blame] | 202 | github.com/Microsoft/hcsshim v0.9.3 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 203 | github.com/NYTimes/gziphandler v1.1.1 // indirect |
| 204 | github.com/PuerkitoBio/purell v1.1.1 // indirect |
| 205 | github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 // indirect |
| 206 | github.com/alexflint/go-filemutex v1.1.0 // indirect |
Serge Bazanski | 46e72ab | 2022-09-05 15:13:22 +0200 | [diff] [blame] | 207 | github.com/antlr/antlr4/runtime/Go/antlr v0.0.0-20220626175859-9abda183db8e // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 208 | github.com/apparentlymart/go-cidr v1.1.0 // indirect |
| 209 | github.com/armon/circbuf v0.0.0-20150827004946-bbbad097214e // indirect |
| 210 | github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a // indirect |
Lorenz Brun | 6f852d5 | 2022-06-28 12:50:25 +0000 | [diff] [blame] | 211 | github.com/aws/aws-sdk-go v1.44.9 // indirect |
Leopold | be326c2 | 2023-01-04 20:42:59 +0100 | [diff] [blame] | 212 | github.com/bazelbuild/buildtools v0.0.0-20201023142455-8a8e1e724705 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 213 | github.com/beorn7/perks v1.0.1 // indirect |
| 214 | github.com/blang/semver/v4 v4.0.0 // indirect |
| 215 | github.com/cenkalti/backoff v2.2.1+incompatible // indirect |
Serge Bazanski | a6d8b39 | 2023-04-03 15:23:57 +0200 | [diff] [blame] | 216 | github.com/cespare/xxhash/v2 v2.2.0 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 217 | github.com/chai2010/gettext-go v0.0.0-20160711120539-c6fed771bfd5 // indirect |
| 218 | github.com/checkpoint-restore/go-criu/v5 v5.3.0 // indirect |
| 219 | github.com/cilium/ebpf v0.7.0 // indirect |
| 220 | github.com/clusterhq/flocker-go v0.0.0-20160920122132-2b8b7259d313 // indirect |
| 221 | github.com/containerd/cgroups v1.0.3 // indirect |
| 222 | github.com/containerd/console v1.0.3 // indirect |
| 223 | github.com/containerd/continuity v0.2.2 // indirect |
| 224 | github.com/containerd/fifo v1.0.0 // indirect |
| 225 | github.com/containerd/ttrpc v1.1.0 // indirect |
| 226 | github.com/containerd/typeurl v1.0.2 // indirect |
Lorenz Brun | 6107ed1 | 2022-06-28 12:56:28 +0000 | [diff] [blame] | 227 | github.com/containernetworking/cni v1.1.1 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 228 | github.com/coredns/caddy v1.1.1 // indirect |
| 229 | github.com/coreos/go-iptables v0.6.0 // indirect |
| 230 | github.com/coreos/go-oidc v2.1.0+incompatible // indirect |
| 231 | github.com/coreos/go-semver v0.3.0 // indirect |
| 232 | github.com/coreos/go-systemd/v22 v22.3.2 // indirect |
| 233 | github.com/cosiner/argv v0.1.0 // indirect |
Serge Bazanski | 46e72ab | 2022-09-05 15:13:22 +0200 | [diff] [blame] | 234 | github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 235 | github.com/creack/pty v1.1.11 // indirect |
Leopold | be326c2 | 2023-01-04 20:42:59 +0100 | [diff] [blame] | 236 | github.com/crillab/gophersat v1.3.1 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 237 | github.com/cyphar/filepath-securejoin v0.2.3 // indirect |
Serge Bazanski | 46e72ab | 2022-09-05 15:13:22 +0200 | [diff] [blame] | 238 | github.com/cznic/mathutil v0.0.0-20181122101859-297441e03548 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 239 | github.com/davecgh/go-spew v1.1.1 // indirect |
| 240 | github.com/daviddengcn/go-colortext v0.0.0-20160507010035-511bcaf42ccd // indirect |
| 241 | github.com/derekparker/trie v0.0.0-20200317170641-1fdf38b7b0e9 // indirect |
Serge Bazanski | a9590fe | 2022-09-13 13:51:41 +0200 | [diff] [blame] | 242 | github.com/desertbit/timer v0.0.0-20180107155436-c41aec40b27f // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 243 | github.com/dgraph-io/ristretto v0.1.0 // indirect |
| 244 | github.com/dimchansky/utfbom v1.1.1 // indirect |
| 245 | github.com/dnstap/golang-dnstap v0.4.0 // indirect |
Lorenz Brun | 901c732 | 2023-07-13 20:10:37 +0200 | [diff] [blame] | 246 | github.com/docker/distribution v2.8.1+incompatible |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 247 | github.com/docker/go-events v0.0.0-20190806004212-e31b211e4f1c // indirect |
| 248 | github.com/docker/go-units v0.4.0 // indirect |
| 249 | github.com/dustin/go-humanize v1.0.0 // indirect |
| 250 | github.com/emicklei/go-restful v2.9.5+incompatible // indirect |
| 251 | github.com/euank/go-kmsg-parser v2.0.0+incompatible // indirect |
| 252 | github.com/evanphx/json-patch v4.12.0+incompatible // indirect |
| 253 | github.com/exponent-io/jsonpath v0.0.0-20151013193312-d6023ce2651d // indirect |
| 254 | github.com/farsightsec/golang-framestream v0.3.0 // indirect |
| 255 | github.com/fatih/camelcase v1.0.0 // indirect |
| 256 | github.com/felixge/httpsnoop v1.0.1 // indirect |
| 257 | github.com/flynn/go-shlex v0.0.0-20150515145356-3f9db97f8568 // indirect |
Serge Bazanski | 1e9d7d8 | 2022-09-15 18:45:44 +0200 | [diff] [blame] | 258 | github.com/form3tech-oss/jwt-go v3.2.5+incompatible // indirect |
Lorenz Brun | d13c1c6 | 2022-03-30 19:58:58 +0200 | [diff] [blame] | 259 | github.com/fsnotify/fsnotify v1.5.1 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 260 | github.com/fvbommel/sortorder v1.0.1 // indirect |
| 261 | github.com/go-delve/liner v1.2.2-1 // indirect |
| 262 | github.com/go-errors/errors v1.0.1 // indirect |
| 263 | github.com/go-logr/logr v1.2.2 // indirect |
| 264 | github.com/go-openapi/jsonpointer v0.19.5 // indirect |
| 265 | github.com/go-openapi/jsonreference v0.19.5 // indirect |
| 266 | github.com/go-openapi/swag v0.19.14 // indirect |
| 267 | github.com/go-ozzo/ozzo-validation v3.5.0+incompatible // indirect |
| 268 | github.com/godbus/dbus/v5 v5.0.6 // indirect |
Serge Bazanski | 1e9d7d8 | 2022-09-15 18:45:44 +0200 | [diff] [blame] | 269 | github.com/gofrs/flock v0.8.1 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 270 | github.com/gofrs/uuid v4.0.0+incompatible // indirect |
| 271 | github.com/gogo/googleapis v1.4.0 // indirect |
| 272 | github.com/gogo/protobuf v1.3.2 // indirect |
| 273 | github.com/golang-jwt/jwt/v4 v4.2.0 // indirect |
| 274 | github.com/golang/glog v1.0.0 // indirect |
| 275 | github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect |
| 276 | github.com/golang/mock v1.6.0 // indirect |
| 277 | github.com/google/btree v1.0.1 // indirect |
| 278 | github.com/google/cadvisor v0.44.1 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 279 | github.com/google/gnostic v0.5.7-v3refs // indirect |
| 280 | github.com/google/go-dap v0.6.0 // indirect |
| 281 | github.com/google/gofuzz v1.2.0 // indirect |
| 282 | github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect |
| 283 | github.com/google/subcommands v1.0.2-0.20190508160503-636abe8753b8 // indirect |
Serge Bazanski | a6d8b39 | 2023-04-03 15:23:57 +0200 | [diff] [blame] | 284 | github.com/googleapis/enterprise-certificate-proxy v0.2.3 // indirect |
| 285 | github.com/googleapis/gax-go/v2 v2.7.0 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 286 | github.com/gophercloud/gophercloud v0.1.0 // indirect |
| 287 | github.com/gorilla/websocket v1.4.2 // indirect |
| 288 | github.com/gregjones/httpcache v0.0.0-20180305231024-9cad4c3443a7 // indirect |
| 289 | github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 // indirect |
| 290 | github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 // indirect |
| 291 | github.com/grpc-ecosystem/grpc-gateway v1.16.0 // indirect |
| 292 | github.com/grpc-ecosystem/grpc-opentracing v0.0.0-20180507213350-8e809c8a8645 // indirect |
Serge Bazanski | 1e9d7d8 | 2022-09-15 18:45:44 +0200 | [diff] [blame] | 293 | github.com/hashicorp/errwrap v1.1.0 // indirect |
| 294 | github.com/hashicorp/go-multierror v1.1.1 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 295 | github.com/hashicorp/golang-lru v0.5.4 // indirect |
| 296 | github.com/heketi/heketi v10.3.0+incompatible // indirect |
| 297 | github.com/imdario/mergo v0.3.12 // indirect |
Serge Bazanski | 213d90c | 2023-04-19 17:42:06 +0200 | [diff] [blame] | 298 | github.com/inconshreveable/mousetrap v1.0.1 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 299 | github.com/infobloxopen/go-trees v0.0.0-20200715205103-96a057b8dfb9 // indirect |
Serge Bazanski | 46e72ab | 2022-09-05 15:13:22 +0200 | [diff] [blame] | 300 | github.com/jinzhu/inflection v1.0.0 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 301 | github.com/jmespath/go-jmespath v0.4.0 // indirect |
| 302 | github.com/jonboulle/clockwork v0.2.2 // indirect |
| 303 | github.com/josharian/intern v1.0.0 // indirect |
| 304 | github.com/josharian/native v1.0.0 // indirect |
| 305 | github.com/json-iterator/go v1.1.12 // indirect |
| 306 | github.com/karrick/godirwalk v1.16.1 // indirect |
Lorenz Brun | 6f852d5 | 2022-06-28 12:50:25 +0000 | [diff] [blame] | 307 | github.com/klauspost/compress v1.14.2 // indirect |
Serge Bazanski | caa1208 | 2023-02-16 14:54:04 +0100 | [diff] [blame] | 308 | github.com/kr/fs v0.1.0 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 309 | github.com/kr/pty v1.1.8 // indirect |
| 310 | github.com/libopenstorage/openstorage v1.0.0 // indirect |
| 311 | github.com/liggitt/tabwriter v0.0.0-20181228230101-89fcab3d43de // indirect |
| 312 | github.com/lithammer/dedent v1.1.0 // indirect |
| 313 | github.com/mailru/easyjson v0.7.7 // indirect |
Lorenz Brun | 6f852d5 | 2022-06-28 12:50:25 +0000 | [diff] [blame] | 314 | github.com/mattn/go-colorable v0.1.11 // indirect |
| 315 | github.com/mattn/go-isatty v0.0.14 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 316 | github.com/mattn/go-runewidth v0.0.13 // indirect |
| 317 | github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect |
Lorenz Brun | 46bf7d6 | 2023-06-01 12:24:19 +0200 | [diff] [blame] | 318 | github.com/mdlayher/kobject v0.0.0-20200520190114-19ca17470d7d |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 319 | github.com/mdlayher/packet v0.0.0-20220221164757-67998ac0ff93 // indirect |
| 320 | github.com/mdlayher/socket v0.2.1 // indirect |
Lorenz Brun | 6f852d5 | 2022-06-28 12:50:25 +0000 | [diff] [blame] | 321 | github.com/miekg/dns v1.1.48 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 322 | github.com/mindprince/gonvml v0.0.0-20190828220739-9ebdce4bb989 // indirect |
| 323 | github.com/mistifyio/go-zfs v2.1.2-0.20190413222219-f784269be439+incompatible // indirect |
| 324 | github.com/mitchellh/go-homedir v1.1.0 // indirect |
Lorenz Brun | 6f852d5 | 2022-06-28 12:50:25 +0000 | [diff] [blame] | 325 | github.com/mitchellh/mapstructure v1.4.2 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 326 | github.com/moby/locker v1.0.1 // indirect |
| 327 | github.com/moby/spdystream v0.2.0 // indirect |
| 328 | github.com/moby/sys/mountinfo v0.6.0 // indirect |
| 329 | github.com/moby/sys/signal v0.6.0 // indirect |
| 330 | github.com/moby/term v0.0.0-20210619224110-3f7ff695adc6 // indirect |
| 331 | github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect |
| 332 | github.com/modern-go/reflect2 v1.0.2 // indirect |
| 333 | github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826 // indirect |
| 334 | github.com/monochromegane/go-gitignore v0.0.0-20200626010858-205db1a8cc00 // indirect |
| 335 | github.com/mrunalp/fileutils v0.5.0 // indirect |
| 336 | github.com/muesli/reflow v0.0.0-20191128061954-86f094cbed14 // indirect |
| 337 | github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect |
| 338 | github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f // indirect |
Lorenz Brun | 901c732 | 2023-07-13 20:10:37 +0200 | [diff] [blame] | 339 | github.com/opencontainers/go-digest v1.0.0 |
Lorenz Brun | 6107ed1 | 2022-06-28 12:56:28 +0000 | [diff] [blame] | 340 | github.com/opencontainers/image-spec v1.0.3-0.20211202183452-c5a74bcca799 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 341 | github.com/opencontainers/runtime-spec v1.0.3-0.20211123151946-c2389c3cb60a // indirect |
Lorenz Brun | 6107ed1 | 2022-06-28 12:56:28 +0000 | [diff] [blame] | 342 | github.com/opencontainers/selinux v1.10.1 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 343 | github.com/opentracing-contrib/go-observer v0.0.0-20170622124052-a52f23424492 // indirect |
| 344 | github.com/opentracing/opentracing-go v1.2.0 // indirect |
| 345 | github.com/openzipkin-contrib/zipkin-go-opentracing v0.4.5 // indirect |
| 346 | github.com/openzipkin/zipkin-go v0.4.0 // indirect |
Lorenz Brun | 6f852d5 | 2022-06-28 12:50:25 +0000 | [diff] [blame] | 347 | github.com/oschwald/geoip2-golang v1.7.0 // indirect |
| 348 | github.com/oschwald/maxminddb-golang v1.9.0 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 349 | github.com/peterbourgon/diskv v2.0.1+incompatible // indirect |
Serge Bazanski | 213d90c | 2023-04-19 17:42:06 +0200 | [diff] [blame] | 350 | github.com/pganalyze/pg_query_go/v2 v2.2.0 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 351 | github.com/philhofer/fwd v1.1.1 // indirect |
| 352 | github.com/pierrec/lz4 v2.6.1+incompatible // indirect |
Serge Bazanski | 46e72ab | 2022-09-05 15:13:22 +0200 | [diff] [blame] | 353 | github.com/pingcap/errors v0.11.5-0.20210425183316-da1aaba5fb63 // indirect |
| 354 | github.com/pingcap/log v0.0.0-20210906054005-afc726e70354 // indirect |
| 355 | github.com/pingcap/tidb/parser v0.0.0-20220725134311-c80026e61f00 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 356 | github.com/pkg/xattr v0.4.1 // indirect |
| 357 | github.com/pmezard/go-difflib v1.0.0 // indirect |
| 358 | github.com/pquerna/cachecontrol v0.0.0-20171018203845-0dec1b30a021 // indirect |
Serge Bazanski | fbda89e | 2023-04-24 17:43:58 +0200 | [diff] [blame] | 359 | github.com/prometheus/client_golang v1.12.1 |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 360 | github.com/prometheus/client_model v0.2.0 // indirect |
Lorenz Brun | 6f852d5 | 2022-06-28 12:50:25 +0000 | [diff] [blame] | 361 | github.com/prometheus/common v0.34.0 // indirect |
Serge Bazanski | 6d563ca | 2023-06-14 13:44:20 +0200 | [diff] [blame] | 362 | github.com/prometheus/procfs v0.7.4-0.20211011103944-1a7a2bd3279f // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 363 | github.com/quobyte/api v0.1.8 // indirect |
Serge Bazanski | 46e72ab | 2022-09-05 15:13:22 +0200 | [diff] [blame] | 364 | github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 365 | github.com/rivo/uniseg v0.2.0 // indirect |
| 366 | github.com/robfig/cron/v3 v3.0.1 // indirect |
Serge Bazanski | a9590fe | 2022-09-13 13:51:41 +0200 | [diff] [blame] | 367 | github.com/rs/cors v1.8.0 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 368 | github.com/rubiojr/go-vhd v0.0.0-20200706105327-02e210299021 // indirect |
| 369 | github.com/russross/blackfriday v1.5.2 // indirect |
| 370 | github.com/russross/blackfriday/v2 v2.1.0 // indirect |
Serge Bazanski | 6d563ca | 2023-06-14 13:44:20 +0200 | [diff] [blame] | 371 | github.com/safchain/ethtool v0.1.0 // indirect |
Leopold | be326c2 | 2023-01-04 20:42:59 +0100 | [diff] [blame] | 372 | github.com/sassoftware/go-rpmutils v0.1.1 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 373 | github.com/sbezverk/nftableslib v0.0.0-20210111145735-b08b2d804e1f // indirect |
Lorenz Brun | b401d63 | 2022-06-28 13:00:02 +0000 | [diff] [blame] | 374 | github.com/seccomp/libseccomp-golang v0.9.2-0.20220502022130-f33da4d89646 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 375 | github.com/sirupsen/logrus v1.8.1 // indirect |
| 376 | github.com/soheilhy/cmux v0.1.5 // indirect |
| 377 | github.com/stoewer/go-strcase v1.2.0 // indirect |
| 378 | github.com/storageos/go-api v2.2.0+incompatible // indirect |
Serge Bazanski | a6d8b39 | 2023-04-03 15:23:57 +0200 | [diff] [blame] | 379 | github.com/stretchr/objx v0.5.0 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 380 | github.com/syndtr/gocapability v0.0.0-20200815063812-42c35b437635 // indirect |
| 381 | github.com/tinylib/msgp v1.1.2 // indirect |
| 382 | github.com/tmc/grpc-websocket-proxy v0.0.0-20201229170055-e5319fda7802 // indirect |
| 383 | github.com/u-root/uio v0.0.0-20210528114334-82958018845c // indirect |
| 384 | github.com/ulikunitz/xz v0.5.7 // indirect |
| 385 | github.com/urfave/cli v1.22.4 // indirect |
| 386 | github.com/vishvananda/netns v0.0.0-20211101163701-50045581ed74 // indirect |
| 387 | github.com/vmware/govmomi v0.20.3 // indirect |
Leopold | be326c2 | 2023-01-04 20:42:59 +0100 | [diff] [blame] | 388 | github.com/xi2/xz v0.0.0-20171230120015-48954b6210f8 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 389 | github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2 // indirect |
| 390 | github.com/xlab/treeprint v0.0.0-20181112141820-a009c3971eca // indirect |
| 391 | go.etcd.io/bbolt v1.3.6 // indirect |
Lorenz Brun | b401d63 | 2022-06-28 13:00:02 +0000 | [diff] [blame] | 392 | go.etcd.io/etcd/client/v2 v2.305.4 // indirect |
| 393 | go.etcd.io/etcd/pkg/v3 v3.5.4 // indirect |
| 394 | go.etcd.io/etcd/raft/v3 v3.5.4 // indirect |
Serge Bazanski | a6d8b39 | 2023-04-03 15:23:57 +0200 | [diff] [blame] | 395 | go.opencensus.io v0.24.0 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 396 | go.opentelemetry.io/contrib v0.20.0 // indirect |
| 397 | go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.28.0 // indirect |
| 398 | go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.20.0 // indirect |
| 399 | go.opentelemetry.io/otel v1.3.0 // indirect |
| 400 | go.opentelemetry.io/otel/exporters/otlp v0.20.0 // indirect |
| 401 | go.opentelemetry.io/otel/metric v0.20.0 // indirect |
| 402 | go.opentelemetry.io/otel/sdk v1.3.0 // indirect |
| 403 | go.opentelemetry.io/otel/sdk/export/metric v0.20.0 // indirect |
| 404 | go.opentelemetry.io/otel/sdk/metric v0.20.0 // indirect |
| 405 | go.opentelemetry.io/otel/trace v1.3.0 // indirect |
| 406 | go.opentelemetry.io/proto/otlp v0.11.0 // indirect |
Serge Bazanski | 77b87a6 | 2023-04-03 15:24:27 +0200 | [diff] [blame] | 407 | go.starlark.net v0.0.0-20210223155950-e043a3d3c984 |
Lorenz Brun | 6f852d5 | 2022-06-28 12:50:25 +0000 | [diff] [blame] | 408 | go.uber.org/atomic v1.9.0 // indirect |
Serge Bazanski | 6c8ee0b | 2023-04-05 12:29:57 +0200 | [diff] [blame] | 409 | go.uber.org/zap v1.19.1 |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 410 | golang.org/x/arch v0.0.0-20190927153633-4e8777c89be4 // indirect |
Serge Bazanski | a6d8b39 | 2023-04-03 15:23:57 +0200 | [diff] [blame] | 411 | golang.org/x/oauth2 v0.5.0 // indirect |
| 412 | golang.org/x/term v0.5.0 // indirect |
| 413 | golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 414 | golang.zx2c4.com/wireguard v0.0.0-20220202223031-3b95c81cc178 // indirect |
Serge Bazanski | 1e9d7d8 | 2022-09-15 18:45:44 +0200 | [diff] [blame] | 415 | gonum.org/v1/gonum v0.9.3 // indirect |
Serge Bazanski | a6d8b39 | 2023-04-03 15:23:57 +0200 | [diff] [blame] | 416 | google.golang.org/api v0.110.0 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 417 | google.golang.org/appengine v1.6.7 // indirect |
Serge Bazanski | a6d8b39 | 2023-04-03 15:23:57 +0200 | [diff] [blame] | 418 | google.golang.org/genproto v0.0.0-20230209215440-0dfe4f8abfcc |
Lorenz Brun | 6f852d5 | 2022-06-28 12:50:25 +0000 | [diff] [blame] | 419 | gopkg.in/DataDog/dd-trace-go.v1 v1.38.1 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 420 | gopkg.in/djherbis/times.v1 v1.2.0 // indirect |
| 421 | gopkg.in/gcfg.v1 v1.2.3 // indirect |
| 422 | gopkg.in/inf.v0 v0.9.1 // indirect |
| 423 | gopkg.in/natefinch/lumberjack.v2 v2.0.0 // indirect |
Lorenz Brun | d13c1c6 | 2022-03-30 19:58:58 +0200 | [diff] [blame] | 424 | gopkg.in/square/go-jose.v2 v2.6.0 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 425 | gopkg.in/warnings.v0 v0.1.2 // indirect |
| 426 | gopkg.in/yaml.v2 v2.4.0 // indirect |
Serge Bazanski | a6d8b39 | 2023-04-03 15:23:57 +0200 | [diff] [blame] | 427 | gopkg.in/yaml.v3 v3.0.1 // indirect |
Leopold | d639776 | 2023-01-31 18:16:07 +0100 | [diff] [blame] | 428 | honnef.co/go/tools v0.2.2 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 429 | k8s.io/apiextensions-apiserver v0.0.0 // indirect |
Lorenz Brun | 6f852d5 | 2022-06-28 12:50:25 +0000 | [diff] [blame] | 430 | k8s.io/apiserver v0.24.2 // indirect |
| 431 | k8s.io/cloud-provider v0.24.2 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 432 | k8s.io/cluster-bootstrap v0.0.0 // indirect |
Lorenz Brun | 6f852d5 | 2022-06-28 12:50:25 +0000 | [diff] [blame] | 433 | k8s.io/component-helpers v0.24.2 // indirect |
| 434 | k8s.io/controller-manager v0.24.2 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 435 | k8s.io/cri-api v0.23.1 // indirect |
Lorenz Brun | 6f852d5 | 2022-06-28 12:50:25 +0000 | [diff] [blame] | 436 | k8s.io/csi-translation-lib v0.24.2 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 437 | k8s.io/kube-aggregator v0.0.0 // indirect |
| 438 | k8s.io/kube-controller-manager v0.0.0 // indirect |
| 439 | k8s.io/kube-openapi v0.0.0-20220328201542-3ee0da9b0b42 // indirect |
| 440 | k8s.io/kube-scheduler v0.0.0 // indirect |
| 441 | k8s.io/legacy-cloud-providers v0.0.0 // indirect |
Lorenz Brun | 6f852d5 | 2022-06-28 12:50:25 +0000 | [diff] [blame] | 442 | k8s.io/metrics v0.24.2 // indirect |
| 443 | k8s.io/mount-utils v0.24.2 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 444 | k8s.io/pod-security-admission v0.0.0 // indirect |
| 445 | k8s.io/utils v0.0.0-20220210201930-3a6ce19ff2f9 // indirect |
Serge Bazanski | a9590fe | 2022-09-13 13:51:41 +0200 | [diff] [blame] | 446 | nhooyr.io/websocket v1.8.6 // indirect |
Lorenz Brun | f2b7ab6 | 2022-05-04 19:06:00 +0200 | [diff] [blame] | 447 | sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.0.30 // indirect |
| 448 | sigs.k8s.io/json v0.0.0-20211208200746-9f7c6b3444d2 // indirect |
| 449 | sigs.k8s.io/kustomize/api v0.11.4 // indirect |
| 450 | sigs.k8s.io/kustomize/kustomize/v4 v4.5.4 // indirect |
| 451 | sigs.k8s.io/kustomize/kyaml v0.13.6 // indirect |
| 452 | sigs.k8s.io/structured-merge-diff/v4 v4.2.1 // indirect |
| 453 | sigs.k8s.io/yaml v1.2.0 // indirect |
Lorenz Brun | d13c1c6 | 2022-03-30 19:58:58 +0200 | [diff] [blame] | 454 | ) |