Serge Bazanski | 97b5cd7 | 2023-07-28 17:14:50 +0000 | [diff] [blame] | 1 | module code.hackerspace.pl/hscloud |
| 2 | |
| 3 | go 1.19 |
| 4 | |
| 5 | // Kubernetes is not fully consumable as a module, fix that |
| 6 | replace ( |
| 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/dynamic-resource-allocation => k8s.io/dynamic-resource-allocation v0.24.0-beta.0 |
| 22 | k8s.io/kms => k8s.io/kms v0.24.0-beta.0 |
| 23 | k8s.io/kube-aggregator => k8s.io/kube-aggregator v0.24.2 |
| 24 | k8s.io/kube-controller-manager => k8s.io/kube-controller-manager v0.24.2 |
| 25 | k8s.io/kube-proxy => k8s.io/kube-proxy v0.24.2 |
| 26 | k8s.io/kube-scheduler => k8s.io/kube-scheduler v0.24.2 |
| 27 | k8s.io/kubectl => k8s.io/kubectl v0.24.2 |
| 28 | k8s.io/kubelet => k8s.io/kubelet v0.24.2 |
| 29 | k8s.io/legacy-cloud-providers => k8s.io/legacy-cloud-providers v0.24.2 |
| 30 | k8s.io/metrics => k8s.io/metrics v0.24.2 |
| 31 | k8s.io/mount-utils => k8s.io/mount-utils v0.24.2 |
| 32 | k8s.io/pod-security-admission => k8s.io/pod-security-admission v0.24.2 |
| 33 | k8s.io/sample-apiserver => k8s.io/sample-apiserver v0.24.2 |
| 34 | ) |
| 35 | |
| 36 | // Pin down gettext-go (broke at 1.0.0) |
| 37 | replace github.com/chai2010/gettext-go => github.com/chai2010/gettext-go v0.1.0 |
| 38 | |
| 39 | // Pin down go-jsonnet (need to upgrade kargongips against new API) |
| 40 | replace github.com/google/go-jsonnet => github.com/google/go-jsonnet v0.12.1 |
| 41 | |
| 42 | // Gets vendored in 1.5.10. |
| 43 | replace github.com/cloudflare/cfrpki => github.com/cloudflare/cfrpki v1.2.1 |
| 44 | |
| 45 | require ( |
| 46 | github.com/BurntSushi/toml v1.3.2 |
| 47 | github.com/SebastiaanKlippert/go-wkhtmltopdf v1.9.0 |
| 48 | github.com/arran4/golang-ical v0.0.0-20230425234049-f69e132f2b0c |
| 49 | github.com/boltdb/bolt v1.3.1 |
| 50 | github.com/cenkalti/backoff v2.2.1+incompatible |
| 51 | github.com/cloudflare/cfrpki v0.0.0-00010101000000-000000000000 |
| 52 | github.com/cloudflare/cfssl v1.6.4 |
| 53 | github.com/coreos/go-oidc v2.2.1+incompatible |
| 54 | github.com/dgraph-io/ristretto v0.1.1 |
| 55 | github.com/digitalocean/go-netbox v0.0.2 |
| 56 | github.com/dustin/go-humanize v1.0.1 |
| 57 | github.com/elazarl/go-bindata-assetfs v1.0.1 |
| 58 | github.com/evanphx/json-patch v4.12.0+incompatible |
| 59 | github.com/fvbommel/sortorder v1.1.0 |
| 60 | github.com/gabriel-vasile/mimetype v1.4.2 |
| 61 | github.com/gchaincl/sqlhooks v1.3.0 |
| 62 | github.com/genuinetools/reg v0.16.1 |
| 63 | github.com/ghodss/yaml v1.0.0 |
| 64 | github.com/go-git/go-git/v5 v5.8.0 |
| 65 | github.com/go-ldap/ldap/v3 v3.4.5 |
| 66 | github.com/go-telegram-bot-api/telegram-bot-api v4.6.4+incompatible |
| 67 | github.com/go-test/deep v1.1.0 |
| 68 | github.com/gogo/protobuf v1.3.2 |
| 69 | github.com/golang-collections/go-datastructures v0.0.0-20150211160725-59788d5eb259 |
| 70 | github.com/golang-migrate/migrate/v4 v4.16.2 |
| 71 | github.com/golang/glog v1.1.1 |
| 72 | github.com/golang/protobuf v1.5.3 |
| 73 | github.com/google/gnostic v0.5.7-v3refs |
| 74 | github.com/google/go-cmp v0.5.9 |
| 75 | github.com/google/go-jsonnet v0.20.0 |
| 76 | github.com/gorilla/sessions v1.2.1 |
| 77 | github.com/grpc-ecosystem/grpc-gateway v1.16.0 |
| 78 | github.com/itchyny/gojq v0.12.13 |
| 79 | github.com/jmoiron/sqlx v1.3.5 |
| 80 | github.com/kevinburke/go-bindata v3.23.0+incompatible |
| 81 | github.com/lib/pq v1.10.9 |
| 82 | github.com/mattn/go-isatty v0.0.19 |
| 83 | github.com/mattn/go-sqlite3 v1.14.17 |
| 84 | github.com/minio/minio-go/v7 v7.0.61 |
| 85 | github.com/piranha/gostatic v0.0.0-20230302053144-bf366bcf14fd |
| 86 | github.com/q3k/cursedjsonrpc v2.1.2+incompatible |
| 87 | github.com/russross/blackfriday/v2 v2.1.0 |
| 88 | github.com/sergi/go-diff v1.3.1 |
| 89 | github.com/sethvargo/go-password v0.2.0 |
| 90 | github.com/shirou/gopsutil v3.21.11+incompatible |
| 91 | github.com/sirupsen/logrus v1.9.3 |
| 92 | github.com/spf13/cobra v1.7.0 |
| 93 | github.com/spf13/pflag v1.0.5 |
| 94 | github.com/stretchr/testify v1.8.4 |
Serge Bazanski | 94d9649 | 2023-09-22 20:52:23 +0000 | [diff] [blame] | 95 | github.com/teambition/rrule-go v1.8.2 |
Serge Bazanski | 97b5cd7 | 2023-07-28 17:14:50 +0000 | [diff] [blame] | 96 | github.com/ulule/limiter/v3 v3.11.2 |
| 97 | github.com/ziutek/telnet v0.0.0-20180329124119-c3b780dc415b |
| 98 | golang.org/x/crypto v0.11.0 |
| 99 | golang.org/x/image v0.9.0 |
| 100 | golang.org/x/net v0.12.0 |
| 101 | golang.org/x/oauth2 v0.10.0 |
| 102 | google.golang.org/grpc v1.56.2 |
| 103 | google.golang.org/protobuf v1.31.0 |
| 104 | gopkg.in/irc.v3 v3.1.4 |
| 105 | gopkg.in/yaml.v2 v2.4.0 |
| 106 | k8s.io/api v0.24.2 |
| 107 | k8s.io/apiextensions-apiserver v0.0.0 |
| 108 | k8s.io/apimachinery v0.24.2 |
| 109 | k8s.io/client-go v0.24.2 |
| 110 | k8s.io/klog v1.0.0 |
| 111 | k8s.io/kube-openapi v0.0.0-20220328201542-3ee0da9b0b42 |
| 112 | k8s.io/kubectl v0.0.0 |
| 113 | k8s.io/kubernetes v1.25.0-alpha.0 |
| 114 | ) |
| 115 | |
| 116 | require ( |
| 117 | cloud.google.com/go/compute v1.20.1 // indirect |
| 118 | cloud.google.com/go/compute/metadata v0.2.3 // indirect |
| 119 | github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161 // indirect |
| 120 | github.com/Azure/go-autorest v14.2.0+incompatible // indirect |
| 121 | github.com/Azure/go-autorest/autorest v0.11.27 // indirect |
| 122 | github.com/Azure/go-autorest/autorest/adal v0.9.20 // indirect |
| 123 | github.com/Azure/go-autorest/autorest/date v0.3.0 // indirect |
| 124 | github.com/Azure/go-autorest/logger v0.2.1 // indirect |
| 125 | github.com/Azure/go-autorest/tracing v0.6.0 // indirect |
| 126 | github.com/Azure/go-ntlmssp v0.0.0-20221128193559-754e69321358 // indirect |
| 127 | github.com/MakeNowJust/heredoc v1.0.0 // indirect |
| 128 | github.com/Microsoft/go-winio v0.6.1 // indirect |
| 129 | github.com/ProtonMail/go-crypto v0.0.0-20230518184743-7afd39499903 // indirect |
| 130 | github.com/acomagu/bufpipe v1.0.4 // indirect |
| 131 | github.com/alecthomas/chroma/v2 v2.5.0 // indirect |
| 132 | github.com/asaskevich/govalidator v0.0.0-20210307081110-f21760c49a8d // indirect |
| 133 | github.com/beorn7/perks v1.0.1 // indirect |
| 134 | github.com/bmatcuk/doublestar/v4 v4.6.0 // indirect |
| 135 | github.com/cespare/xxhash/v2 v2.2.0 // indirect |
| 136 | github.com/chai2010/gettext-go v1.0.2 // indirect |
| 137 | github.com/cloudflare/circl v1.3.3 // indirect |
| 138 | github.com/cloudflare/gortr v0.9.5 // indirect |
| 139 | github.com/cockroachdb/cockroach-go/v2 v2.1.1 // indirect |
| 140 | github.com/davecgh/go-spew v1.1.1 // indirect |
| 141 | github.com/daviddengcn/go-colortext v1.0.0 // indirect |
| 142 | github.com/dlclark/regexp2 v1.8.1 // indirect |
| 143 | github.com/docker/cli v0.0.0-20190913211141-95327f4e6241 // indirect |
| 144 | github.com/docker/distribution v2.8.2+incompatible // indirect |
| 145 | github.com/docker/docker v20.10.24+incompatible // indirect |
| 146 | github.com/docker/docker-credential-helpers v0.6.3 // indirect |
| 147 | github.com/docker/go-connections v0.4.0 // indirect |
| 148 | github.com/docker/go-units v0.5.0 // indirect |
| 149 | github.com/docker/libtrust v0.0.0-20160708172513-aabc10ec26b7 // indirect |
| 150 | github.com/emicklei/go-restful v2.9.5+incompatible // indirect |
| 151 | github.com/emirpasic/gods v1.18.1 // indirect |
| 152 | github.com/exponent-io/jsonpath v0.0.0-20151013193312-d6023ce2651d // indirect |
| 153 | github.com/fatih/camelcase v1.0.0 // indirect |
| 154 | github.com/fsnotify/fsnotify v1.6.0 // indirect |
| 155 | github.com/getsentry/sentry-go v0.11.0 // indirect |
| 156 | github.com/go-asn1-ber/asn1-ber v1.5.4 // indirect |
| 157 | github.com/go-errors/errors v1.4.2 // indirect |
| 158 | github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect |
| 159 | github.com/go-git/go-billy/v5 v5.4.1 // indirect |
| 160 | github.com/go-logr/logr v1.2.3 // indirect |
| 161 | github.com/go-ole/go-ole v1.2.6 // indirect |
| 162 | github.com/go-openapi/analysis v0.20.1 // indirect |
| 163 | github.com/go-openapi/errors v0.20.1 // indirect |
| 164 | github.com/go-openapi/jsonpointer v0.19.6 // indirect |
| 165 | github.com/go-openapi/jsonreference v0.20.1 // indirect |
| 166 | github.com/go-openapi/loads v0.20.3 // indirect |
| 167 | github.com/go-openapi/runtime v0.20.0 // indirect |
| 168 | github.com/go-openapi/spec v0.20.4 // indirect |
| 169 | github.com/go-openapi/strfmt v0.20.3 // indirect |
| 170 | github.com/go-openapi/swag v0.22.3 // indirect |
| 171 | github.com/go-openapi/validate v0.20.3 // indirect |
| 172 | github.com/go-stack/stack v1.8.1 // indirect |
| 173 | github.com/golang-jwt/jwt/v4 v4.4.2 // indirect |
| 174 | github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect |
| 175 | github.com/google/btree v1.1.2 // indirect |
| 176 | github.com/google/certificate-transparency-go v1.1.4 // indirect |
| 177 | github.com/google/gofuzz v1.1.0 // indirect |
| 178 | github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect |
| 179 | github.com/google/uuid v1.3.0 // indirect |
| 180 | github.com/gorilla/securecookie v1.1.1 // indirect |
| 181 | github.com/gregjones/httpcache v0.0.0-20180305231024-9cad4c3443a7 // indirect |
| 182 | github.com/hashicorp/errwrap v1.1.0 // indirect |
| 183 | github.com/hashicorp/go-multierror v1.1.1 // indirect |
| 184 | github.com/imdario/mergo v0.3.15 // indirect |
| 185 | github.com/inconshreveable/mousetrap v1.1.0 // indirect |
| 186 | github.com/itchyny/timefmt-go v0.1.5 // indirect |
| 187 | github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect |
| 188 | github.com/jessevdk/go-flags v1.5.0 // indirect |
| 189 | github.com/jonboulle/clockwork v0.3.0 // indirect |
| 190 | github.com/josharian/intern v1.0.0 // indirect |
| 191 | github.com/json-iterator/go v1.1.12 // indirect |
| 192 | github.com/kevinburke/ssh_config v1.2.0 // indirect |
| 193 | github.com/klauspost/compress v1.16.7 // indirect |
| 194 | github.com/klauspost/cpuid/v2 v2.2.5 // indirect |
| 195 | github.com/liggitt/tabwriter v0.0.0-20181228230101-89fcab3d43de // indirect |
| 196 | github.com/lithammer/dedent v1.1.0 // indirect |
| 197 | github.com/mailru/easyjson v0.7.7 // indirect |
| 198 | github.com/mattn/go-runewidth v0.0.14 // indirect |
| 199 | github.com/matttproud/golang_protobuf_extensions v1.0.2 // indirect |
| 200 | github.com/minio/md5-simd v1.1.2 // indirect |
| 201 | github.com/minio/sha256-simd v1.0.1 // indirect |
| 202 | github.com/mitchellh/go-wordwrap v1.0.0 // indirect |
| 203 | github.com/mitchellh/mapstructure v1.4.2 // indirect |
| 204 | github.com/moby/spdystream v0.2.0 // indirect |
| 205 | github.com/moby/term v0.5.0 // indirect |
| 206 | github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect |
| 207 | github.com/modern-go/reflect2 v1.0.2 // indirect |
| 208 | github.com/monochromegane/go-gitignore v0.0.0-20200626010858-205db1a8cc00 // indirect |
| 209 | github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect |
| 210 | github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f // indirect |
| 211 | github.com/oklog/ulid v1.3.1 // indirect |
| 212 | github.com/opencontainers/go-digest v1.0.0 // indirect |
| 213 | github.com/opencontainers/image-spec v1.0.2 // indirect |
| 214 | github.com/opentracing/opentracing-go v1.2.0 // indirect |
| 215 | github.com/peterbourgon/diskv v2.0.1+incompatible // indirect |
| 216 | github.com/peterhellberg/link v1.0.0 // indirect |
| 217 | github.com/pjbgf/sha1cd v0.3.0 // indirect |
| 218 | github.com/pkg/errors v0.9.1 // indirect |
| 219 | github.com/pmezard/go-difflib v1.0.0 // indirect |
| 220 | github.com/pquerna/cachecontrol v0.1.0 // indirect |
| 221 | github.com/prometheus/client_golang v1.13.0 // indirect |
| 222 | github.com/prometheus/client_model v0.2.0 // indirect |
| 223 | github.com/prometheus/common v0.37.0 // indirect |
| 224 | github.com/prometheus/procfs v0.8.0 // indirect |
| 225 | github.com/rivo/uniseg v0.4.4 // indirect |
| 226 | github.com/rs/cors v1.8.2 // indirect |
| 227 | github.com/rs/xid v1.5.0 // indirect |
| 228 | github.com/russross/blackfriday v1.5.2 // indirect |
| 229 | github.com/skeema/knownhosts v1.1.1 // indirect |
| 230 | github.com/technoweenie/multipartstreamer v1.0.1 // indirect |
| 231 | github.com/uber/jaeger-client-go v2.23.1+incompatible // indirect |
| 232 | github.com/uber/jaeger-lib v2.2.0+incompatible // indirect |
| 233 | github.com/weppos/publicsuffix-go v0.15.1-0.20210511084619-b1f36a2d6c0b // indirect |
| 234 | github.com/xanzy/ssh-agent v0.3.3 // indirect |
| 235 | github.com/xlab/treeprint v1.1.0 // indirect |
| 236 | github.com/yuin/goldmark v1.5.4 // indirect |
| 237 | github.com/yuin/goldmark-highlighting/v2 v2.0.0-20220924101305-151362477c87 // indirect |
| 238 | github.com/yusufpapurcu/wmi v1.2.3 // indirect |
| 239 | github.com/zmap/zcrypto v0.0.0-20210511125630-18f1e0152cfc // indirect |
| 240 | github.com/zmap/zlint/v3 v3.1.0 // indirect |
| 241 | go.mongodb.org/mongo-driver v1.7.5 // indirect |
| 242 | go.starlark.net v0.0.0-20200306205701-8dd3e2ee1dd5 // indirect |
| 243 | go.uber.org/atomic v1.10.0 // indirect |
| 244 | golang.org/x/mod v0.10.0 // indirect |
| 245 | golang.org/x/sys v0.10.0 // indirect |
| 246 | golang.org/x/term v0.10.0 // indirect |
| 247 | golang.org/x/text v0.11.0 // indirect |
| 248 | golang.org/x/time v0.0.0-20220411224347-583f2d630306 // indirect |
| 249 | golang.org/x/tools v0.9.1 // indirect |
| 250 | google.golang.org/appengine v1.6.7 // indirect |
| 251 | google.golang.org/genproto v0.0.0-20230530153820-e85fd2cbaebc // indirect |
| 252 | google.golang.org/genproto/googleapis/api v0.0.0-20230530153820-e85fd2cbaebc // indirect |
| 253 | google.golang.org/genproto/googleapis/rpc v0.0.0-20230530153820-e85fd2cbaebc // indirect |
| 254 | gopkg.in/inf.v0 v0.9.1 // indirect |
| 255 | gopkg.in/ini.v1 v1.67.0 // indirect |
| 256 | gopkg.in/square/go-jose.v2 v2.6.0 // indirect |
| 257 | gopkg.in/warnings.v0 v0.1.2 // indirect |
| 258 | gopkg.in/yaml.v3 v3.0.1 // indirect |
| 259 | k8s.io/cli-runtime v0.24.2 // indirect |
| 260 | k8s.io/component-base v0.24.2 // indirect |
| 261 | k8s.io/component-helpers v0.24.2 // indirect |
| 262 | k8s.io/klog/v2 v2.90.1 // indirect |
| 263 | k8s.io/metrics v0.24.2 // indirect |
| 264 | k8s.io/utils v0.0.0-20230209194617-a36077c30491 // indirect |
| 265 | sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect |
| 266 | sigs.k8s.io/kustomize/api v0.11.4 // indirect |
| 267 | sigs.k8s.io/kustomize/kustomize/v4 v4.5.4 // indirect |
| 268 | sigs.k8s.io/kustomize/kyaml v0.13.6 // indirect |
| 269 | sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect |
| 270 | sigs.k8s.io/yaml v1.3.0 // indirect |
| 271 | ) |