diff options
| author | Bruce Ashfield <bruce.ashfield@gmail.com> | 2025-12-07 02:58:19 +0000 |
|---|---|---|
| committer | Bruce Ashfield <bruce.ashfield@gmail.com> | 2025-12-08 20:57:44 -0500 |
| commit | 9d5c2aed901162d525cad81ddf0f3815a7b7d0e9 (patch) | |
| tree | a5ccf126dc27d1dffe088b61e563b1b77046722d | |
| parent | aee553e9d9c32a58be7b37ccb7daa43b87c78b8d (diff) | |
| download | meta-virtualization-9d5c2aed901162d525cad81ddf0f3815a7b7d0e9.tar.gz | |
docker-compose: update to go-mod-vcs format
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
| -rw-r--r-- | recipes-containers/docker-compose/docker-compose_git.bb | 33 | ||||
| -rw-r--r-- | recipes-containers/docker-compose/files/modules.txt | 1422 | ||||
| -rw-r--r-- | recipes-containers/docker-compose/go-mod-cache.inc | 554 | ||||
| -rw-r--r-- | recipes-containers/docker-compose/go-mod-git.inc | 743 | ||||
| -rw-r--r-- | recipes-containers/docker-compose/relocation.inc | 235 | ||||
| -rw-r--r-- | recipes-containers/docker-compose/src_uri.inc | 960 |
6 files changed, 1311 insertions, 2636 deletions
diff --git a/recipes-containers/docker-compose/docker-compose_git.bb b/recipes-containers/docker-compose/docker-compose_git.bb index 91ceb011..01f53ae4 100644 --- a/recipes-containers/docker-compose/docker-compose_git.bb +++ b/recipes-containers/docker-compose/docker-compose_git.bb | |||
| @@ -4,19 +4,15 @@ DESCRIPTION = "Docker compose v2" | |||
| 4 | 4 | ||
| 5 | DEPENDS = " \ | 5 | DEPENDS = " \ |
| 6 | go-md2man \ | 6 | go-md2man \ |
| 7 | rsync-native \ | ||
| 8 | " | 7 | " |
| 9 | 8 | ||
| 10 | # Specify the first two important SRCREVs as the format | ||
| 11 | SRCREV_FORMAT = "compose_survey" | ||
| 12 | SRCREV_compose = "eaf9800948e022573997649656c040a19d4b15c2" | 9 | SRCREV_compose = "eaf9800948e022573997649656c040a19d4b15c2" |
| 10 | SRCREV_FORMAT = "compose" | ||
| 13 | 11 | ||
| 14 | SRC_URI = "git://github.com/docker/compose;name=compose;branch=main;protocol=https;destsuffix=${GO_SRCURI_DESTSUFFIX}" | 12 | SRC_URI = "git://github.com/docker/compose;branch=main;name=compose;protocol=https;destsuffix=${GO_SRCURI_DESTSUFFIX}" |
| 15 | 13 | ||
| 16 | include src_uri.inc | 14 | include go-mod-git.inc |
| 17 | 15 | include go-mod-cache.inc | |
| 18 | # patches and config | ||
| 19 | SRC_URI += "file://modules.txt" | ||
| 20 | 16 | ||
| 21 | LICENSE = "Apache-2.0" | 17 | LICENSE = "Apache-2.0" |
| 22 | LIC_FILES_CHKSUM = "file://src/import/LICENSE;md5=175792518e4ac015ab6696d16c4f607e" | 18 | LIC_FILES_CHKSUM = "file://src/import/LICENSE;md5=175792518e4ac015ab6696d16c4f607e" |
| @@ -27,8 +23,14 @@ PV = "v2.33.1" | |||
| 27 | 23 | ||
| 28 | COMPOSE_PKG = "github.com/docker/compose/v2" | 24 | COMPOSE_PKG = "github.com/docker/compose/v2" |
| 29 | 25 | ||
| 26 | # go-mod-discovery configuration | ||
| 27 | GO_MOD_DISCOVERY_BUILD_TARGET = "./cmd" | ||
| 28 | GO_MOD_DISCOVERY_GIT_REPO = "https://github.com/docker/compose.git" | ||
| 29 | GO_MOD_DISCOVERY_GIT_REF = "${SRCREV_compose}" | ||
| 30 | |||
| 30 | inherit go goarch | 31 | inherit go goarch |
| 31 | inherit pkgconfig | 32 | inherit pkgconfig |
| 33 | inherit go-mod-discovery | ||
| 32 | 34 | ||
| 33 | COMPATIBLE_HOST = "^(?!mips).*" | 35 | COMPATIBLE_HOST = "^(?!mips).*" |
| 34 | 36 | ||
| @@ -37,26 +39,19 @@ do_configure[noexec] = "1" | |||
| 37 | PACKAGECONFIG ?= "docker-plugin" | 39 | PACKAGECONFIG ?= "docker-plugin" |
| 38 | PACKAGECONFIG[docker-plugin] = ",,,docker" | 40 | PACKAGECONFIG[docker-plugin] = ",,,docker" |
| 39 | 41 | ||
| 40 | include relocation.inc | ||
| 41 | |||
| 42 | GOBUILDFLAGS:append = " -mod=vendor" | ||
| 43 | do_compile() { | 42 | do_compile() { |
| 44 | cd ${S}/src/import | 43 | cd ${S}/src/import |
| 45 | 44 | ||
| 46 | export GOPATH="$GOPATH:${S}/src/import/.gopath" | 45 | # GOMODCACHE, GOPROXY, GOSUMDB, GOTOOLCHAIN are set by go-mod-vcs.bbclass |
| 46 | export GOPATH="${S}/src/import/.gopath:${STAGING_DIR_TARGET}/${prefix}/local/go" | ||
| 47 | export CGO_ENABLED="1" | ||
| 47 | 48 | ||
| 48 | # Pass the needed cflags/ldflags so that cgo | 49 | # Pass the needed cflags/ldflags so that cgo |
| 49 | # can find the needed headers files and libraries | 50 | # can find the needed headers files and libraries |
| 50 | export GOARCH=${TARGET_GOARCH} | 51 | export GOARCH=${TARGET_GOARCH} |
| 51 | export CGO_ENABLED="1" | ||
| 52 | export CGO_CFLAGS="${CFLAGS} --sysroot=${STAGING_DIR_TARGET}" | 52 | export CGO_CFLAGS="${CFLAGS} --sysroot=${STAGING_DIR_TARGET}" |
| 53 | export CGO_LDFLAGS="${LDFLAGS} --sysroot=${STAGING_DIR_TARGET}" | 53 | export CGO_LDFLAGS="${LDFLAGS} --sysroot=${STAGING_DIR_TARGET}" |
| 54 | 54 | ||
| 55 | # our copied .go files are to be used for the build | ||
| 56 | ln -sf vendor.copy vendor | ||
| 57 | # inform go that we know what we are doing | ||
| 58 | cp ${UNPACKDIR}/modules.txt vendor/ | ||
| 59 | |||
| 60 | GO_LDFLAGS="-s -w -X internal.Version=${PV} -X ${COMPOSE_PKG}/internal.Version=${PV}" | 55 | GO_LDFLAGS="-s -w -X internal.Version=${PV} -X ${COMPOSE_PKG}/internal.Version=${PV}" |
| 61 | GO_BUILDTAGS="" | 56 | GO_BUILDTAGS="" |
| 62 | mkdir -p ./bin | 57 | mkdir -p ./bin |
diff --git a/recipes-containers/docker-compose/files/modules.txt b/recipes-containers/docker-compose/files/modules.txt deleted file mode 100644 index 09b52926..00000000 --- a/recipes-containers/docker-compose/files/modules.txt +++ /dev/null | |||
| @@ -1,1422 +0,0 @@ | |||
| 1 | # dario.cat/mergo v1.0.1 | ||
| 2 | ## explicit; go 1.13 | ||
| 3 | dario.cat/mergo | ||
| 4 | # github.com/AdaLogics/go-fuzz-headers v0.0.0-20240806141605-e8a1dd7889d6 | ||
| 5 | ## explicit; go 1.20 | ||
| 6 | github.com/AdaLogics/go-fuzz-headers | ||
| 7 | # github.com/AlecAivazis/survey/v2 v2.3.7 | ||
| 8 | ## explicit; go 1.13 | ||
| 9 | github.com/AlecAivazis/survey/v2 | ||
| 10 | github.com/AlecAivazis/survey/v2/core | ||
| 11 | github.com/AlecAivazis/survey/v2/terminal | ||
| 12 | # github.com/Azure/go-ansiterm v0.0.0-20250102033503-faa5f7b0171c | ||
| 13 | ## explicit; go 1.16 | ||
| 14 | github.com/Azure/go-ansiterm | ||
| 15 | github.com/Azure/go-ansiterm/winterm | ||
| 16 | # github.com/Masterminds/semver/v3 v3.2.1 | ||
| 17 | ## explicit; go 1.18 | ||
| 18 | github.com/Masterminds/semver/v3 | ||
| 19 | # github.com/Microsoft/go-winio v0.6.2 | ||
| 20 | ## explicit; go 1.21 | ||
| 21 | github.com/Microsoft/go-winio | ||
| 22 | github.com/Microsoft/go-winio/internal/fs | ||
| 23 | github.com/Microsoft/go-winio/internal/socket | ||
| 24 | github.com/Microsoft/go-winio/internal/stringbuffer | ||
| 25 | github.com/Microsoft/go-winio/pkg/guid | ||
| 26 | # github.com/acarl005/stripansi v0.0.0-20180116102854-5a71ef0e047d | ||
| 27 | ## explicit | ||
| 28 | github.com/acarl005/stripansi | ||
| 29 | # github.com/apparentlymart/go-textseg/v15 v15.0.0 | ||
| 30 | ## explicit; go 1.16 | ||
| 31 | github.com/apparentlymart/go-textseg/v15/textseg | ||
| 32 | # github.com/aws/aws-sdk-go-v2 v1.30.3 | ||
| 33 | ## explicit; go 1.20 | ||
| 34 | github.com/aws/aws-sdk-go-v2/aws | ||
| 35 | github.com/aws/aws-sdk-go-v2/aws/defaults | ||
| 36 | github.com/aws/aws-sdk-go-v2/aws/middleware | ||
| 37 | github.com/aws/aws-sdk-go-v2/aws/middleware/private/metrics | ||
| 38 | github.com/aws/aws-sdk-go-v2/aws/protocol/query | ||
| 39 | github.com/aws/aws-sdk-go-v2/aws/protocol/restjson | ||
| 40 | github.com/aws/aws-sdk-go-v2/aws/protocol/xml | ||
| 41 | github.com/aws/aws-sdk-go-v2/aws/ratelimit | ||
| 42 | github.com/aws/aws-sdk-go-v2/aws/retry | ||
| 43 | github.com/aws/aws-sdk-go-v2/aws/signer/internal/v4 | ||
| 44 | github.com/aws/aws-sdk-go-v2/aws/signer/v4 | ||
| 45 | github.com/aws/aws-sdk-go-v2/aws/transport/http | ||
| 46 | github.com/aws/aws-sdk-go-v2/internal/auth | ||
| 47 | github.com/aws/aws-sdk-go-v2/internal/auth/smithy | ||
| 48 | github.com/aws/aws-sdk-go-v2/internal/context | ||
| 49 | github.com/aws/aws-sdk-go-v2/internal/endpoints | ||
| 50 | github.com/aws/aws-sdk-go-v2/internal/endpoints/awsrulesfn | ||
| 51 | github.com/aws/aws-sdk-go-v2/internal/middleware | ||
| 52 | github.com/aws/aws-sdk-go-v2/internal/rand | ||
| 53 | github.com/aws/aws-sdk-go-v2/internal/sdk | ||
| 54 | github.com/aws/aws-sdk-go-v2/internal/sdkio | ||
| 55 | github.com/aws/aws-sdk-go-v2/internal/shareddefaults | ||
| 56 | github.com/aws/aws-sdk-go-v2/internal/strings | ||
| 57 | github.com/aws/aws-sdk-go-v2/internal/sync/singleflight | ||
| 58 | github.com/aws/aws-sdk-go-v2/internal/timeconv | ||
| 59 | # github.com/aws/aws-sdk-go-v2/config v1.27.27 | ||
| 60 | ## explicit; go 1.20 | ||
| 61 | github.com/aws/aws-sdk-go-v2/config | ||
| 62 | # github.com/aws/aws-sdk-go-v2/credentials v1.17.27 | ||
| 63 | ## explicit; go 1.20 | ||
| 64 | github.com/aws/aws-sdk-go-v2/credentials | ||
| 65 | github.com/aws/aws-sdk-go-v2/credentials/ec2rolecreds | ||
| 66 | github.com/aws/aws-sdk-go-v2/credentials/endpointcreds | ||
| 67 | github.com/aws/aws-sdk-go-v2/credentials/endpointcreds/internal/client | ||
| 68 | github.com/aws/aws-sdk-go-v2/credentials/processcreds | ||
| 69 | github.com/aws/aws-sdk-go-v2/credentials/ssocreds | ||
| 70 | github.com/aws/aws-sdk-go-v2/credentials/stscreds | ||
| 71 | # github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.11 | ||
| 72 | ## explicit; go 1.20 | ||
| 73 | github.com/aws/aws-sdk-go-v2/feature/ec2/imds | ||
| 74 | github.com/aws/aws-sdk-go-v2/feature/ec2/imds/internal/config | ||
| 75 | # github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.15 | ||
| 76 | ## explicit; go 1.20 | ||
| 77 | github.com/aws/aws-sdk-go-v2/internal/configsources | ||
| 78 | # github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.15 | ||
| 79 | ## explicit; go 1.20 | ||
| 80 | github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 | ||
| 81 | # github.com/aws/aws-sdk-go-v2/internal/ini v1.8.0 | ||
| 82 | ## explicit; go 1.20 | ||
| 83 | github.com/aws/aws-sdk-go-v2/internal/ini | ||
| 84 | # github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.11.3 | ||
| 85 | ## explicit; go 1.20 | ||
| 86 | github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding | ||
| 87 | # github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.11.17 | ||
| 88 | ## explicit; go 1.20 | ||
| 89 | github.com/aws/aws-sdk-go-v2/service/internal/presigned-url | ||
| 90 | # github.com/aws/aws-sdk-go-v2/service/sso v1.22.4 | ||
| 91 | ## explicit; go 1.20 | ||
| 92 | github.com/aws/aws-sdk-go-v2/service/sso | ||
| 93 | github.com/aws/aws-sdk-go-v2/service/sso/internal/endpoints | ||
| 94 | github.com/aws/aws-sdk-go-v2/service/sso/types | ||
| 95 | # github.com/aws/aws-sdk-go-v2/service/ssooidc v1.26.4 | ||
| 96 | ## explicit; go 1.20 | ||
| 97 | github.com/aws/aws-sdk-go-v2/service/ssooidc | ||
| 98 | github.com/aws/aws-sdk-go-v2/service/ssooidc/internal/endpoints | ||
| 99 | github.com/aws/aws-sdk-go-v2/service/ssooidc/types | ||
| 100 | # github.com/aws/aws-sdk-go-v2/service/sts v1.30.3 | ||
| 101 | ## explicit; go 1.20 | ||
| 102 | github.com/aws/aws-sdk-go-v2/service/sts | ||
| 103 | github.com/aws/aws-sdk-go-v2/service/sts/internal/endpoints | ||
| 104 | github.com/aws/aws-sdk-go-v2/service/sts/types | ||
| 105 | # github.com/aws/smithy-go v1.20.3 | ||
| 106 | ## explicit; go 1.20 | ||
| 107 | github.com/aws/smithy-go | ||
| 108 | github.com/aws/smithy-go/auth | ||
| 109 | github.com/aws/smithy-go/auth/bearer | ||
| 110 | github.com/aws/smithy-go/context | ||
| 111 | github.com/aws/smithy-go/document | ||
| 112 | github.com/aws/smithy-go/encoding | ||
| 113 | github.com/aws/smithy-go/encoding/httpbinding | ||
| 114 | github.com/aws/smithy-go/encoding/json | ||
| 115 | github.com/aws/smithy-go/encoding/xml | ||
| 116 | github.com/aws/smithy-go/endpoints | ||
| 117 | github.com/aws/smithy-go/internal/sync/singleflight | ||
| 118 | github.com/aws/smithy-go/io | ||
| 119 | github.com/aws/smithy-go/logging | ||
| 120 | github.com/aws/smithy-go/middleware | ||
| 121 | github.com/aws/smithy-go/private/requestcompression | ||
| 122 | github.com/aws/smithy-go/ptr | ||
| 123 | github.com/aws/smithy-go/rand | ||
| 124 | github.com/aws/smithy-go/time | ||
| 125 | github.com/aws/smithy-go/transport/http | ||
| 126 | github.com/aws/smithy-go/transport/http/internal/io | ||
| 127 | # github.com/beorn7/perks v1.0.1 | ||
| 128 | ## explicit; go 1.11 | ||
| 129 | github.com/beorn7/perks/quantile | ||
| 130 | # github.com/buger/goterm v1.0.4 | ||
| 131 | ## explicit; go 1.15 | ||
| 132 | github.com/buger/goterm | ||
| 133 | # github.com/cenkalti/backoff/v4 v4.3.0 | ||
| 134 | ## explicit; go 1.18 | ||
| 135 | github.com/cenkalti/backoff/v4 | ||
| 136 | # github.com/cespare/xxhash/v2 v2.3.0 | ||
| 137 | ## explicit; go 1.11 | ||
| 138 | github.com/cespare/xxhash/v2 | ||
| 139 | # github.com/compose-spec/compose-go/v2 v2.4.9-0.20250302154753-e508c724a35f | ||
| 140 | ## explicit; go 1.23 | ||
| 141 | github.com/compose-spec/compose-go/v2/cli | ||
| 142 | github.com/compose-spec/compose-go/v2/consts | ||
| 143 | github.com/compose-spec/compose-go/v2/dotenv | ||
| 144 | github.com/compose-spec/compose-go/v2/errdefs | ||
| 145 | github.com/compose-spec/compose-go/v2/format | ||
| 146 | github.com/compose-spec/compose-go/v2/graph | ||
| 147 | github.com/compose-spec/compose-go/v2/interpolation | ||
| 148 | github.com/compose-spec/compose-go/v2/loader | ||
| 149 | github.com/compose-spec/compose-go/v2/override | ||
| 150 | github.com/compose-spec/compose-go/v2/paths | ||
| 151 | github.com/compose-spec/compose-go/v2/schema | ||
| 152 | github.com/compose-spec/compose-go/v2/template | ||
| 153 | github.com/compose-spec/compose-go/v2/transform | ||
| 154 | github.com/compose-spec/compose-go/v2/tree | ||
| 155 | github.com/compose-spec/compose-go/v2/types | ||
| 156 | github.com/compose-spec/compose-go/v2/utils | ||
| 157 | github.com/compose-spec/compose-go/v2/validation | ||
| 158 | # github.com/containerd/console v1.0.4 | ||
| 159 | ## explicit; go 1.13 | ||
| 160 | github.com/containerd/console | ||
| 161 | # github.com/containerd/containerd/api v1.8.0 | ||
| 162 | ## explicit; go 1.21 | ||
| 163 | github.com/containerd/containerd/api/services/content/v1 | ||
| 164 | # github.com/containerd/containerd/v2 v2.0.2 | ||
| 165 | ## explicit; go 1.22.0 | ||
| 166 | github.com/containerd/containerd/v2/core/content | ||
| 167 | github.com/containerd/containerd/v2/core/content/proxy | ||
| 168 | github.com/containerd/containerd/v2/core/images | ||
| 169 | github.com/containerd/containerd/v2/core/leases | ||
| 170 | github.com/containerd/containerd/v2/core/remotes | ||
| 171 | github.com/containerd/containerd/v2/core/remotes/docker | ||
| 172 | github.com/containerd/containerd/v2/core/remotes/docker/auth | ||
| 173 | github.com/containerd/containerd/v2/core/remotes/docker/schema1 | ||
| 174 | github.com/containerd/containerd/v2/core/remotes/errors | ||
| 175 | github.com/containerd/containerd/v2/defaults | ||
| 176 | github.com/containerd/containerd/v2/internal/fsverity | ||
| 177 | github.com/containerd/containerd/v2/internal/randutil | ||
| 178 | github.com/containerd/containerd/v2/pkg/archive/compression | ||
| 179 | github.com/containerd/containerd/v2/pkg/deprecation | ||
| 180 | github.com/containerd/containerd/v2/pkg/filters | ||
| 181 | github.com/containerd/containerd/v2/pkg/identifiers | ||
| 182 | github.com/containerd/containerd/v2/pkg/kernelversion | ||
| 183 | github.com/containerd/containerd/v2/pkg/labels | ||
| 184 | github.com/containerd/containerd/v2/pkg/namespaces | ||
| 185 | github.com/containerd/containerd/v2/pkg/protobuf | ||
| 186 | github.com/containerd/containerd/v2/pkg/protobuf/types | ||
| 187 | github.com/containerd/containerd/v2/pkg/reference | ||
| 188 | github.com/containerd/containerd/v2/pkg/tracing | ||
| 189 | github.com/containerd/containerd/v2/plugins/content/local | ||
| 190 | github.com/containerd/containerd/v2/plugins/services/content/contentserver | ||
| 191 | github.com/containerd/containerd/v2/version | ||
| 192 | # github.com/containerd/continuity v0.4.5 | ||
| 193 | ## explicit; go 1.21 | ||
| 194 | github.com/containerd/continuity/devices | ||
| 195 | github.com/containerd/continuity/fs | ||
| 196 | github.com/containerd/continuity/sysx | ||
| 197 | # github.com/containerd/errdefs v1.0.0 | ||
| 198 | ## explicit; go 1.20 | ||
| 199 | github.com/containerd/errdefs | ||
| 200 | # github.com/containerd/errdefs/pkg v0.3.0 | ||
| 201 | ## explicit; go 1.22 | ||
| 202 | github.com/containerd/errdefs/pkg/errgrpc | ||
| 203 | github.com/containerd/errdefs/pkg/internal/cause | ||
| 204 | github.com/containerd/errdefs/pkg/internal/types | ||
| 205 | # github.com/containerd/log v0.1.0 | ||
| 206 | ## explicit; go 1.20 | ||
| 207 | github.com/containerd/log | ||
| 208 | # github.com/containerd/platforms v1.0.0-rc.1 | ||
| 209 | ## explicit; go 1.20 | ||
| 210 | github.com/containerd/platforms | ||
| 211 | # github.com/containerd/ttrpc v1.2.7 | ||
| 212 | ## explicit; go 1.19 | ||
| 213 | github.com/containerd/ttrpc | ||
| 214 | # github.com/containerd/typeurl/v2 v2.2.3 | ||
| 215 | ## explicit; go 1.21 | ||
| 216 | github.com/containerd/typeurl/v2 | ||
| 217 | # github.com/cpuguy83/go-md2man/v2 v2.0.6 | ||
| 218 | ## explicit; go 1.12 | ||
| 219 | github.com/cpuguy83/go-md2man/v2/md2man | ||
| 220 | # github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc | ||
| 221 | ## explicit | ||
| 222 | github.com/davecgh/go-spew/spew | ||
| 223 | # github.com/distribution/reference v0.6.0 | ||
| 224 | ## explicit; go 1.20 | ||
| 225 | github.com/distribution/reference | ||
| 226 | # github.com/docker/buildx v0.21.2 | ||
| 227 | ## explicit; go 1.22.0 | ||
| 228 | github.com/docker/buildx/build | ||
| 229 | github.com/docker/buildx/builder | ||
| 230 | github.com/docker/buildx/controller/pb | ||
| 231 | github.com/docker/buildx/driver | ||
| 232 | github.com/docker/buildx/driver/bkimage | ||
| 233 | github.com/docker/buildx/driver/docker | ||
| 234 | github.com/docker/buildx/driver/docker-container | ||
| 235 | github.com/docker/buildx/driver/kubernetes | ||
| 236 | github.com/docker/buildx/driver/kubernetes/context | ||
| 237 | github.com/docker/buildx/driver/kubernetes/execconn | ||
| 238 | github.com/docker/buildx/driver/kubernetes/manifest | ||
| 239 | github.com/docker/buildx/driver/kubernetes/podchooser | ||
| 240 | github.com/docker/buildx/driver/kubernetes/util | ||
| 241 | github.com/docker/buildx/driver/remote | ||
| 242 | github.com/docker/buildx/driver/remote/util | ||
| 243 | github.com/docker/buildx/localstate | ||
| 244 | github.com/docker/buildx/store | ||
| 245 | github.com/docker/buildx/store/storeutil | ||
| 246 | github.com/docker/buildx/util/buildflags | ||
| 247 | github.com/docker/buildx/util/confutil | ||
| 248 | github.com/docker/buildx/util/desktop | ||
| 249 | github.com/docker/buildx/util/dockerutil | ||
| 250 | github.com/docker/buildx/util/gitutil | ||
| 251 | github.com/docker/buildx/util/imagetools | ||
| 252 | github.com/docker/buildx/util/logutil | ||
| 253 | github.com/docker/buildx/util/metricutil | ||
| 254 | github.com/docker/buildx/util/osutil | ||
| 255 | github.com/docker/buildx/util/platformutil | ||
| 256 | github.com/docker/buildx/util/progress | ||
| 257 | github.com/docker/buildx/util/resolver | ||
| 258 | github.com/docker/buildx/util/waitmap | ||
| 259 | github.com/docker/buildx/version | ||
| 260 | # github.com/docker/cli v28.0.1+incompatible | ||
| 261 | ## explicit | ||
| 262 | github.com/docker/cli/cli | ||
| 263 | github.com/docker/cli/cli-plugins/hooks | ||
| 264 | github.com/docker/cli/cli-plugins/manager | ||
| 265 | github.com/docker/cli/cli-plugins/plugin | ||
| 266 | github.com/docker/cli/cli-plugins/socket | ||
| 267 | github.com/docker/cli/cli/command | ||
| 268 | github.com/docker/cli/cli/command/completion | ||
| 269 | github.com/docker/cli/cli/command/container | ||
| 270 | github.com/docker/cli/cli/command/formatter | ||
| 271 | github.com/docker/cli/cli/command/formatter/tabwriter | ||
| 272 | github.com/docker/cli/cli/command/image | ||
| 273 | github.com/docker/cli/cli/command/image/build | ||
| 274 | github.com/docker/cli/cli/command/inspect | ||
| 275 | github.com/docker/cli/cli/compose/interpolation | ||
| 276 | github.com/docker/cli/cli/compose/loader | ||
| 277 | github.com/docker/cli/cli/compose/schema | ||
| 278 | github.com/docker/cli/cli/compose/template | ||
| 279 | github.com/docker/cli/cli/compose/types | ||
| 280 | github.com/docker/cli/cli/config | ||
| 281 | github.com/docker/cli/cli/config/configfile | ||
| 282 | github.com/docker/cli/cli/config/credentials | ||
| 283 | github.com/docker/cli/cli/config/types | ||
| 284 | github.com/docker/cli/cli/connhelper | ||
| 285 | github.com/docker/cli/cli/connhelper/commandconn | ||
| 286 | github.com/docker/cli/cli/connhelper/ssh | ||
| 287 | github.com/docker/cli/cli/context | ||
| 288 | github.com/docker/cli/cli/context/docker | ||
| 289 | github.com/docker/cli/cli/context/store | ||
| 290 | github.com/docker/cli/cli/debug | ||
| 291 | github.com/docker/cli/cli/flags | ||
| 292 | github.com/docker/cli/cli/hints | ||
| 293 | github.com/docker/cli/cli/internal/jsonstream | ||
| 294 | github.com/docker/cli/cli/manifest/store | ||
| 295 | github.com/docker/cli/cli/manifest/types | ||
| 296 | github.com/docker/cli/cli/registry/client | ||
| 297 | github.com/docker/cli/cli/streams | ||
| 298 | github.com/docker/cli/cli/trust | ||
| 299 | github.com/docker/cli/cli/version | ||
| 300 | github.com/docker/cli/internal/tui | ||
| 301 | github.com/docker/cli/opts | ||
| 302 | github.com/docker/cli/pkg/kvfile | ||
| 303 | github.com/docker/cli/templates | ||
| 304 | # github.com/docker/cli-docs-tool v0.9.0 | ||
| 305 | ## explicit; go 1.18 | ||
| 306 | github.com/docker/cli-docs-tool | ||
| 307 | github.com/docker/cli-docs-tool/annotation | ||
| 308 | # github.com/docker/distribution v2.8.3+incompatible | ||
| 309 | ## explicit | ||
| 310 | github.com/docker/distribution | ||
| 311 | github.com/docker/distribution/manifest | ||
| 312 | github.com/docker/distribution/manifest/manifestlist | ||
| 313 | github.com/docker/distribution/manifest/ocischema | ||
| 314 | github.com/docker/distribution/manifest/schema2 | ||
| 315 | github.com/docker/distribution/metrics | ||
| 316 | github.com/docker/distribution/registry/api/errcode | ||
| 317 | github.com/docker/distribution/registry/api/v2 | ||
| 318 | github.com/docker/distribution/registry/client | ||
| 319 | github.com/docker/distribution/registry/client/auth | ||
| 320 | github.com/docker/distribution/registry/client/auth/challenge | ||
| 321 | github.com/docker/distribution/registry/client/transport | ||
| 322 | github.com/docker/distribution/registry/storage/cache | ||
| 323 | github.com/docker/distribution/registry/storage/cache/memory | ||
| 324 | github.com/docker/distribution/uuid | ||
| 325 | # github.com/docker/docker v28.0.1+incompatible | ||
| 326 | ## explicit | ||
| 327 | github.com/docker/docker/api | ||
| 328 | github.com/docker/docker/api/types | ||
| 329 | github.com/docker/docker/api/types/auxprogress | ||
| 330 | github.com/docker/docker/api/types/blkiodev | ||
| 331 | github.com/docker/docker/api/types/checkpoint | ||
| 332 | github.com/docker/docker/api/types/common | ||
| 333 | github.com/docker/docker/api/types/container | ||
| 334 | github.com/docker/docker/api/types/events | ||
| 335 | github.com/docker/docker/api/types/filters | ||
| 336 | github.com/docker/docker/api/types/image | ||
| 337 | github.com/docker/docker/api/types/mount | ||
| 338 | github.com/docker/docker/api/types/network | ||
| 339 | github.com/docker/docker/api/types/registry | ||
| 340 | github.com/docker/docker/api/types/storage | ||
| 341 | github.com/docker/docker/api/types/strslice | ||
| 342 | github.com/docker/docker/api/types/swarm | ||
| 343 | github.com/docker/docker/api/types/swarm/runtime | ||
| 344 | github.com/docker/docker/api/types/system | ||
| 345 | github.com/docker/docker/api/types/time | ||
| 346 | github.com/docker/docker/api/types/versions | ||
| 347 | github.com/docker/docker/api/types/volume | ||
| 348 | github.com/docker/docker/builder/remotecontext/git | ||
| 349 | github.com/docker/docker/builder/remotecontext/urlutil | ||
| 350 | github.com/docker/docker/client | ||
| 351 | github.com/docker/docker/errdefs | ||
| 352 | github.com/docker/docker/internal/lazyregexp | ||
| 353 | github.com/docker/docker/internal/multierror | ||
| 354 | github.com/docker/docker/pkg/archive | ||
| 355 | github.com/docker/docker/pkg/atomicwriter | ||
| 356 | github.com/docker/docker/pkg/homedir | ||
| 357 | github.com/docker/docker/pkg/idtools | ||
| 358 | github.com/docker/docker/pkg/ioutils | ||
| 359 | github.com/docker/docker/pkg/jsonmessage | ||
| 360 | github.com/docker/docker/pkg/longpath | ||
| 361 | github.com/docker/docker/pkg/namesgenerator | ||
| 362 | github.com/docker/docker/pkg/pidfile | ||
| 363 | github.com/docker/docker/pkg/process | ||
| 364 | github.com/docker/docker/pkg/progress | ||
| 365 | github.com/docker/docker/pkg/stdcopy | ||
| 366 | github.com/docker/docker/pkg/streamformatter | ||
| 367 | github.com/docker/docker/pkg/stringid | ||
| 368 | github.com/docker/docker/pkg/system | ||
| 369 | github.com/docker/docker/registry | ||
| 370 | # github.com/docker/docker-credential-helpers v0.8.2 | ||
| 371 | ## explicit; go 1.19 | ||
| 372 | github.com/docker/docker-credential-helpers/client | ||
| 373 | github.com/docker/docker-credential-helpers/credentials | ||
| 374 | # github.com/docker/go v1.5.1-1.0.20160303222718-d30aec9fd63c | ||
| 375 | ## explicit | ||
| 376 | github.com/docker/go/canonical/json | ||
| 377 | # github.com/docker/go-connections v0.5.0 | ||
| 378 | ## explicit; go 1.18 | ||
| 379 | github.com/docker/go-connections/nat | ||
| 380 | github.com/docker/go-connections/sockets | ||
| 381 | github.com/docker/go-connections/tlsconfig | ||
| 382 | # github.com/docker/go-metrics v0.0.1 | ||
| 383 | ## explicit; go 1.11 | ||
| 384 | github.com/docker/go-metrics | ||
| 385 | # github.com/docker/go-units v0.5.0 | ||
| 386 | ## explicit | ||
| 387 | github.com/docker/go-units | ||
| 388 | # github.com/eiannone/keyboard v0.0.0-20220611211555-0d226195f203 | ||
| 389 | ## explicit; go 1.18 | ||
| 390 | github.com/eiannone/keyboard | ||
| 391 | # github.com/emicklei/go-restful/v3 v3.11.0 | ||
| 392 | ## explicit; go 1.13 | ||
| 393 | github.com/emicklei/go-restful/v3 | ||
| 394 | github.com/emicklei/go-restful/v3/log | ||
| 395 | # github.com/felixge/httpsnoop v1.0.4 | ||
| 396 | ## explicit; go 1.13 | ||
| 397 | github.com/felixge/httpsnoop | ||
| 398 | # github.com/fsnotify/fsevents v0.2.0 | ||
| 399 | ## explicit; go 1.17 | ||
| 400 | github.com/fsnotify/fsevents | ||
| 401 | # github.com/fvbommel/sortorder v1.1.0 | ||
| 402 | ## explicit; go 1.13 | ||
| 403 | github.com/fvbommel/sortorder | ||
| 404 | # github.com/fxamacker/cbor/v2 v2.7.0 | ||
| 405 | ## explicit; go 1.17 | ||
| 406 | github.com/fxamacker/cbor/v2 | ||
| 407 | # github.com/go-logr/logr v1.4.2 | ||
| 408 | ## explicit; go 1.18 | ||
| 409 | github.com/go-logr/logr | ||
| 410 | github.com/go-logr/logr/funcr | ||
| 411 | # github.com/go-logr/stdr v1.2.2 | ||
| 412 | ## explicit; go 1.16 | ||
| 413 | github.com/go-logr/stdr | ||
| 414 | # github.com/go-openapi/jsonpointer v0.19.6 | ||
| 415 | ## explicit; go 1.13 | ||
| 416 | github.com/go-openapi/jsonpointer | ||
| 417 | # github.com/go-openapi/jsonreference v0.20.2 | ||
| 418 | ## explicit; go 1.13 | ||
| 419 | github.com/go-openapi/jsonreference | ||
| 420 | github.com/go-openapi/jsonreference/internal | ||
| 421 | # github.com/go-openapi/swag v0.22.4 | ||
| 422 | ## explicit; go 1.18 | ||
| 423 | github.com/go-openapi/swag | ||
| 424 | # github.com/go-viper/mapstructure/v2 v2.0.0 | ||
| 425 | ## explicit; go 1.18 | ||
| 426 | github.com/go-viper/mapstructure/v2 | ||
| 427 | github.com/go-viper/mapstructure/v2/internal/errors | ||
| 428 | # github.com/gofrs/flock v0.12.1 | ||
| 429 | ## explicit; go 1.21.0 | ||
| 430 | github.com/gofrs/flock | ||
| 431 | # github.com/gogo/protobuf v1.3.2 | ||
| 432 | ## explicit; go 1.15 | ||
| 433 | github.com/gogo/protobuf/proto | ||
| 434 | github.com/gogo/protobuf/sortkeys | ||
| 435 | # github.com/golang/protobuf v1.5.4 | ||
| 436 | ## explicit; go 1.17 | ||
| 437 | github.com/golang/protobuf/jsonpb | ||
| 438 | github.com/golang/protobuf/proto | ||
| 439 | github.com/golang/protobuf/ptypes | ||
| 440 | github.com/golang/protobuf/ptypes/any | ||
| 441 | github.com/golang/protobuf/ptypes/duration | ||
| 442 | github.com/golang/protobuf/ptypes/timestamp | ||
| 443 | # github.com/google/gnostic-models v0.6.8 | ||
| 444 | ## explicit; go 1.18 | ||
| 445 | github.com/google/gnostic-models/compiler | ||
| 446 | github.com/google/gnostic-models/extensions | ||
| 447 | github.com/google/gnostic-models/jsonschema | ||
| 448 | github.com/google/gnostic-models/openapiv2 | ||
| 449 | github.com/google/gnostic-models/openapiv3 | ||
| 450 | # github.com/google/go-cmp v0.7.0 | ||
| 451 | ## explicit; go 1.21 | ||
| 452 | github.com/google/go-cmp/cmp | ||
| 453 | github.com/google/go-cmp/cmp/internal/diff | ||
| 454 | github.com/google/go-cmp/cmp/internal/flags | ||
| 455 | github.com/google/go-cmp/cmp/internal/function | ||
| 456 | github.com/google/go-cmp/cmp/internal/value | ||
| 457 | # github.com/google/gofuzz v1.2.0 | ||
| 458 | ## explicit; go 1.12 | ||
| 459 | github.com/google/gofuzz | ||
| 460 | github.com/google/gofuzz/bytesource | ||
| 461 | # github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 | ||
| 462 | ## explicit; go 1.13 | ||
| 463 | github.com/google/shlex | ||
| 464 | # github.com/google/uuid v1.6.0 | ||
| 465 | ## explicit | ||
| 466 | github.com/google/uuid | ||
| 467 | # github.com/gorilla/mux v1.8.1 | ||
| 468 | ## explicit; go 1.20 | ||
| 469 | github.com/gorilla/mux | ||
| 470 | # github.com/gorilla/websocket v1.5.0 | ||
| 471 | ## explicit; go 1.12 | ||
| 472 | github.com/gorilla/websocket | ||
| 473 | # github.com/grpc-ecosystem/grpc-gateway/v2 v2.22.0 | ||
| 474 | ## explicit; go 1.21 | ||
| 475 | github.com/grpc-ecosystem/grpc-gateway/v2/internal/httprule | ||
| 476 | github.com/grpc-ecosystem/grpc-gateway/v2/runtime | ||
| 477 | github.com/grpc-ecosystem/grpc-gateway/v2/utilities | ||
| 478 | # github.com/hashicorp/errwrap v1.1.0 | ||
| 479 | ## explicit | ||
| 480 | github.com/hashicorp/errwrap | ||
| 481 | # github.com/hashicorp/go-cleanhttp v0.5.2 | ||
| 482 | ## explicit; go 1.13 | ||
| 483 | github.com/hashicorp/go-cleanhttp | ||
| 484 | # github.com/hashicorp/go-multierror v1.1.1 | ||
| 485 | ## explicit; go 1.13 | ||
| 486 | github.com/hashicorp/go-multierror | ||
| 487 | # github.com/hashicorp/go-version v1.7.0 | ||
| 488 | ## explicit | ||
| 489 | github.com/hashicorp/go-version | ||
| 490 | # github.com/imdario/mergo v0.3.16 | ||
| 491 | ## explicit; go 1.13 | ||
| 492 | github.com/imdario/mergo | ||
| 493 | # github.com/in-toto/in-toto-golang v0.5.0 | ||
| 494 | ## explicit; go 1.17 | ||
| 495 | github.com/in-toto/in-toto-golang/in_toto | ||
| 496 | github.com/in-toto/in-toto-golang/in_toto/slsa_provenance/common | ||
| 497 | github.com/in-toto/in-toto-golang/in_toto/slsa_provenance/v0.1 | ||
| 498 | github.com/in-toto/in-toto-golang/in_toto/slsa_provenance/v0.2 | ||
| 499 | # github.com/inconshreveable/mousetrap v1.1.0 | ||
| 500 | ## explicit; go 1.18 | ||
| 501 | github.com/inconshreveable/mousetrap | ||
| 502 | # github.com/jonboulle/clockwork v0.5.0 | ||
| 503 | ## explicit; go 1.21 | ||
| 504 | github.com/jonboulle/clockwork | ||
| 505 | # github.com/josharian/intern v1.0.0 | ||
| 506 | ## explicit; go 1.5 | ||
| 507 | github.com/josharian/intern | ||
| 508 | # github.com/json-iterator/go v1.1.12 | ||
| 509 | ## explicit; go 1.12 | ||
| 510 | github.com/json-iterator/go | ||
| 511 | # github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 | ||
| 512 | ## explicit | ||
| 513 | github.com/kballard/go-shellquote | ||
| 514 | # github.com/klauspost/compress v1.17.11 | ||
| 515 | ## explicit; go 1.21 | ||
| 516 | github.com/klauspost/compress | ||
| 517 | github.com/klauspost/compress/fse | ||
| 518 | github.com/klauspost/compress/huff0 | ||
| 519 | github.com/klauspost/compress/internal/cpuinfo | ||
| 520 | github.com/klauspost/compress/internal/snapref | ||
| 521 | github.com/klauspost/compress/zstd | ||
| 522 | github.com/klauspost/compress/zstd/internal/xxhash | ||
| 523 | # github.com/mailru/easyjson v0.7.7 | ||
| 524 | ## explicit; go 1.12 | ||
| 525 | github.com/mailru/easyjson/buffer | ||
| 526 | github.com/mailru/easyjson/jlexer | ||
| 527 | github.com/mailru/easyjson/jwriter | ||
| 528 | # github.com/mattn/go-colorable v0.1.13 | ||
| 529 | ## explicit; go 1.15 | ||
| 530 | github.com/mattn/go-colorable | ||
| 531 | # github.com/mattn/go-isatty v0.0.17 | ||
| 532 | ## explicit; go 1.15 | ||
| 533 | github.com/mattn/go-isatty | ||
| 534 | # github.com/mattn/go-runewidth v0.0.15 | ||
| 535 | ## explicit; go 1.9 | ||
| 536 | github.com/mattn/go-runewidth | ||
| 537 | # github.com/mattn/go-shellwords v1.0.12 | ||
| 538 | ## explicit; go 1.13 | ||
| 539 | github.com/mattn/go-shellwords | ||
| 540 | # github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b | ||
| 541 | ## explicit | ||
| 542 | github.com/mgutz/ansi | ||
| 543 | # github.com/miekg/pkcs11 v1.1.1 | ||
| 544 | ## explicit; go 1.12 | ||
| 545 | github.com/miekg/pkcs11 | ||
| 546 | # github.com/mitchellh/go-ps v1.0.0 | ||
| 547 | ## explicit; go 1.13 | ||
| 548 | github.com/mitchellh/go-ps | ||
| 549 | # github.com/mitchellh/hashstructure/v2 v2.0.2 | ||
| 550 | ## explicit; go 1.14 | ||
| 551 | github.com/mitchellh/hashstructure/v2 | ||
| 552 | # github.com/mitchellh/mapstructure v1.5.0 | ||
| 553 | ## explicit; go 1.14 | ||
| 554 | github.com/mitchellh/mapstructure | ||
| 555 | # github.com/moby/buildkit v0.20.0 | ||
| 556 | ## explicit; go 1.22.0 | ||
| 557 | github.com/moby/buildkit/api/services/control | ||
| 558 | github.com/moby/buildkit/api/types | ||
| 559 | github.com/moby/buildkit/client | ||
| 560 | github.com/moby/buildkit/client/buildid | ||
| 561 | github.com/moby/buildkit/client/connhelper | ||
| 562 | github.com/moby/buildkit/client/connhelper/dockercontainer | ||
| 563 | github.com/moby/buildkit/client/connhelper/kubepod | ||
| 564 | github.com/moby/buildkit/client/connhelper/ssh | ||
| 565 | github.com/moby/buildkit/client/llb | ||
| 566 | github.com/moby/buildkit/client/llb/sourceresolver | ||
| 567 | github.com/moby/buildkit/client/ociindex | ||
| 568 | github.com/moby/buildkit/cmd/buildkitd/config | ||
| 569 | github.com/moby/buildkit/errdefs | ||
| 570 | github.com/moby/buildkit/executor/resources/types | ||
| 571 | github.com/moby/buildkit/exporter/containerimage/exptypes | ||
| 572 | github.com/moby/buildkit/exporter/exptypes | ||
| 573 | github.com/moby/buildkit/frontend/gateway/client | ||
| 574 | github.com/moby/buildkit/frontend/gateway/grpcclient | ||
| 575 | github.com/moby/buildkit/frontend/gateway/pb | ||
| 576 | github.com/moby/buildkit/identity | ||
| 577 | github.com/moby/buildkit/session | ||
| 578 | github.com/moby/buildkit/session/auth | ||
| 579 | github.com/moby/buildkit/session/auth/authprovider | ||
| 580 | github.com/moby/buildkit/session/content | ||
| 581 | github.com/moby/buildkit/session/filesync | ||
| 582 | github.com/moby/buildkit/session/grpchijack | ||
| 583 | github.com/moby/buildkit/session/secrets | ||
| 584 | github.com/moby/buildkit/session/secrets/secretsprovider | ||
| 585 | github.com/moby/buildkit/session/sshforward | ||
| 586 | github.com/moby/buildkit/session/sshforward/sshprovider | ||
| 587 | github.com/moby/buildkit/session/upload | ||
| 588 | github.com/moby/buildkit/session/upload/uploadprovider | ||
| 589 | github.com/moby/buildkit/solver/errdefs | ||
| 590 | github.com/moby/buildkit/solver/llbsolver/provenance/types | ||
| 591 | github.com/moby/buildkit/solver/pb | ||
| 592 | github.com/moby/buildkit/solver/result | ||
| 593 | github.com/moby/buildkit/source/types | ||
| 594 | github.com/moby/buildkit/sourcepolicy/pb | ||
| 595 | github.com/moby/buildkit/util/apicaps | ||
| 596 | github.com/moby/buildkit/util/apicaps/pb | ||
| 597 | github.com/moby/buildkit/util/appcontext | ||
| 598 | github.com/moby/buildkit/util/appdefaults | ||
| 599 | github.com/moby/buildkit/util/bklog | ||
| 600 | github.com/moby/buildkit/util/contentutil | ||
| 601 | github.com/moby/buildkit/util/disk | ||
| 602 | github.com/moby/buildkit/util/entitlements | ||
| 603 | github.com/moby/buildkit/util/flightcontrol | ||
| 604 | github.com/moby/buildkit/util/gitutil | ||
| 605 | github.com/moby/buildkit/util/gogo/proto | ||
| 606 | github.com/moby/buildkit/util/grpcerrors | ||
| 607 | github.com/moby/buildkit/util/imageutil | ||
| 608 | github.com/moby/buildkit/util/leaseutil | ||
| 609 | github.com/moby/buildkit/util/progress | ||
| 610 | github.com/moby/buildkit/util/progress/progressui | ||
| 611 | github.com/moby/buildkit/util/progress/progresswriter | ||
| 612 | github.com/moby/buildkit/util/resolver/config | ||
| 613 | github.com/moby/buildkit/util/resolver/limited | ||
| 614 | github.com/moby/buildkit/util/resolver/retryhandler | ||
| 615 | github.com/moby/buildkit/util/sshutil | ||
| 616 | github.com/moby/buildkit/util/stack | ||
| 617 | github.com/moby/buildkit/util/system | ||
| 618 | github.com/moby/buildkit/util/tracing | ||
| 619 | github.com/moby/buildkit/util/tracing/delegated | ||
| 620 | github.com/moby/buildkit/util/tracing/detect | ||
| 621 | github.com/moby/buildkit/util/tracing/env | ||
| 622 | github.com/moby/buildkit/util/tracing/otlptracegrpc | ||
| 623 | github.com/moby/buildkit/version | ||
| 624 | # github.com/moby/docker-image-spec v1.3.1 | ||
| 625 | ## explicit; go 1.18 | ||
| 626 | github.com/moby/docker-image-spec/specs-go/v1 | ||
| 627 | # github.com/moby/locker v1.0.1 | ||
| 628 | ## explicit; go 1.13 | ||
| 629 | github.com/moby/locker | ||
| 630 | # github.com/moby/patternmatcher v0.6.0 | ||
| 631 | ## explicit; go 1.19 | ||
| 632 | github.com/moby/patternmatcher | ||
| 633 | github.com/moby/patternmatcher/ignorefile | ||
| 634 | # github.com/moby/spdystream v0.4.0 | ||
| 635 | ## explicit; go 1.13 | ||
| 636 | github.com/moby/spdystream | ||
| 637 | github.com/moby/spdystream/spdy | ||
| 638 | # github.com/moby/sys/capability v0.4.0 | ||
| 639 | ## explicit; go 1.21 | ||
| 640 | github.com/moby/sys/capability | ||
| 641 | # github.com/moby/sys/mountinfo v0.7.2 | ||
| 642 | ## explicit; go 1.17 | ||
| 643 | github.com/moby/sys/mountinfo | ||
| 644 | # github.com/moby/sys/sequential v0.6.0 | ||
| 645 | ## explicit; go 1.17 | ||
| 646 | github.com/moby/sys/sequential | ||
| 647 | # github.com/moby/sys/signal v0.7.1 | ||
| 648 | ## explicit; go 1.17 | ||
| 649 | github.com/moby/sys/signal | ||
| 650 | # github.com/moby/sys/symlink v0.3.0 | ||
| 651 | ## explicit; go 1.17 | ||
| 652 | github.com/moby/sys/symlink | ||
| 653 | # github.com/moby/sys/user v0.3.0 | ||
| 654 | ## explicit; go 1.17 | ||
| 655 | github.com/moby/sys/user | ||
| 656 | # github.com/moby/sys/userns v0.1.0 | ||
| 657 | ## explicit; go 1.21 | ||
| 658 | github.com/moby/sys/userns | ||
| 659 | # github.com/moby/term v0.5.2 | ||
| 660 | ## explicit; go 1.18 | ||
| 661 | github.com/moby/term | ||
| 662 | github.com/moby/term/windows | ||
| 663 | # github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd | ||
| 664 | ## explicit | ||
| 665 | github.com/modern-go/concurrent | ||
| 666 | # github.com/modern-go/reflect2 v1.0.2 | ||
| 667 | ## explicit; go 1.12 | ||
| 668 | github.com/modern-go/reflect2 | ||
| 669 | # github.com/morikuni/aec v1.0.0 | ||
| 670 | ## explicit | ||
| 671 | github.com/morikuni/aec | ||
| 672 | # github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 | ||
| 673 | ## explicit | ||
| 674 | github.com/munnerz/goautoneg | ||
| 675 | # github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f | ||
| 676 | ## explicit | ||
| 677 | github.com/mxk/go-flowrate/flowrate | ||
| 678 | # github.com/opencontainers/go-digest v1.0.0 | ||
| 679 | ## explicit; go 1.13 | ||
| 680 | github.com/opencontainers/go-digest | ||
| 681 | # github.com/opencontainers/image-spec v1.1.1 | ||
| 682 | ## explicit; go 1.18 | ||
| 683 | github.com/opencontainers/image-spec/specs-go | ||
| 684 | github.com/opencontainers/image-spec/specs-go/v1 | ||
| 685 | # github.com/otiai10/copy v1.14.1 | ||
| 686 | ## explicit; go 1.18 | ||
| 687 | github.com/otiai10/copy | ||
| 688 | # github.com/otiai10/mint v1.6.3 | ||
| 689 | ## explicit; go 1.18 | ||
| 690 | github.com/otiai10/mint | ||
| 691 | github.com/otiai10/mint/mquery | ||
| 692 | # github.com/pelletier/go-toml v1.9.5 | ||
| 693 | ## explicit; go 1.12 | ||
| 694 | github.com/pelletier/go-toml | ||
| 695 | # github.com/pkg/errors v0.9.1 | ||
| 696 | ## explicit | ||
| 697 | github.com/pkg/errors | ||
| 698 | # github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10 | ||
| 699 | ## explicit; go 1.20 | ||
| 700 | github.com/planetscale/vtprotobuf/protohelpers | ||
| 701 | github.com/planetscale/vtprotobuf/types/known/timestamppb | ||
| 702 | github.com/planetscale/vtprotobuf/vtproto | ||
| 703 | # github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 | ||
| 704 | ## explicit | ||
| 705 | github.com/pmezard/go-difflib/difflib | ||
| 706 | # github.com/prometheus/client_golang v1.20.5 | ||
| 707 | ## explicit; go 1.20 | ||
| 708 | github.com/prometheus/client_golang/internal/github.com/golang/gddo/httputil | ||
| 709 | github.com/prometheus/client_golang/internal/github.com/golang/gddo/httputil/header | ||
| 710 | github.com/prometheus/client_golang/prometheus | ||
| 711 | github.com/prometheus/client_golang/prometheus/internal | ||
| 712 | github.com/prometheus/client_golang/prometheus/promhttp | ||
| 713 | # github.com/prometheus/client_model v0.6.1 | ||
| 714 | ## explicit; go 1.19 | ||
| 715 | github.com/prometheus/client_model/go | ||
| 716 | # github.com/prometheus/common v0.55.0 | ||
| 717 | ## explicit; go 1.20 | ||
| 718 | github.com/prometheus/common/expfmt | ||
| 719 | github.com/prometheus/common/model | ||
| 720 | # github.com/prometheus/procfs v0.15.1 | ||
| 721 | ## explicit; go 1.20 | ||
| 722 | github.com/prometheus/procfs | ||
| 723 | github.com/prometheus/procfs/internal/fs | ||
| 724 | github.com/prometheus/procfs/internal/util | ||
| 725 | # github.com/r3labs/sse v0.0.0-20210224172625-26fe804710bc | ||
| 726 | ## explicit; go 1.13 | ||
| 727 | github.com/r3labs/sse | ||
| 728 | # github.com/rivo/uniseg v0.2.0 | ||
| 729 | ## explicit; go 1.12 | ||
| 730 | github.com/rivo/uniseg | ||
| 731 | # github.com/russross/blackfriday/v2 v2.1.0 | ||
| 732 | ## explicit | ||
| 733 | github.com/russross/blackfriday/v2 | ||
| 734 | # github.com/secure-systems-lab/go-securesystemslib v0.4.0 | ||
| 735 | ## explicit; go 1.17 | ||
| 736 | github.com/secure-systems-lab/go-securesystemslib/cjson | ||
| 737 | github.com/secure-systems-lab/go-securesystemslib/dsse | ||
| 738 | # github.com/serialx/hashring v0.0.0-20200727003509-22c0c7ab6b1b | ||
| 739 | ## explicit | ||
| 740 | github.com/serialx/hashring | ||
| 741 | # github.com/shibumi/go-pathspec v1.3.0 | ||
| 742 | ## explicit; go 1.17 | ||
| 743 | github.com/shibumi/go-pathspec | ||
| 744 | # github.com/sirupsen/logrus v1.9.3 | ||
| 745 | ## explicit; go 1.13 | ||
| 746 | github.com/sirupsen/logrus | ||
| 747 | # github.com/skratchdot/open-golang v0.0.0-20200116055534-eef842397966 | ||
| 748 | ## explicit | ||
| 749 | github.com/skratchdot/open-golang/open | ||
| 750 | # github.com/spf13/cobra v1.9.1 | ||
| 751 | ## explicit; go 1.15 | ||
| 752 | github.com/spf13/cobra | ||
| 753 | github.com/spf13/cobra/doc | ||
| 754 | # github.com/spf13/pflag v1.0.6 | ||
| 755 | ## explicit; go 1.12 | ||
| 756 | github.com/spf13/pflag | ||
| 757 | # github.com/stretchr/testify v1.10.0 | ||
| 758 | ## explicit; go 1.17 | ||
| 759 | github.com/stretchr/testify/assert | ||
| 760 | github.com/stretchr/testify/assert/yaml | ||
| 761 | github.com/stretchr/testify/require | ||
| 762 | # github.com/theupdateframework/notary v0.7.0 | ||
| 763 | ## explicit; go 1.12 | ||
| 764 | github.com/theupdateframework/notary | ||
| 765 | github.com/theupdateframework/notary/client | ||
| 766 | github.com/theupdateframework/notary/client/changelist | ||
| 767 | github.com/theupdateframework/notary/cryptoservice | ||
| 768 | github.com/theupdateframework/notary/passphrase | ||
| 769 | github.com/theupdateframework/notary/storage | ||
| 770 | github.com/theupdateframework/notary/trustmanager | ||
| 771 | github.com/theupdateframework/notary/trustmanager/yubikey | ||
| 772 | github.com/theupdateframework/notary/trustpinning | ||
| 773 | github.com/theupdateframework/notary/tuf | ||
| 774 | github.com/theupdateframework/notary/tuf/data | ||
| 775 | github.com/theupdateframework/notary/tuf/signed | ||
| 776 | github.com/theupdateframework/notary/tuf/utils | ||
| 777 | github.com/theupdateframework/notary/tuf/validation | ||
| 778 | # github.com/tilt-dev/fsnotify v1.4.8-0.20220602155310-fff9c274a375 | ||
| 779 | ## explicit; go 1.16 | ||
| 780 | github.com/tilt-dev/fsnotify | ||
| 781 | # github.com/tonistiigi/dchapes-mode v0.0.0-20241001053921-ca0759fec205 | ||
| 782 | ## explicit; go 1.21 | ||
| 783 | github.com/tonistiigi/dchapes-mode | ||
| 784 | # github.com/tonistiigi/fsutil v0.0.0-20250113203817-b14e27f4135a | ||
| 785 | ## explicit; go 1.21 | ||
| 786 | github.com/tonistiigi/fsutil | ||
| 787 | github.com/tonistiigi/fsutil/copy | ||
| 788 | github.com/tonistiigi/fsutil/types | ||
| 789 | # github.com/tonistiigi/go-csvvalue v0.0.0-20240710180619-ddb21b71c0b4 | ||
| 790 | ## explicit; go 1.16 | ||
| 791 | github.com/tonistiigi/go-csvvalue | ||
| 792 | # github.com/tonistiigi/units v0.0.0-20180711220420-6950e57a87ea | ||
| 793 | ## explicit | ||
| 794 | github.com/tonistiigi/units | ||
| 795 | # github.com/tonistiigi/vt100 v0.0.0-20240514184818-90bafcd6abab | ||
| 796 | ## explicit; go 1.12 | ||
| 797 | github.com/tonistiigi/vt100 | ||
| 798 | # github.com/x448/float16 v0.8.4 | ||
| 799 | ## explicit; go 1.11 | ||
| 800 | github.com/x448/float16 | ||
| 801 | # github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb | ||
| 802 | ## explicit | ||
| 803 | github.com/xeipuuv/gojsonpointer | ||
| 804 | # github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 | ||
| 805 | ## explicit | ||
| 806 | github.com/xeipuuv/gojsonreference | ||
| 807 | # github.com/xeipuuv/gojsonschema v1.2.0 | ||
| 808 | ## explicit | ||
| 809 | github.com/xeipuuv/gojsonschema | ||
| 810 | # github.com/xhit/go-str2duration/v2 v2.1.0 | ||
| 811 | ## explicit; go 1.13 | ||
| 812 | github.com/xhit/go-str2duration/v2 | ||
| 813 | # github.com/zclconf/go-cty v1.16.0 | ||
| 814 | ## explicit; go 1.18 | ||
| 815 | github.com/zclconf/go-cty/cty | ||
| 816 | github.com/zclconf/go-cty/cty/convert | ||
| 817 | github.com/zclconf/go-cty/cty/ctystrings | ||
| 818 | github.com/zclconf/go-cty/cty/gocty | ||
| 819 | github.com/zclconf/go-cty/cty/json | ||
| 820 | github.com/zclconf/go-cty/cty/set | ||
| 821 | # go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.56.0 | ||
| 822 | ## explicit; go 1.22 | ||
| 823 | go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc | ||
| 824 | go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc/internal | ||
| 825 | # go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.56.0 | ||
| 826 | ## explicit; go 1.22 | ||
| 827 | go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace | ||
| 828 | go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace/internal/semconvutil | ||
| 829 | # go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.56.0 | ||
| 830 | ## explicit; go 1.22 | ||
| 831 | go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp | ||
| 832 | go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp/internal/request | ||
| 833 | go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp/internal/semconv | ||
| 834 | go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp/internal/semconvutil | ||
| 835 | # go.opentelemetry.io/otel v1.32.0 | ||
| 836 | ## explicit; go 1.22 | ||
| 837 | go.opentelemetry.io/otel | ||
| 838 | go.opentelemetry.io/otel/attribute | ||
| 839 | go.opentelemetry.io/otel/baggage | ||
| 840 | go.opentelemetry.io/otel/codes | ||
| 841 | go.opentelemetry.io/otel/internal | ||
| 842 | go.opentelemetry.io/otel/internal/attribute | ||
| 843 | go.opentelemetry.io/otel/internal/baggage | ||
| 844 | go.opentelemetry.io/otel/internal/global | ||
| 845 | go.opentelemetry.io/otel/propagation | ||
| 846 | go.opentelemetry.io/otel/semconv/v1.17.0 | ||
| 847 | go.opentelemetry.io/otel/semconv/v1.19.0 | ||
| 848 | go.opentelemetry.io/otel/semconv/v1.20.0 | ||
| 849 | go.opentelemetry.io/otel/semconv/v1.21.0 | ||
| 850 | go.opentelemetry.io/otel/semconv/v1.26.0 | ||
| 851 | # go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v1.31.0 | ||
| 852 | ## explicit; go 1.22 | ||
| 853 | go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc | ||
| 854 | go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc/internal | ||
| 855 | go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc/internal/envconfig | ||
| 856 | go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc/internal/oconf | ||
| 857 | go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc/internal/retry | ||
| 858 | go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc/internal/transform | ||
| 859 | # go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp v1.31.0 | ||
| 860 | ## explicit; go 1.22 | ||
| 861 | go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp | ||
| 862 | go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp/internal | ||
| 863 | go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp/internal/envconfig | ||
| 864 | go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp/internal/oconf | ||
| 865 | go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp/internal/retry | ||
| 866 | go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp/internal/transform | ||
| 867 | # go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.31.0 | ||
| 868 | ## explicit; go 1.22 | ||
| 869 | go.opentelemetry.io/otel/exporters/otlp/otlptrace | ||
| 870 | go.opentelemetry.io/otel/exporters/otlp/otlptrace/internal/tracetransform | ||
| 871 | # go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.31.0 | ||
| 872 | ## explicit; go 1.22 | ||
| 873 | go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc | ||
| 874 | go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc/internal | ||
| 875 | go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc/internal/envconfig | ||
| 876 | go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc/internal/otlpconfig | ||
| 877 | go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc/internal/retry | ||
| 878 | # go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.31.0 | ||
| 879 | ## explicit; go 1.22 | ||
| 880 | go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp | ||
| 881 | go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp/internal | ||
| 882 | go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp/internal/envconfig | ||
| 883 | go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp/internal/otlpconfig | ||
| 884 | go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp/internal/retry | ||
| 885 | # go.opentelemetry.io/otel/metric v1.32.0 | ||
| 886 | ## explicit; go 1.22 | ||
| 887 | go.opentelemetry.io/otel/metric | ||
| 888 | go.opentelemetry.io/otel/metric/embedded | ||
| 889 | go.opentelemetry.io/otel/metric/noop | ||
| 890 | # go.opentelemetry.io/otel/sdk v1.32.0 | ||
| 891 | ## explicit; go 1.22 | ||
| 892 | go.opentelemetry.io/otel/sdk | ||
| 893 | go.opentelemetry.io/otel/sdk/instrumentation | ||
| 894 | go.opentelemetry.io/otel/sdk/internal/env | ||
| 895 | go.opentelemetry.io/otel/sdk/internal/x | ||
| 896 | go.opentelemetry.io/otel/sdk/resource | ||
| 897 | go.opentelemetry.io/otel/sdk/trace | ||
| 898 | go.opentelemetry.io/otel/sdk/trace/tracetest | ||
| 899 | # go.opentelemetry.io/otel/sdk/metric v1.32.0 | ||
| 900 | ## explicit; go 1.22 | ||
| 901 | go.opentelemetry.io/otel/sdk/metric | ||
| 902 | go.opentelemetry.io/otel/sdk/metric/exemplar | ||
| 903 | go.opentelemetry.io/otel/sdk/metric/internal | ||
| 904 | go.opentelemetry.io/otel/sdk/metric/internal/aggregate | ||
| 905 | go.opentelemetry.io/otel/sdk/metric/internal/x | ||
| 906 | go.opentelemetry.io/otel/sdk/metric/metricdata | ||
| 907 | # go.opentelemetry.io/otel/trace v1.32.0 | ||
| 908 | ## explicit; go 1.22 | ||
| 909 | go.opentelemetry.io/otel/trace | ||
| 910 | go.opentelemetry.io/otel/trace/embedded | ||
| 911 | go.opentelemetry.io/otel/trace/noop | ||
| 912 | # go.opentelemetry.io/proto/otlp v1.3.1 | ||
| 913 | ## explicit; go 1.17 | ||
| 914 | go.opentelemetry.io/proto/otlp/collector/metrics/v1 | ||
| 915 | go.opentelemetry.io/proto/otlp/collector/trace/v1 | ||
| 916 | go.opentelemetry.io/proto/otlp/common/v1 | ||
| 917 | go.opentelemetry.io/proto/otlp/metrics/v1 | ||
| 918 | go.opentelemetry.io/proto/otlp/resource/v1 | ||
| 919 | go.opentelemetry.io/proto/otlp/trace/v1 | ||
| 920 | # go.uber.org/goleak v1.3.0 | ||
| 921 | ## explicit; go 1.20 | ||
| 922 | go.uber.org/goleak | ||
| 923 | go.uber.org/goleak/internal/stack | ||
| 924 | # go.uber.org/mock v0.5.0 | ||
| 925 | ## explicit; go 1.22 | ||
| 926 | go.uber.org/mock/gomock | ||
| 927 | # golang.org/x/crypto v0.31.0 | ||
| 928 | ## explicit; go 1.20 | ||
| 929 | golang.org/x/crypto/blowfish | ||
| 930 | golang.org/x/crypto/chacha20 | ||
| 931 | golang.org/x/crypto/curve25519 | ||
| 932 | golang.org/x/crypto/ed25519 | ||
| 933 | golang.org/x/crypto/internal/alias | ||
| 934 | golang.org/x/crypto/internal/poly1305 | ||
| 935 | golang.org/x/crypto/nacl/sign | ||
| 936 | golang.org/x/crypto/pbkdf2 | ||
| 937 | golang.org/x/crypto/ssh | ||
| 938 | golang.org/x/crypto/ssh/agent | ||
| 939 | golang.org/x/crypto/ssh/internal/bcrypt_pbkdf | ||
| 940 | # golang.org/x/exp v0.0.0-20241108190413-2d47ceb2692f | ||
| 941 | ## explicit; go 1.22.0 | ||
| 942 | golang.org/x/exp/constraints | ||
| 943 | golang.org/x/exp/maps | ||
| 944 | golang.org/x/exp/slices | ||
| 945 | # golang.org/x/net v0.33.0 | ||
| 946 | ## explicit; go 1.18 | ||
| 947 | golang.org/x/net/context | ||
| 948 | golang.org/x/net/html | ||
| 949 | golang.org/x/net/html/atom | ||
| 950 | golang.org/x/net/http/httpguts | ||
| 951 | golang.org/x/net/http2 | ||
| 952 | golang.org/x/net/http2/hpack | ||
| 953 | golang.org/x/net/idna | ||
| 954 | golang.org/x/net/internal/socks | ||
| 955 | golang.org/x/net/internal/timeseries | ||
| 956 | golang.org/x/net/proxy | ||
| 957 | golang.org/x/net/trace | ||
| 958 | golang.org/x/net/websocket | ||
| 959 | # golang.org/x/oauth2 v0.24.0 | ||
| 960 | ## explicit; go 1.18 | ||
| 961 | golang.org/x/oauth2 | ||
| 962 | golang.org/x/oauth2/internal | ||
| 963 | # golang.org/x/sync v0.11.0 | ||
| 964 | ## explicit; go 1.18 | ||
| 965 | golang.org/x/sync/errgroup | ||
| 966 | golang.org/x/sync/semaphore | ||
| 967 | # golang.org/x/sys v0.30.0 | ||
| 968 | ## explicit; go 1.18 | ||
| 969 | golang.org/x/sys/cpu | ||
| 970 | golang.org/x/sys/plan9 | ||
| 971 | golang.org/x/sys/unix | ||
| 972 | golang.org/x/sys/windows | ||
| 973 | golang.org/x/sys/windows/registry | ||
| 974 | # golang.org/x/term v0.27.0 | ||
| 975 | ## explicit; go 1.18 | ||
| 976 | golang.org/x/term | ||
| 977 | # golang.org/x/text v0.21.0 | ||
| 978 | ## explicit; go 1.18 | ||
| 979 | golang.org/x/text/cases | ||
| 980 | golang.org/x/text/internal | ||
| 981 | golang.org/x/text/internal/language | ||
| 982 | golang.org/x/text/internal/language/compact | ||
| 983 | golang.org/x/text/internal/tag | ||
| 984 | golang.org/x/text/language | ||
| 985 | golang.org/x/text/secure/bidirule | ||
| 986 | golang.org/x/text/transform | ||
| 987 | golang.org/x/text/unicode/bidi | ||
| 988 | golang.org/x/text/unicode/norm | ||
| 989 | golang.org/x/text/width | ||
| 990 | # golang.org/x/time v0.6.0 | ||
| 991 | ## explicit; go 1.18 | ||
| 992 | golang.org/x/time/rate | ||
| 993 | # google.golang.org/genproto/googleapis/api v0.0.0-20241202173237-19429a94021a | ||
| 994 | ## explicit; go 1.21 | ||
| 995 | google.golang.org/genproto/googleapis/api/httpbody | ||
| 996 | # google.golang.org/genproto/googleapis/rpc v0.0.0-20241202173237-19429a94021a | ||
| 997 | ## explicit; go 1.21 | ||
| 998 | google.golang.org/genproto/googleapis/rpc/errdetails | ||
| 999 | google.golang.org/genproto/googleapis/rpc/status | ||
| 1000 | # google.golang.org/grpc v1.70.0 | ||
| 1001 | ## explicit; go 1.22 | ||
| 1002 | google.golang.org/grpc | ||
| 1003 | google.golang.org/grpc/attributes | ||
| 1004 | google.golang.org/grpc/backoff | ||
| 1005 | google.golang.org/grpc/balancer | ||
| 1006 | google.golang.org/grpc/balancer/base | ||
| 1007 | google.golang.org/grpc/balancer/grpclb/state | ||
| 1008 | google.golang.org/grpc/balancer/pickfirst | ||
| 1009 | google.golang.org/grpc/balancer/pickfirst/internal | ||
| 1010 | google.golang.org/grpc/balancer/pickfirst/pickfirstleaf | ||
| 1011 | google.golang.org/grpc/balancer/roundrobin | ||
| 1012 | google.golang.org/grpc/binarylog/grpc_binarylog_v1 | ||
| 1013 | google.golang.org/grpc/channelz | ||
| 1014 | google.golang.org/grpc/codes | ||
| 1015 | google.golang.org/grpc/connectivity | ||
| 1016 | google.golang.org/grpc/credentials | ||
| 1017 | google.golang.org/grpc/credentials/insecure | ||
| 1018 | google.golang.org/grpc/encoding | ||
| 1019 | google.golang.org/grpc/encoding/gzip | ||
| 1020 | google.golang.org/grpc/encoding/proto | ||
| 1021 | google.golang.org/grpc/experimental/stats | ||
| 1022 | google.golang.org/grpc/grpclog | ||
| 1023 | google.golang.org/grpc/grpclog/internal | ||
| 1024 | google.golang.org/grpc/health | ||
| 1025 | google.golang.org/grpc/health/grpc_health_v1 | ||
| 1026 | google.golang.org/grpc/internal | ||
| 1027 | google.golang.org/grpc/internal/backoff | ||
| 1028 | google.golang.org/grpc/internal/balancer/gracefulswitch | ||
| 1029 | google.golang.org/grpc/internal/balancerload | ||
| 1030 | google.golang.org/grpc/internal/binarylog | ||
| 1031 | google.golang.org/grpc/internal/buffer | ||
| 1032 | google.golang.org/grpc/internal/channelz | ||
| 1033 | google.golang.org/grpc/internal/credentials | ||
| 1034 | google.golang.org/grpc/internal/envconfig | ||
| 1035 | google.golang.org/grpc/internal/grpclog | ||
| 1036 | google.golang.org/grpc/internal/grpcsync | ||
| 1037 | google.golang.org/grpc/internal/grpcutil | ||
| 1038 | google.golang.org/grpc/internal/idle | ||
| 1039 | google.golang.org/grpc/internal/metadata | ||
| 1040 | google.golang.org/grpc/internal/pretty | ||
| 1041 | google.golang.org/grpc/internal/resolver | ||
| 1042 | google.golang.org/grpc/internal/resolver/dns | ||
| 1043 | google.golang.org/grpc/internal/resolver/dns/internal | ||
| 1044 | google.golang.org/grpc/internal/resolver/passthrough | ||
| 1045 | google.golang.org/grpc/internal/resolver/unix | ||
| 1046 | google.golang.org/grpc/internal/serviceconfig | ||
| 1047 | google.golang.org/grpc/internal/stats | ||
| 1048 | google.golang.org/grpc/internal/status | ||
| 1049 | google.golang.org/grpc/internal/syscall | ||
| 1050 | google.golang.org/grpc/internal/transport | ||
| 1051 | google.golang.org/grpc/internal/transport/networktype | ||
| 1052 | google.golang.org/grpc/keepalive | ||
| 1053 | google.golang.org/grpc/mem | ||
| 1054 | google.golang.org/grpc/metadata | ||
| 1055 | google.golang.org/grpc/peer | ||
| 1056 | google.golang.org/grpc/resolver | ||
| 1057 | google.golang.org/grpc/resolver/dns | ||
| 1058 | google.golang.org/grpc/serviceconfig | ||
| 1059 | google.golang.org/grpc/stats | ||
| 1060 | google.golang.org/grpc/status | ||
| 1061 | google.golang.org/grpc/tap | ||
| 1062 | # google.golang.org/protobuf v1.35.2 | ||
| 1063 | ## explicit; go 1.21 | ||
| 1064 | google.golang.org/protobuf/encoding/protodelim | ||
| 1065 | google.golang.org/protobuf/encoding/protojson | ||
| 1066 | google.golang.org/protobuf/encoding/prototext | ||
| 1067 | google.golang.org/protobuf/encoding/protowire | ||
| 1068 | google.golang.org/protobuf/internal/descfmt | ||
| 1069 | google.golang.org/protobuf/internal/descopts | ||
| 1070 | google.golang.org/protobuf/internal/detrand | ||
| 1071 | google.golang.org/protobuf/internal/editiondefaults | ||
| 1072 | google.golang.org/protobuf/internal/editionssupport | ||
| 1073 | google.golang.org/protobuf/internal/encoding/defval | ||
| 1074 | google.golang.org/protobuf/internal/encoding/json | ||
| 1075 | google.golang.org/protobuf/internal/encoding/messageset | ||
| 1076 | google.golang.org/protobuf/internal/encoding/tag | ||
| 1077 | google.golang.org/protobuf/internal/encoding/text | ||
| 1078 | google.golang.org/protobuf/internal/errors | ||
| 1079 | google.golang.org/protobuf/internal/filedesc | ||
| 1080 | google.golang.org/protobuf/internal/filetype | ||
| 1081 | google.golang.org/protobuf/internal/flags | ||
| 1082 | google.golang.org/protobuf/internal/genid | ||
| 1083 | google.golang.org/protobuf/internal/impl | ||
| 1084 | google.golang.org/protobuf/internal/order | ||
| 1085 | google.golang.org/protobuf/internal/pragma | ||
| 1086 | google.golang.org/protobuf/internal/set | ||
| 1087 | google.golang.org/protobuf/internal/strs | ||
| 1088 | google.golang.org/protobuf/internal/version | ||
| 1089 | google.golang.org/protobuf/proto | ||
| 1090 | google.golang.org/protobuf/protoadapt | ||
| 1091 | google.golang.org/protobuf/reflect/protodesc | ||
| 1092 | google.golang.org/protobuf/reflect/protoreflect | ||
| 1093 | google.golang.org/protobuf/reflect/protoregistry | ||
| 1094 | google.golang.org/protobuf/runtime/protoiface | ||
| 1095 | google.golang.org/protobuf/runtime/protoimpl | ||
| 1096 | google.golang.org/protobuf/types/descriptorpb | ||
| 1097 | google.golang.org/protobuf/types/gofeaturespb | ||
| 1098 | google.golang.org/protobuf/types/known/anypb | ||
| 1099 | google.golang.org/protobuf/types/known/durationpb | ||
| 1100 | google.golang.org/protobuf/types/known/emptypb | ||
| 1101 | google.golang.org/protobuf/types/known/fieldmaskpb | ||
| 1102 | google.golang.org/protobuf/types/known/structpb | ||
| 1103 | google.golang.org/protobuf/types/known/timestamppb | ||
| 1104 | google.golang.org/protobuf/types/known/wrapperspb | ||
| 1105 | # gopkg.in/cenkalti/backoff.v1 v1.1.0 | ||
| 1106 | ## explicit | ||
| 1107 | gopkg.in/cenkalti/backoff.v1 | ||
| 1108 | # gopkg.in/inf.v0 v0.9.1 | ||
| 1109 | ## explicit | ||
| 1110 | gopkg.in/inf.v0 | ||
| 1111 | # gopkg.in/yaml.v2 v2.4.0 | ||
| 1112 | ## explicit; go 1.15 | ||
| 1113 | gopkg.in/yaml.v2 | ||
| 1114 | # gopkg.in/yaml.v3 v3.0.1 | ||
| 1115 | ## explicit | ||
| 1116 | gopkg.in/yaml.v3 | ||
| 1117 | # gotest.tools/v3 v3.5.2 | ||
| 1118 | ## explicit; go 1.17 | ||
| 1119 | gotest.tools/v3/assert | ||
| 1120 | gotest.tools/v3/assert/cmp | ||
| 1121 | gotest.tools/v3/icmd | ||
| 1122 | gotest.tools/v3/internal/assert | ||
| 1123 | gotest.tools/v3/internal/difflib | ||
| 1124 | gotest.tools/v3/internal/format | ||
| 1125 | gotest.tools/v3/internal/source | ||
| 1126 | gotest.tools/v3/poll | ||
| 1127 | # k8s.io/api v0.31.2 | ||
| 1128 | ## explicit; go 1.22.0 | ||
| 1129 | k8s.io/api/admissionregistration/v1 | ||
| 1130 | k8s.io/api/admissionregistration/v1alpha1 | ||
| 1131 | k8s.io/api/admissionregistration/v1beta1 | ||
| 1132 | k8s.io/api/apidiscovery/v2 | ||
| 1133 | k8s.io/api/apidiscovery/v2beta1 | ||
| 1134 | k8s.io/api/apiserverinternal/v1alpha1 | ||
| 1135 | k8s.io/api/apps/v1 | ||
| 1136 | k8s.io/api/apps/v1beta1 | ||
| 1137 | k8s.io/api/apps/v1beta2 | ||
| 1138 | k8s.io/api/authentication/v1 | ||
| 1139 | k8s.io/api/authentication/v1alpha1 | ||
| 1140 | k8s.io/api/authentication/v1beta1 | ||
| 1141 | k8s.io/api/authorization/v1 | ||
| 1142 | k8s.io/api/authorization/v1beta1 | ||
| 1143 | k8s.io/api/autoscaling/v1 | ||
| 1144 | k8s.io/api/autoscaling/v2 | ||
| 1145 | k8s.io/api/autoscaling/v2beta1 | ||
| 1146 | k8s.io/api/autoscaling/v2beta2 | ||
| 1147 | k8s.io/api/batch/v1 | ||
| 1148 | k8s.io/api/batch/v1beta1 | ||
| 1149 | k8s.io/api/certificates/v1 | ||
| 1150 | k8s.io/api/certificates/v1alpha1 | ||
| 1151 | k8s.io/api/certificates/v1beta1 | ||
| 1152 | k8s.io/api/coordination/v1 | ||
| 1153 | k8s.io/api/coordination/v1alpha1 | ||
| 1154 | k8s.io/api/coordination/v1beta1 | ||
| 1155 | k8s.io/api/core/v1 | ||
| 1156 | k8s.io/api/discovery/v1 | ||
| 1157 | k8s.io/api/discovery/v1beta1 | ||
| 1158 | k8s.io/api/events/v1 | ||
| 1159 | k8s.io/api/events/v1beta1 | ||
| 1160 | k8s.io/api/extensions/v1beta1 | ||
| 1161 | k8s.io/api/flowcontrol/v1 | ||
| 1162 | k8s.io/api/flowcontrol/v1beta1 | ||
| 1163 | k8s.io/api/flowcontrol/v1beta2 | ||
| 1164 | k8s.io/api/flowcontrol/v1beta3 | ||
| 1165 | k8s.io/api/networking/v1 | ||
| 1166 | k8s.io/api/networking/v1alpha1 | ||
| 1167 | k8s.io/api/networking/v1beta1 | ||
| 1168 | k8s.io/api/node/v1 | ||
| 1169 | k8s.io/api/node/v1alpha1 | ||
| 1170 | k8s.io/api/node/v1beta1 | ||
| 1171 | k8s.io/api/policy/v1 | ||
| 1172 | k8s.io/api/policy/v1beta1 | ||
| 1173 | k8s.io/api/rbac/v1 | ||
| 1174 | k8s.io/api/rbac/v1alpha1 | ||
| 1175 | k8s.io/api/rbac/v1beta1 | ||
| 1176 | k8s.io/api/resource/v1alpha3 | ||
| 1177 | k8s.io/api/scheduling/v1 | ||
| 1178 | k8s.io/api/scheduling/v1alpha1 | ||
| 1179 | k8s.io/api/scheduling/v1beta1 | ||
| 1180 | k8s.io/api/storage/v1 | ||
| 1181 | k8s.io/api/storage/v1alpha1 | ||
| 1182 | k8s.io/api/storage/v1beta1 | ||
| 1183 | k8s.io/api/storagemigration/v1alpha1 | ||
| 1184 | # k8s.io/apimachinery v0.31.2 | ||
| 1185 | ## explicit; go 1.22.0 | ||
| 1186 | k8s.io/apimachinery/pkg/api/equality | ||
| 1187 | k8s.io/apimachinery/pkg/api/errors | ||
| 1188 | k8s.io/apimachinery/pkg/api/meta | ||
| 1189 | k8s.io/apimachinery/pkg/api/resource | ||
| 1190 | k8s.io/apimachinery/pkg/api/validation | ||
| 1191 | k8s.io/apimachinery/pkg/apis/meta/internalversion | ||
| 1192 | k8s.io/apimachinery/pkg/apis/meta/internalversion/validation | ||
| 1193 | k8s.io/apimachinery/pkg/apis/meta/v1 | ||
| 1194 | k8s.io/apimachinery/pkg/apis/meta/v1/unstructured | ||
| 1195 | k8s.io/apimachinery/pkg/apis/meta/v1/validation | ||
| 1196 | k8s.io/apimachinery/pkg/apis/meta/v1beta1 | ||
| 1197 | k8s.io/apimachinery/pkg/conversion | ||
| 1198 | k8s.io/apimachinery/pkg/conversion/queryparams | ||
| 1199 | k8s.io/apimachinery/pkg/fields | ||
| 1200 | k8s.io/apimachinery/pkg/labels | ||
| 1201 | k8s.io/apimachinery/pkg/runtime | ||
| 1202 | k8s.io/apimachinery/pkg/runtime/schema | ||
| 1203 | k8s.io/apimachinery/pkg/runtime/serializer | ||
| 1204 | k8s.io/apimachinery/pkg/runtime/serializer/cbor/direct | ||
| 1205 | k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes | ||
| 1206 | k8s.io/apimachinery/pkg/runtime/serializer/json | ||
| 1207 | k8s.io/apimachinery/pkg/runtime/serializer/protobuf | ||
| 1208 | k8s.io/apimachinery/pkg/runtime/serializer/recognizer | ||
| 1209 | k8s.io/apimachinery/pkg/runtime/serializer/streaming | ||
| 1210 | k8s.io/apimachinery/pkg/runtime/serializer/versioning | ||
| 1211 | k8s.io/apimachinery/pkg/selection | ||
| 1212 | k8s.io/apimachinery/pkg/types | ||
| 1213 | k8s.io/apimachinery/pkg/util/dump | ||
| 1214 | k8s.io/apimachinery/pkg/util/errors | ||
| 1215 | k8s.io/apimachinery/pkg/util/framer | ||
| 1216 | k8s.io/apimachinery/pkg/util/httpstream | ||
| 1217 | k8s.io/apimachinery/pkg/util/httpstream/spdy | ||
| 1218 | k8s.io/apimachinery/pkg/util/httpstream/wsstream | ||
| 1219 | k8s.io/apimachinery/pkg/util/intstr | ||
| 1220 | k8s.io/apimachinery/pkg/util/json | ||
| 1221 | k8s.io/apimachinery/pkg/util/managedfields | ||
| 1222 | k8s.io/apimachinery/pkg/util/managedfields/internal | ||
| 1223 | k8s.io/apimachinery/pkg/util/naming | ||
| 1224 | k8s.io/apimachinery/pkg/util/net | ||
| 1225 | k8s.io/apimachinery/pkg/util/portforward | ||
| 1226 | k8s.io/apimachinery/pkg/util/proxy | ||
| 1227 | k8s.io/apimachinery/pkg/util/remotecommand | ||
| 1228 | k8s.io/apimachinery/pkg/util/runtime | ||
| 1229 | k8s.io/apimachinery/pkg/util/sets | ||
| 1230 | k8s.io/apimachinery/pkg/util/validation | ||
| 1231 | k8s.io/apimachinery/pkg/util/validation/field | ||
| 1232 | k8s.io/apimachinery/pkg/util/wait | ||
| 1233 | k8s.io/apimachinery/pkg/util/yaml | ||
| 1234 | k8s.io/apimachinery/pkg/version | ||
| 1235 | k8s.io/apimachinery/pkg/watch | ||
| 1236 | k8s.io/apimachinery/third_party/forked/golang/netutil | ||
| 1237 | k8s.io/apimachinery/third_party/forked/golang/reflect | ||
| 1238 | # k8s.io/client-go v0.31.2 | ||
| 1239 | ## explicit; go 1.22.0 | ||
| 1240 | k8s.io/client-go/applyconfigurations/admissionregistration/v1 | ||
| 1241 | k8s.io/client-go/applyconfigurations/admissionregistration/v1alpha1 | ||
| 1242 | k8s.io/client-go/applyconfigurations/admissionregistration/v1beta1 | ||
| 1243 | k8s.io/client-go/applyconfigurations/apiserverinternal/v1alpha1 | ||
| 1244 | k8s.io/client-go/applyconfigurations/apps/v1 | ||
| 1245 | k8s.io/client-go/applyconfigurations/apps/v1beta1 | ||
| 1246 | k8s.io/client-go/applyconfigurations/apps/v1beta2 | ||
| 1247 | k8s.io/client-go/applyconfigurations/autoscaling/v1 | ||
| 1248 | k8s.io/client-go/applyconfigurations/autoscaling/v2 | ||
| 1249 | k8s.io/client-go/applyconfigurations/autoscaling/v2beta1 | ||
| 1250 | k8s.io/client-go/applyconfigurations/autoscaling/v2beta2 | ||
| 1251 | k8s.io/client-go/applyconfigurations/batch/v1 | ||
| 1252 | k8s.io/client-go/applyconfigurations/batch/v1beta1 | ||
| 1253 | k8s.io/client-go/applyconfigurations/certificates/v1 | ||
| 1254 | k8s.io/client-go/applyconfigurations/certificates/v1alpha1 | ||
| 1255 | k8s.io/client-go/applyconfigurations/certificates/v1beta1 | ||
| 1256 | k8s.io/client-go/applyconfigurations/coordination/v1 | ||
| 1257 | k8s.io/client-go/applyconfigurations/coordination/v1alpha1 | ||
| 1258 | k8s.io/client-go/applyconfigurations/coordination/v1beta1 | ||
| 1259 | k8s.io/client-go/applyconfigurations/core/v1 | ||
| 1260 | k8s.io/client-go/applyconfigurations/discovery/v1 | ||
| 1261 | k8s.io/client-go/applyconfigurations/discovery/v1beta1 | ||
| 1262 | k8s.io/client-go/applyconfigurations/events/v1 | ||
| 1263 | k8s.io/client-go/applyconfigurations/events/v1beta1 | ||
| 1264 | k8s.io/client-go/applyconfigurations/extensions/v1beta1 | ||
| 1265 | k8s.io/client-go/applyconfigurations/flowcontrol/v1 | ||
| 1266 | k8s.io/client-go/applyconfigurations/flowcontrol/v1beta1 | ||
| 1267 | k8s.io/client-go/applyconfigurations/flowcontrol/v1beta2 | ||
| 1268 | k8s.io/client-go/applyconfigurations/flowcontrol/v1beta3 | ||
| 1269 | k8s.io/client-go/applyconfigurations/internal | ||
| 1270 | k8s.io/client-go/applyconfigurations/meta/v1 | ||
| 1271 | k8s.io/client-go/applyconfigurations/networking/v1 | ||
| 1272 | k8s.io/client-go/applyconfigurations/networking/v1alpha1 | ||
| 1273 | k8s.io/client-go/applyconfigurations/networking/v1beta1 | ||
| 1274 | k8s.io/client-go/applyconfigurations/node/v1 | ||
| 1275 | k8s.io/client-go/applyconfigurations/node/v1alpha1 | ||
| 1276 | k8s.io/client-go/applyconfigurations/node/v1beta1 | ||
| 1277 | k8s.io/client-go/applyconfigurations/policy/v1 | ||
| 1278 | k8s.io/client-go/applyconfigurations/policy/v1beta1 | ||
| 1279 | k8s.io/client-go/applyconfigurations/rbac/v1 | ||
| 1280 | k8s.io/client-go/applyconfigurations/rbac/v1alpha1 | ||
| 1281 | k8s.io/client-go/applyconfigurations/rbac/v1beta1 | ||
| 1282 | k8s.io/client-go/applyconfigurations/resource/v1alpha3 | ||
| 1283 | k8s.io/client-go/applyconfigurations/scheduling/v1 | ||
| 1284 | k8s.io/client-go/applyconfigurations/scheduling/v1alpha1 | ||
| 1285 | k8s.io/client-go/applyconfigurations/scheduling/v1beta1 | ||
| 1286 | k8s.io/client-go/applyconfigurations/storage/v1 | ||
| 1287 | k8s.io/client-go/applyconfigurations/storage/v1alpha1 | ||
| 1288 | k8s.io/client-go/applyconfigurations/storage/v1beta1 | ||
| 1289 | k8s.io/client-go/applyconfigurations/storagemigration/v1alpha1 | ||
| 1290 | k8s.io/client-go/discovery | ||
| 1291 | k8s.io/client-go/features | ||
| 1292 | k8s.io/client-go/gentype | ||
| 1293 | k8s.io/client-go/kubernetes | ||
| 1294 | k8s.io/client-go/kubernetes/scheme | ||
| 1295 | k8s.io/client-go/kubernetes/typed/admissionregistration/v1 | ||
| 1296 | k8s.io/client-go/kubernetes/typed/admissionregistration/v1alpha1 | ||
| 1297 | k8s.io/client-go/kubernetes/typed/admissionregistration/v1beta1 | ||
| 1298 | k8s.io/client-go/kubernetes/typed/apiserverinternal/v1alpha1 | ||
| 1299 | k8s.io/client-go/kubernetes/typed/apps/v1 | ||
| 1300 | k8s.io/client-go/kubernetes/typed/apps/v1beta1 | ||
| 1301 | k8s.io/client-go/kubernetes/typed/apps/v1beta2 | ||
| 1302 | k8s.io/client-go/kubernetes/typed/authentication/v1 | ||
| 1303 | k8s.io/client-go/kubernetes/typed/authentication/v1alpha1 | ||
| 1304 | k8s.io/client-go/kubernetes/typed/authentication/v1beta1 | ||
| 1305 | k8s.io/client-go/kubernetes/typed/authorization/v1 | ||
| 1306 | k8s.io/client-go/kubernetes/typed/authorization/v1beta1 | ||
| 1307 | k8s.io/client-go/kubernetes/typed/autoscaling/v1 | ||
| 1308 | k8s.io/client-go/kubernetes/typed/autoscaling/v2 | ||
| 1309 | k8s.io/client-go/kubernetes/typed/autoscaling/v2beta1 | ||
| 1310 | k8s.io/client-go/kubernetes/typed/autoscaling/v2beta2 | ||
| 1311 | k8s.io/client-go/kubernetes/typed/batch/v1 | ||
| 1312 | k8s.io/client-go/kubernetes/typed/batch/v1beta1 | ||
| 1313 | k8s.io/client-go/kubernetes/typed/certificates/v1 | ||
| 1314 | k8s.io/client-go/kubernetes/typed/certificates/v1alpha1 | ||
| 1315 | k8s.io/client-go/kubernetes/typed/certificates/v1beta1 | ||
| 1316 | k8s.io/client-go/kubernetes/typed/coordination/v1 | ||
| 1317 | k8s.io/client-go/kubernetes/typed/coordination/v1alpha1 | ||
| 1318 | k8s.io/client-go/kubernetes/typed/coordination/v1beta1 | ||
| 1319 | k8s.io/client-go/kubernetes/typed/core/v1 | ||
| 1320 | k8s.io/client-go/kubernetes/typed/discovery/v1 | ||
| 1321 | k8s.io/client-go/kubernetes/typed/discovery/v1beta1 | ||
| 1322 | k8s.io/client-go/kubernetes/typed/events/v1 | ||
| 1323 | k8s.io/client-go/kubernetes/typed/events/v1beta1 | ||
| 1324 | k8s.io/client-go/kubernetes/typed/extensions/v1beta1 | ||
| 1325 | k8s.io/client-go/kubernetes/typed/flowcontrol/v1 | ||
| 1326 | k8s.io/client-go/kubernetes/typed/flowcontrol/v1beta1 | ||
| 1327 | k8s.io/client-go/kubernetes/typed/flowcontrol/v1beta2 | ||
| 1328 | k8s.io/client-go/kubernetes/typed/flowcontrol/v1beta3 | ||
| 1329 | k8s.io/client-go/kubernetes/typed/networking/v1 | ||
| 1330 | k8s.io/client-go/kubernetes/typed/networking/v1alpha1 | ||
| 1331 | k8s.io/client-go/kubernetes/typed/networking/v1beta1 | ||
| 1332 | k8s.io/client-go/kubernetes/typed/node/v1 | ||
| 1333 | k8s.io/client-go/kubernetes/typed/node/v1alpha1 | ||
| 1334 | k8s.io/client-go/kubernetes/typed/node/v1beta1 | ||
| 1335 | k8s.io/client-go/kubernetes/typed/policy/v1 | ||
| 1336 | k8s.io/client-go/kubernetes/typed/policy/v1beta1 | ||
| 1337 | k8s.io/client-go/kubernetes/typed/rbac/v1 | ||
| 1338 | k8s.io/client-go/kubernetes/typed/rbac/v1alpha1 | ||
| 1339 | k8s.io/client-go/kubernetes/typed/rbac/v1beta1 | ||
| 1340 | k8s.io/client-go/kubernetes/typed/resource/v1alpha3 | ||
| 1341 | k8s.io/client-go/kubernetes/typed/scheduling/v1 | ||
| 1342 | k8s.io/client-go/kubernetes/typed/scheduling/v1alpha1 | ||
| 1343 | k8s.io/client-go/kubernetes/typed/scheduling/v1beta1 | ||
| 1344 | k8s.io/client-go/kubernetes/typed/storage/v1 | ||
| 1345 | k8s.io/client-go/kubernetes/typed/storage/v1alpha1 | ||
| 1346 | k8s.io/client-go/kubernetes/typed/storage/v1beta1 | ||
| 1347 | k8s.io/client-go/kubernetes/typed/storagemigration/v1alpha1 | ||
| 1348 | k8s.io/client-go/openapi | ||
| 1349 | k8s.io/client-go/pkg/apis/clientauthentication | ||
| 1350 | k8s.io/client-go/pkg/apis/clientauthentication/install | ||
| 1351 | k8s.io/client-go/pkg/apis/clientauthentication/v1 | ||
| 1352 | k8s.io/client-go/pkg/apis/clientauthentication/v1beta1 | ||
| 1353 | k8s.io/client-go/pkg/version | ||
| 1354 | k8s.io/client-go/plugin/pkg/client/auth/exec | ||
| 1355 | k8s.io/client-go/rest | ||
| 1356 | k8s.io/client-go/rest/watch | ||
| 1357 | k8s.io/client-go/tools/auth | ||
| 1358 | k8s.io/client-go/tools/clientcmd | ||
| 1359 | k8s.io/client-go/tools/clientcmd/api | ||
| 1360 | k8s.io/client-go/tools/clientcmd/api/latest | ||
| 1361 | k8s.io/client-go/tools/clientcmd/api/v1 | ||
| 1362 | k8s.io/client-go/tools/metrics | ||
| 1363 | k8s.io/client-go/tools/reference | ||
| 1364 | k8s.io/client-go/tools/remotecommand | ||
| 1365 | k8s.io/client-go/transport | ||
| 1366 | k8s.io/client-go/transport/spdy | ||
| 1367 | k8s.io/client-go/transport/websocket | ||
| 1368 | k8s.io/client-go/util/cert | ||
| 1369 | k8s.io/client-go/util/connrotation | ||
| 1370 | k8s.io/client-go/util/consistencydetector | ||
| 1371 | k8s.io/client-go/util/exec | ||
| 1372 | k8s.io/client-go/util/flowcontrol | ||
| 1373 | k8s.io/client-go/util/homedir | ||
| 1374 | k8s.io/client-go/util/keyutil | ||
| 1375 | k8s.io/client-go/util/watchlist | ||
| 1376 | k8s.io/client-go/util/workqueue | ||
| 1377 | # k8s.io/klog/v2 v2.130.1 | ||
| 1378 | ## explicit; go 1.18 | ||
| 1379 | k8s.io/klog/v2 | ||
| 1380 | k8s.io/klog/v2/internal/buffer | ||
| 1381 | k8s.io/klog/v2/internal/clock | ||
| 1382 | k8s.io/klog/v2/internal/dbg | ||
| 1383 | k8s.io/klog/v2/internal/serialize | ||
| 1384 | k8s.io/klog/v2/internal/severity | ||
| 1385 | k8s.io/klog/v2/internal/sloghandler | ||
| 1386 | # k8s.io/kube-openapi v0.0.0-20240228011516-70dd3763d340 | ||
| 1387 | ## explicit; go 1.20 | ||
| 1388 | k8s.io/kube-openapi/pkg/cached | ||
| 1389 | k8s.io/kube-openapi/pkg/common | ||
| 1390 | k8s.io/kube-openapi/pkg/handler3 | ||
| 1391 | k8s.io/kube-openapi/pkg/internal | ||
| 1392 | k8s.io/kube-openapi/pkg/internal/third_party/go-json-experiment/json | ||
| 1393 | k8s.io/kube-openapi/pkg/schemaconv | ||
| 1394 | k8s.io/kube-openapi/pkg/spec3 | ||
| 1395 | k8s.io/kube-openapi/pkg/util/proto | ||
| 1396 | k8s.io/kube-openapi/pkg/validation/spec | ||
| 1397 | # k8s.io/utils v0.0.0-20240711033017-18e509b52bc8 | ||
| 1398 | ## explicit; go 1.18 | ||
| 1399 | k8s.io/utils/clock | ||
| 1400 | k8s.io/utils/clock/testing | ||
| 1401 | k8s.io/utils/internal/third_party/forked/golang/net | ||
| 1402 | k8s.io/utils/net | ||
| 1403 | k8s.io/utils/ptr | ||
| 1404 | k8s.io/utils/strings/slices | ||
| 1405 | # sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd | ||
| 1406 | ## explicit; go 1.18 | ||
| 1407 | sigs.k8s.io/json | ||
| 1408 | sigs.k8s.io/json/internal/golang/encoding/json | ||
| 1409 | # sigs.k8s.io/structured-merge-diff/v4 v4.4.1 | ||
| 1410 | ## explicit; go 1.13 | ||
| 1411 | sigs.k8s.io/structured-merge-diff/v4/fieldpath | ||
| 1412 | sigs.k8s.io/structured-merge-diff/v4/merge | ||
| 1413 | sigs.k8s.io/structured-merge-diff/v4/schema | ||
| 1414 | sigs.k8s.io/structured-merge-diff/v4/typed | ||
| 1415 | sigs.k8s.io/structured-merge-diff/v4/value | ||
| 1416 | # sigs.k8s.io/yaml v1.4.0 | ||
| 1417 | ## explicit; go 1.12 | ||
| 1418 | sigs.k8s.io/yaml | ||
| 1419 | sigs.k8s.io/yaml/goyaml.v2 | ||
| 1420 | # tags.cncf.io/container-device-interface v0.8.1 | ||
| 1421 | ## explicit; go 1.20 | ||
| 1422 | tags.cncf.io/container-device-interface/pkg/parser | ||
diff --git a/recipes-containers/docker-compose/go-mod-cache.inc b/recipes-containers/docker-compose/go-mod-cache.inc new file mode 100644 index 00000000..ff165f05 --- /dev/null +++ b/recipes-containers/docker-compose/go-mod-cache.inc | |||
| @@ -0,0 +1,554 @@ | |||
| 1 | # Generated by oe-go-mod-fetcher.py v3.0.0 | ||
| 2 | # Module cache data for Go dependencies | ||
| 3 | # | ||
| 4 | # This file contains recipe-specific module metadata. | ||
| 5 | # The task implementations are in go-mod-vcs.bbclass. | ||
| 6 | |||
| 7 | inherit go-mod-vcs | ||
| 8 | |||
| 9 | # Module metadata for cache building (one module per line) | ||
| 10 | GO_MODULE_CACHE_DATA = '[\ | ||
| 11 | {"module":"github.com/go-sql-driver/mysql","version":"v1.3.0","vcs_hash":"732613cefc15b1adbb2c7aeb63e0c9bbf2708050a30ce547a2df82727da51371","timestamp":"2016-12-01T11:50:36Z","subdir":"","vcs_ref":"refs/tags/v1.3.0"},\ | ||
| 12 | {"module":"github.com/zclconf/go-cty","version":"v1.16.0","vcs_hash":"4a41029e32bba6cfa3bebf1dbd77b9cfeb835e4a332dcafd0b0525b94d2d830a","timestamp":"2025-01-03T19:46:54Z","subdir":"","vcs_ref":"refs/tags/v1.16.0"},\ | ||
| 13 | {"module":"github.com/julienschmidt/httprouter","version":"v1.2.0","vcs_hash":"2c4d0627c16989284c34f4435f85eda929435309b1f35e089deeada06cba6920","timestamp":"2018-07-15T16:18:54Z","subdir":"","vcs_ref":"refs/tags/v1.2.0"},\ | ||
| 14 | {"module":"github.com/julienschmidt/httprouter","version":"v1.3.0","vcs_hash":"14612f57dd95aeae83955a7b4f9b44d716f96bdef922732f059430cdff278e10","timestamp":"2019-09-29T23:21:22Z","subdir":"","vcs_ref":"refs/tags/v1.3.0"},\ | ||
| 15 | {"module":"github.com/rivo/uniseg","version":"v0.2.0","vcs_hash":"711d6ce77fb103240fb5d501f7548a0f9a576d48e783647cd7fed297fccb112a","timestamp":"2020-10-19T13:44:17Z","subdir":"","vcs_ref":"refs/tags/v0.2.0"},\ | ||
| 16 | {"module":"github.com/spiffe/go-spiffe/v2","version":"v2.1.1","vcs_hash":"50e6b0a1f0d8fd58a82256d93a304714c07f4319cdf00634ff6899ad9bb0fd66","timestamp":"2022-06-29T15:46:15Z","subdir":"v2","vcs_ref":"refs/tags/v2.1.1"},\ | ||
| 17 | {"module":"github.com/distribution/reference","version":"v0.6.0","vcs_hash":"ac2c94a9c45cfe172807163d3f9ae441bf0db0b30e528660d1b5db49678ed93a","timestamp":"2024-03-20T17:09:59Z","subdir":"","vcs_ref":"refs/tags/v0.6.0"},\ | ||
| 18 | {"module":"github.com/modern-go/reflect2","version":"v1.0.1","vcs_hash":"5f837a9261606850c86cb464d91848cb7e2e334be529f812891c080cfd881b9a","timestamp":"2018-07-18T01:23:57Z","subdir":"","vcs_ref":"refs/tags/v1.0.1"},\ | ||
| 19 | {"module":"github.com/modern-go/reflect2","version":"v1.0.2","vcs_hash":"21d04a5177cfeef214577aa3b5c90454aed60c2184b77a0fffa7922aa843666a","timestamp":"2021-09-11T02:10:30Z","subdir":"","vcs_ref":"refs/tags/v1.0.2"},\ | ||
| 20 | {"module":"github.com/modern-go/reflect2","version":"v0.0.0-20180701023420-4b7aa43c6742","vcs_hash":"8af4d54440b1b6703cd1b26845d1f5914958f01a18064501f7b77554b973b677","timestamp":"2018-07-01T02:34:20Z","subdir":"","vcs_ref":""},\ | ||
| 21 | {"module":"github.com/modern-go/concurrent","version":"v0.0.0-20180228061459-e0a39a4cb421","vcs_hash":"720429d876e0c333185ab19ebc83ff389edac9e5b459d07c74e7a18cae1c5b7a","timestamp":"2018-02-28T06:14:59Z","subdir":"","vcs_ref":""},\ | ||
| 22 | {"module":"github.com/modern-go/concurrent","version":"v0.0.0-20180306012644-bacd9c7ef1dd","vcs_hash":"09a996e0549b43adaeb1c40a8dc339563ed1a8dcc831e5cb074441a30d502d23","timestamp":"2018-03-06T01:26:44Z","subdir":"","vcs_ref":""},\ | ||
| 23 | {"module":"github.com/vmihailenco/msgpack/v5","version":"v5.3.5","vcs_hash":"02a4e9fd526e13beccb6c173e6c8238f8f47b51174abd08bdbce44868d7dca0b","timestamp":"2021-10-22T10:21:31Z","subdir":"v5","vcs_ref":"refs/tags/v5.3.5"},\ | ||
| 24 | {"module":"github.com/vmihailenco/tagparser/v2","version":"v2.0.0","vcs_hash":"d8db384ca98ad948fdee0547f574d6b990caa73543d9caca66b2a4b9b6e384a0","timestamp":"2021-02-03T10:04:46Z","subdir":"v2","vcs_ref":"refs/tags/v2.0.0"},\ | ||
| 25 | {"module":"github.com/spf13/jwalterweatherman","version":"v0.0.0-20141219030609-3d60171a6431","vcs_hash":"3516ad16d930d5653a48f59083d5a5851f1503e64d5f3e4f03dd5094d044ceba","timestamp":"2014-12-19T03:06:09Z","subdir":"","vcs_ref":""},\ | ||
| 26 | {"module":"github.com/spf13/cast","version":"v0.0.0-20150508191742-4d07383ffe94","vcs_hash":"61ca87f5a674dbb7719ca6806869cee44c68d3463ca0ee867270c61ef55016c5","timestamp":"2015-05-08T19:17:42Z","subdir":"","vcs_ref":""},\ | ||
| 27 | {"module":"github.com/spf13/cobra","version":"v1.9.1","vcs_hash":"b9eaed78e0a5f6d8926cb7b295c1304ebd0c79848e4fc0ad5e0ab83089f9081b","timestamp":"2025-02-16T23:42:04Z","subdir":"","vcs_ref":"refs/tags/v1.9.1"},\ | ||
| 28 | {"module":"github.com/spf13/cobra","version":"v0.0.1","vcs_hash":"a6573b02628ec0c919f90bba89f525eac2b0bda84d9dccdcb78b3f07c92b918e","timestamp":"2017-10-12T18:25:33Z","subdir":"","vcs_ref":"refs/tags/v0.0.1"},\ | ||
| 29 | {"module":"github.com/spf13/viper","version":"v0.0.0-20150530192845-be5ff3e4840c","vcs_hash":"6b7187b929229be5c3959df1ee113d9acd19aff47b973e42b64e50cdf8a0e740","timestamp":"2015-05-30T19:28:45Z","subdir":"","vcs_ref":""},\ | ||
| 30 | {"module":"github.com/spf13/pflag","version":"v1.0.6","vcs_hash":"b7f51c906eabb517613129455992f23a2f48e1c6186855b1b66ba9e619db1aa4","timestamp":"2025-01-09T00:37:54Z","subdir":"","vcs_ref":"refs/tags/v1.0.6"},\ | ||
| 31 | {"module":"github.com/spf13/pflag","version":"v1.0.0","vcs_hash":"160c6a820138c13e769bbec879294544287b8dfde6af77776f81536ff3f43df9","timestamp":"2017-05-08T18:44:08Z","subdir":"","vcs_ref":"refs/tags/v1.0.0"},\ | ||
| 32 | {"module":"github.com/jinzhu/gorm","version":"v0.0.0-20170222002820-5409931a1bb8","vcs_hash":"e51ea32193aeb2a5bfab92442113de19e13f387509f58c7979e704306087d5d2","timestamp":"2017-02-22T00:28:20Z","subdir":"","vcs_ref":""},\ | ||
| 33 | {"module":"github.com/jinzhu/now","version":"v1.1.1","vcs_hash":"3a2e9d8aa645efa2980908fbe342f3eb31a21421aeacd8a821f15d5775cb129f","timestamp":"2019-10-25T01:43:59Z","subdir":"","vcs_ref":"refs/tags/v1.1.1"},\ | ||
| 34 | {"module":"github.com/jinzhu/inflection","version":"v0.0.0-20170102125226-1c35d901db3d","vcs_hash":"3bf372ac0a41f41eb6c408c719a9f71d1a31a5cd8260a8135fa90085e5d6c0ce","timestamp":"2017-01-02T12:52:26Z","subdir":"","vcs_ref":""},\ | ||
| 35 | {"module":"github.com/json-iterator/go","version":"v1.1.12","vcs_hash":"bdb67d21e426f2274ff76d4829ac60348539016b1aa54fa98cfccc554be12f3b","timestamp":"2021-09-11T02:17:26Z","subdir":"","vcs_ref":"refs/tags/v1.1.12"},\ | ||
| 36 | {"module":"github.com/json-iterator/go","version":"v1.1.6","vcs_hash":"49dd68855c9609b742b2b0b4f38fc7310fe801de54098c1919a0a64c7a0df65f","timestamp":"2019-03-06T14:29:09Z","subdir":"","vcs_ref":"refs/tags/v1.1.6"},\ | ||
| 37 | {"module":"github.com/json-iterator/go","version":"v1.1.7","vcs_hash":"bc41490320f388f56ca605b559e022840691077e82ae0ad6dd62b7ea000f0603","timestamp":"2019-06-21T16:12:01Z","subdir":"","vcs_ref":"refs/tags/v1.1.7"},\ | ||
| 38 | {"module":"github.com/hailocab/go-hostpool","version":"v0.0.0-20160125115350-e80d13ce29ed","vcs_hash":"9c4bc4176e756c26e2cdff114a1c5597225ee9e1831b7404408096c667ad9031","timestamp":"2016-01-25T11:53:50Z","subdir":"","vcs_ref":""},\ | ||
| 39 | {"module":"github.com/vishvananda/netlink","version":"v1.3.1-0.20240922070040-084abd93d350","vcs_hash":"32176df318a695b68a17fb6ff9bd6f9d2fc3aaf8d469bb308bcdef86d6d0f563","timestamp":"2024-09-22T07:00:40Z","subdir":"","vcs_ref":""},\ | ||
| 40 | {"module":"github.com/vishvananda/netns","version":"v0.0.5","vcs_hash":"9f1ef5c3417729b4f24554f4b88d06d9e7cdeb771a5d62000cc1344bb1c985d8","timestamp":"2024-08-13T19:31:45Z","subdir":"","vcs_ref":"refs/tags/v0.0.5"},\ | ||
| 41 | {"module":"github.com/AlecAivazis/survey/v2","version":"v2.3.7","vcs_hash":"915e6ad876675eb96b188d35f754bc931b786c20b8e9ce8142ab278092473e7c","timestamp":"2022-12-08T15:41:06Z","subdir":"","vcs_ref":"refs/tags/v2.3.7"},\ | ||
| 42 | {"module":"github.com/konsorten/go-windows-terminal-sequences","version":"v1.0.1","vcs_hash":"2044bc70056f083f4686548aca8c8ea39dc8943c0d28ac6ef38cfa1fa5ee7fd0","timestamp":"2018-10-04T22:41:46Z","subdir":"","vcs_ref":"refs/tags/v1.0.1"},\ | ||
| 43 | {"module":"github.com/konsorten/go-windows-terminal-sequences","version":"v1.0.2","vcs_hash":"1987ad3f256034b9d0fc3590868bb91e717f53fd7ee6de10cff3948645fcd530","timestamp":"2019-02-26T22:47:05Z","subdir":"","vcs_ref":"refs/tags/v1.0.2"},\ | ||
| 44 | {"module":"github.com/stefanberger/go-pkcs11uri","version":"v0.0.0-20230803200340-78284954bff6","vcs_hash":"38fa201d7d655497d33723d139ffc3ec2ee78d3caab251015a1c3a5190f5e073","timestamp":"2023-08-03T20:03:40Z","subdir":"","vcs_ref":""},\ | ||
| 45 | {"module":"github.com/fxamacker/cbor/v2","version":"v2.7.0","vcs_hash":"4b59857912b9ea71beceb3684f965865607f578625ab12541c012ff811a120c9","timestamp":"2024-06-24T04:49:42Z","subdir":"","vcs_ref":"refs/tags/v2.7.0"},\ | ||
| 46 | {"module":"github.com/bmizerany/assert","version":"v0.0.0-20160611221934-b7ed37b82869","vcs_hash":"56f05fc81a59fa58a710a7972b156c07636f5719c2c74f5fe694e2cf49ca2576","timestamp":"2016-06-11T22:19:34Z","subdir":"","vcs_ref":""},\ | ||
| 47 | {"module":"github.com/bugsnag/bugsnag-go","version":"v1.0.5-0.20150529004307-13fd6b8acda0","vcs_hash":"fcdbd0f3bb5816415e92fba0ccef0363d33bb9f4dd92baf939f44c15d7ff15dc","timestamp":"2015-05-29T00:43:07Z","subdir":"","vcs_ref":""},\ | ||
| 48 | {"module":"github.com/bugsnag/osext","version":"v0.0.0-20130617224835-0dd3f918b21b","vcs_hash":"1e7b9a7b360bb8c03ff73c6b542ec4fc9da0aaa3491621e3f0709df81b41c883","timestamp":"2013-06-17T22:48:35Z","subdir":"","vcs_ref":""},\ | ||
| 49 | {"module":"github.com/bugsnag/panicwrap","version":"v0.0.0-20151223152923-e2c28503fcd0","vcs_hash":"262d5e88587cf547192faef1ff5a62313964f5302529d3b47078409890f656b8","timestamp":"2015-12-23T15:29:23Z","subdir":"","vcs_ref":""},\ | ||
| 50 | {"module":"github.com/prometheus/common","version":"v0.55.0","vcs_hash":"c773458e4153a1156de46f9b19a0c9e562195ea659bd1db2a371c7d3c9894d51","timestamp":"2024-06-26T13:34:48Z","subdir":"","vcs_ref":"refs/tags/v0.55.0"},\ | ||
| 51 | {"module":"github.com/prometheus/common","version":"v0.0.0-20180110214958-89604d197083","vcs_hash":"6fa554cea5eccb087d26785c06f579b8594dbf658c4a1288c2a78398383fed0f","timestamp":"2018-01-10T21:49:58Z","subdir":"","vcs_ref":""},\ | ||
| 52 | {"module":"github.com/prometheus/common","version":"v0.6.0","vcs_hash":"866ac186da10c19f814988a847f2b46d07b11981edcd6fec98970325a2803af4","timestamp":"2019-06-17T21:11:42Z","subdir":"","vcs_ref":"refs/tags/v0.6.0"},\ | ||
| 53 | {"module":"github.com/prometheus/common","version":"v0.4.1","vcs_hash":"892c75be05216c8a166e1dfe11c12f4563f5c0830e193268bcf9f7511010bcc7","timestamp":"2019-05-16T16:00:40Z","subdir":"","vcs_ref":"refs/tags/v0.4.1"},\ | ||
| 54 | {"module":"github.com/prometheus/client_model","version":"v0.0.0-20190129233127-fd36f4220a90","vcs_hash":"86bc615fe75b2ce98cd8c130b2a77b88c6ddb4a708b29321848472d9dd871940","timestamp":"2019-01-29T23:31:27Z","subdir":"","vcs_ref":""},\ | ||
| 55 | {"module":"github.com/prometheus/client_model","version":"v0.0.0-20171117100541-99fa1f4be8e5","vcs_hash":"b20883069672740ec9f8b88232be489d4e077ea06970f02fdd7280e57e070c26","timestamp":"2017-11-17T10:05:41Z","subdir":"","vcs_ref":""},\ | ||
| 56 | {"module":"github.com/prometheus/client_model","version":"v0.0.0-20180712105110-5c3871d89910","vcs_hash":"f6f51abd7b0f905d6b844652733802c893708c937a90eddb39855a9027e795ef","timestamp":"2018-07-12T10:51:10Z","subdir":"","vcs_ref":""},\ | ||
| 57 | {"module":"github.com/prometheus/client_model","version":"v0.6.1","vcs_hash":"caf181efa4396d95dac9ea7d6879b5ffa11a4c19d16fb9f0cdb4401b8bad274e","timestamp":"2024-03-26T17:08:02Z","subdir":"","vcs_ref":"refs/tags/v0.6.1"},\ | ||
| 58 | {"module":"github.com/prometheus/client_golang","version":"v0.9.1","vcs_hash":"5b7494e1e1baac9b65067e6f77ebb97bd97f8ea769f7093cc8cb23ca7d5ab93e","timestamp":"2018-11-03T14:23:28Z","subdir":"","vcs_ref":"refs/tags/v0.9.1"},\ | ||
| 59 | {"module":"github.com/prometheus/client_golang","version":"v1.20.5","vcs_hash":"1a0860e1de6c5f86bfdf0955c8c04423e5e5ff7aa2653d61019308999d3e38b5","timestamp":"2024-10-15T09:44:04Z","subdir":"","vcs_ref":"refs/tags/v1.20.5"},\ | ||
| 60 | {"module":"github.com/prometheus/client_golang","version":"v1.0.0","vcs_hash":"607ef8649c55f0756537573f8975af1867f26f93a7f97eb4ff594fc98c467f83","timestamp":"2019-06-15T20:44:27Z","subdir":"","vcs_ref":"refs/tags/v1.0.0"},\ | ||
| 61 | {"module":"github.com/prometheus/client_golang","version":"v1.1.0","vcs_hash":"4e44bd818fd07e6368ea60f26721c00dad401136a0e4742f5b167d5755f25168","timestamp":"2019-08-01T13:37:03Z","subdir":"","vcs_ref":"refs/tags/v1.1.0"},\ | ||
| 62 | {"module":"github.com/prometheus/procfs","version":"v0.0.2","vcs_hash":"99df38a3259da6d3172d2228188bc6bb7c0f8033d40d03436c89d71e754acf1e","timestamp":"2019-06-03T02:31:54Z","subdir":"","vcs_ref":"refs/tags/v0.0.2"},\ | ||
| 63 | {"module":"github.com/prometheus/procfs","version":"v0.15.1","vcs_hash":"9e485df4f8bbb8f868792732d9cf24f477d4d035cf6ee9fdf45dae2869f8e03f","timestamp":"2024-05-31T12:52:07Z","subdir":"","vcs_ref":"refs/tags/v0.15.1"},\ | ||
| 64 | {"module":"github.com/prometheus/procfs","version":"v0.0.0-20180125133057-cb4147076ac7","vcs_hash":"d6e1327c0735ef125d48a5e4da87d9573ffbc383c27ca670995682b478f20009","timestamp":"2018-01-25T13:30:57Z","subdir":"","vcs_ref":""},\ | ||
| 65 | {"module":"github.com/prometheus/procfs","version":"v0.0.3","vcs_hash":"300598e31c95698a764cc0dc7edf8fdfc8ab21a3296c0c5a34791af504e1a038","timestamp":"2019-06-25T16:31:10Z","subdir":"","vcs_ref":"refs/tags/v0.0.3"},\ | ||
| 66 | {"module":"github.com/prometheus/procfs","version":"v0.0.0-20181005140218-185b4288413d","vcs_hash":"6f855d6fe4ec2b6948e8c511b7c537693831aa71f3427a1625d4a9a01260e77d","timestamp":"2018-10-05T14:02:18Z","subdir":"","vcs_ref":""},\ | ||
| 67 | {"module":"github.com/compose-spec/compose-go/v2","version":"v2.4.9-0.20250302154753-e508c724a35f","vcs_hash":"426d122e0f41c57419ee9b7d322833ff268b19e9b1faf4ef89a7a688ddcf8b30","timestamp":"2025-03-02T15:47:53Z","subdir":"","vcs_ref":""},\ | ||
| 68 | {"module":"github.com/sasha-s/go-deadlock","version":"v0.3.5","vcs_hash":"fa29175221f16401d041954c9a07bc5aa8b90d585d480873eaa15a18b5fa8e6d","timestamp":"2024-08-14T18:50:39Z","subdir":"","vcs_ref":"refs/tags/v0.3.5"},\ | ||
| 69 | {"module":"github.com/syndtr/gocapability","version":"v0.0.0-20200815063812-42c35b437635","vcs_hash":"4480911d3d4457413aedb0be556a8ab2b064c475167177096e4dec65342505e9","timestamp":"2020-08-15T06:38:12Z","subdir":"","vcs_ref":""},\ | ||
| 70 | {"module":"github.com/alecthomas/units","version":"v0.0.0-20151022065526-2efee857e7cf","vcs_hash":"7a070bc84b00c7dd5b58f997285cd94232a9fb500b03e849c7be9017203e4d51","timestamp":"2015-10-22T06:55:26Z","subdir":"","vcs_ref":""},\ | ||
| 71 | {"module":"github.com/alecthomas/units","version":"v0.0.0-20211218093645-b94a6e3cc137","vcs_hash":"fd740bbc9bdec5b8bf13526eff2ee852c365b4c2a8feb66c89e2aa4b36a0d677","timestamp":"2021-12-18T09:36:45Z","subdir":"","vcs_ref":""},\ | ||
| 72 | {"module":"github.com/alecthomas/template","version":"v0.0.0-20160405071501-a0175ee3bccc","vcs_hash":"c18e6411468e7b9fa8d3eaacbe26c05c650393a6ed02eded4f8a729fcbdf3278","timestamp":"2016-04-05T07:15:01Z","subdir":"","vcs_ref":""},\ | ||
| 73 | {"module":"github.com/alecthomas/kingpin/v2","version":"v2.4.0","vcs_hash":"ae34e4803d18ba03ac4e70e84f5e737ec48634b725413ad5282fb01d6fc47dda","timestamp":"2023-09-30T22:59:49Z","subdir":"","vcs_ref":"refs/tags/v2.4.0"},\ | ||
| 74 | {"module":"github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp","version":"v1.25.0","vcs_hash":"be287d0c5f0cf7c8552c99e2b8be67e46cf1c24c93310324e134c8c36f9821e9","timestamp":"2024-11-01T14:13:49Z","subdir":"detectors/gcp","vcs_ref":"refs/tags/detectors/gcp/v1.25.0"},\ | ||
| 75 | {"module":"github.com/gogo/protobuf","version":"v1.1.1","vcs_hash":"a909192a924253d08799dcf162d9ceb6acdb194f1201fee2872972a79ca6668d","timestamp":"2018-07-17T14:19:46Z","subdir":"","vcs_ref":"refs/tags/v1.1.1"},\ | ||
| 76 | {"module":"github.com/gogo/protobuf","version":"v1.0.0","vcs_hash":"cea9fa9f6f83d88736f95389bf744ac714093c67292cefcf1607497c27a1dc2b","timestamp":"2018-02-02T16:19:00Z","subdir":"","vcs_ref":"refs/tags/v1.0.0"},\ | ||
| 77 | {"module":"github.com/gogo/protobuf","version":"v1.3.2","vcs_hash":"e07d7c0e03a0e2831dd973581be0944984030693bc73f0b67a64e53b4c690635","timestamp":"2021-01-10T08:01:47Z","subdir":"","vcs_ref":"refs/tags/v1.3.2"},\ | ||
| 78 | {"module":"github.com/antihax/optional","version":"v1.0.0","vcs_hash":"535a79fbd6ec4a2d00a2eaeb938554011f822f57d36bc924215af19f4bab0697","timestamp":"2019-10-10T23:37:20Z","subdir":"","vcs_ref":"refs/tags/v1.0.0"},\ | ||
| 79 | {"module":"github.com/eiannone/keyboard","version":"v0.0.0-20220611211555-0d226195f203","vcs_hash":"c7ad216919ed9d1db40a1a79054fb70019f12275ddb216094b1aefbdd44e8744","timestamp":"2022-06-11T21:15:55Z","subdir":"","vcs_ref":""},\ | ||
| 80 | {"module":"github.com/mwitkow/go-conntrack","version":"v0.0.0-20161129095857-cc309e4a2223","vcs_hash":"0ff4a51de5f43065c774026c897e99f6a207c66edef943350fa92176ccaf3982","timestamp":"2016-11-29T09:58:57Z","subdir":"","vcs_ref":""},\ | ||
| 81 | {"module":"github.com/mwitkow/go-conntrack","version":"v0.0.0-20190716064945-2f068394615f","vcs_hash":"0c95da896ecaf67638f45eea2282c2c840e57fd5bef90b1316645fe86914c177","timestamp":"2019-07-16T06:49:45Z","subdir":"","vcs_ref":""},\ | ||
| 82 | {"module":"github.com/hinshun/vt10x","version":"v0.0.0-20220119200601-820417d04eec","vcs_hash":"7a79a11a6f7d736423313fcb1bc2d2203d7d9e66baa86d1f4440c872a4349d6d","timestamp":"2022-01-19T20:06:01Z","subdir":"","vcs_ref":""},\ | ||
| 83 | {"module":"github.com/jmespath/go-jmespath","version":"v0.4.0","vcs_hash":"c3c97b2a21733410cf7bdf451fa4187fbd4cd760335a06d42b48140ef8934d6b","timestamp":"2020-09-18T23:53:51Z","subdir":"","vcs_ref":"refs/tags/v0.4.0"},\ | ||
| 84 | {"module":"github.com/google/go-cmp","version":"v0.7.0","vcs_hash":"460ed71bde70f3a932cad8d9044d3f12302bf8b6e95353bd17c44189712e2763","timestamp":"2025-01-14T18:15:44Z","subdir":"","vcs_ref":"refs/tags/v0.7.0"},\ | ||
| 85 | {"module":"github.com/google/go-cmp","version":"v0.3.0","vcs_hash":"ae58fd0d54f7194cd02ff68b9600f09892901604ebd985b881c9860505e91785","timestamp":"2019-03-12T03:24:27Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\ | ||
| 86 | {"module":"github.com/google/go-cmp","version":"v0.5.9","vcs_hash":"fd14e45645e0977841a8f51fbe51cc4ca8444dbd2b4e5eddd91172a3805102fa","timestamp":"2022-09-02T22:41:56Z","subdir":"","vcs_ref":"refs/tags/v0.5.9"},\ | ||
| 87 | {"module":"github.com/google/btree","version":"v1.0.1","vcs_hash":"671dad8c21d0328f28b6a6b60eacb7a19b5fd139864911eaad2661310e076d52","timestamp":"2019-10-16T16:15:28Z","subdir":"","vcs_ref":"refs/tags/v1.0.1"},\ | ||
| 88 | {"module":"github.com/google/uuid","version":"v1.6.0","vcs_hash":"1743dd7863ebf20fb946ec26a0525a27c91536f2d01acf863b0a99566cd8f3e5","timestamp":"2024-01-23T18:54:04Z","subdir":"","vcs_ref":"refs/tags/v1.6.0"},\ | ||
| 89 | {"module":"github.com/google/pprof","version":"v0.0.0-20240525223248-4bfdf5a9a2af","vcs_hash":"c033cc9a13c1d83fa014636764ddba491707076d34caba553fec1eb1cdbcaf5d","timestamp":"2024-05-25T22:32:48Z","subdir":"","vcs_ref":""},\ | ||
| 90 | {"module":"github.com/google/gofuzz","version":"v1.2.0","vcs_hash":"3937010173fd05b3f7349b62cbf84ac3b69011d5b5f248f16416a9e481943f54","timestamp":"2020-08-04T22:43:24Z","subdir":"","vcs_ref":"refs/tags/v1.2.0"},\ | ||
| 91 | {"module":"github.com/google/gofuzz","version":"v1.0.0","vcs_hash":"3b10b16f3e547f9036aa468f5a846c1e873d084728258048c32c4afc2a1bb2cf","timestamp":"2019-04-08T17:44:45Z","subdir":"","vcs_ref":"refs/tags/v1.0.0"},\ | ||
| 92 | {"module":"github.com/google/shlex","version":"v0.0.0-20191202100458-e7afc7fbc510","vcs_hash":"6317e931b780de46077449706d69a38f426197406a504d848e3500a0d06b7299","timestamp":"2019-12-02T10:04:58Z","subdir":"","vcs_ref":""},\ | ||
| 93 | {"module":"github.com/google/certificate-transparency-go","version":"v1.0.10-0.20180222191210-5ab67e519c93","vcs_hash":"0fd69fa049b1061cd5c090184fa587afb10ae78ca64762f4b915f363cf226599","timestamp":"2018-02-22T19:12:10Z","subdir":"","vcs_ref":""},\ | ||
| 94 | {"module":"github.com/google/gnostic-models","version":"v0.6.8","vcs_hash":"a304c0a753953523af06b9321faed7ab4d213739e5e52e0ed150794d203e5c82","timestamp":"2022-04-12T22:34:26Z","subdir":"","vcs_ref":"refs/tags/v0.6.8"},\ | ||
| 95 | {"module":"github.com/go-logfmt/logfmt","version":"v0.3.0","vcs_hash":"87ea6a9e239f17f704d8539912edf62249556b50b823ce9b513c614350572831","timestamp":"2016-11-15T14:25:13Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\ | ||
| 96 | {"module":"github.com/go-logfmt/logfmt","version":"v0.4.0","vcs_hash":"ba8d08b7a7c3160ce690a9887ce68303c6e395cb41e8669e5b9c7423dbb2e6d8","timestamp":"2018-11-22T01:56:15Z","subdir":"","vcs_ref":"refs/tags/v0.4.0"},\ | ||
| 97 | {"module":"github.com/go-logfmt/logfmt","version":"v0.5.1","vcs_hash":"ef9468529842dc23f8307228f579820bee78d0b8657bb841836b93e32fe76b18","timestamp":"2021-08-18T17:45:36Z","subdir":"","vcs_ref":"refs/tags/v0.5.1"},\ | ||
| 98 | {"module":"github.com/tchap/go-patricia/v2","version":"v2.3.1","vcs_hash":"03e71ec665c4694ba8586be9a19f38ddeedf022149451164fb4721f599f9dc7d","timestamp":"2021-02-26T12:09:12Z","subdir":"v2","vcs_ref":"refs/tags/v2.3.1"},\ | ||
| 99 | {"module":"github.com/bitly/go-hostpool","version":"v0.1.0","vcs_hash":"4fa48fb597b43d9ba89aa477912e73c8b6130aa0cda05b209201b071f25d10a4","timestamp":"2019-12-24T19:37:25Z","subdir":"","vcs_ref":"refs/tags/v0.1.0"},\ | ||
| 100 | {"module":"github.com/bitly/go-simplejson","version":"v0.5.0","vcs_hash":"c56b9fa4257469037ce41f652467339083e21d8cf63b420f7051f689474dcb9e","timestamp":"2015-09-15T16:53:35Z","subdir":"","vcs_ref":"refs/tags/v0.5.0"},\ | ||
| 101 | {"module":"github.com/package-url/packageurl-go","version":"v0.1.1","vcs_hash":"69e2d03e1f7870cf593ec577931a0c5fd11729307d2e00a0deabe610548fcd48","timestamp":"2023-06-19T06:37:43Z","subdir":"","vcs_ref":"refs/tags/v0.1.1"},\ | ||
| 102 | {"module":"github.com/serialx/hashring","version":"v0.0.0-20200727003509-22c0c7ab6b1b","vcs_hash":"9ad302311a59b7a00732c9d2e738e872440b07b223df6f9dc7104acafedb16ee","timestamp":"2020-07-27T00:35:09Z","subdir":"","vcs_ref":""},\ | ||
| 103 | {"module":"github.com/census-instrumentation/opencensus-proto","version":"v0.4.1","vcs_hash":"50810a84fdec2d9c8210c7c5c4280d5911adb9a7bfd62c792a0353ebe06863ab","timestamp":"2022-09-23T17:40:20Z","subdir":"","vcs_ref":"refs/tags/v0.4.1"},\ | ||
| 104 | {"module":"github.com/shibumi/go-pathspec","version":"v1.3.0","vcs_hash":"7d6286b09783f24f2ba2db51c2fd61c197637cee9cd88b2e7576338aa579825f","timestamp":"2021-10-17T22:38:10Z","subdir":"","vcs_ref":"refs/tags/v1.3.0"},\ | ||
| 105 | {"module":"github.com/fvbommel/sortorder","version":"v1.1.0","vcs_hash":"f31f7baba1030efc67be0125d6ea3670572de4cf9ef4162f66c110baedf2fc25","timestamp":"2023-03-18T20:06:58Z","subdir":"","vcs_ref":"refs/tags/v1.1.0"},\ | ||
| 106 | {"module":"github.com/fsnotify/fsnotify","version":"v1.7.0","vcs_hash":"611e6edb829e44642e664d56f4e7b3828ea1a4ca48f28bb89ca53c1c9010ecbb","timestamp":"2023-10-22T06:24:00Z","subdir":"","vcs_ref":"refs/tags/v1.7.0"},\ | ||
| 107 | {"module":"github.com/fsnotify/fsnotify","version":"v1.4.7","vcs_hash":"cc44f7bf337eee80812ff411465b4e87c78887003ae940c1b27adb151bbed7d2","timestamp":"2018-01-10T05:33:47Z","subdir":"","vcs_ref":"refs/tags/v1.4.7"},\ | ||
| 108 | {"module":"github.com/fsnotify/fsevents","version":"v0.2.0","vcs_hash":"fae61401b9b33d2f4bc3fb5a8898dd22623c392e69010b28dd2577454207e33b","timestamp":"2024-05-14T13:38:25Z","subdir":"","vcs_ref":"refs/tags/v0.2.0"},\ | ||
| 109 | {"module":"github.com/morikuni/aec","version":"v1.0.0","vcs_hash":"ed63d58cf112e0b59a076da22b09a7543de7421c2457060482db3ad8303454e1","timestamp":"2017-01-13T03:34:06Z","subdir":"","vcs_ref":"refs/tags/v1.0.0"},\ | ||
| 110 | {"module":"github.com/urfave/cli","version":"v1.22.16","vcs_hash":"496cd8a1b24daac973dcb806ca432503824f1918d2978a8fc9dc8b241b3efe5f","timestamp":"2024-10-13T12:44:24Z","subdir":"","vcs_ref":"refs/tags/v1.22.16"},\ | ||
| 111 | {"module":"github.com/urfave/cli/v2","version":"v2.27.5","vcs_hash":"3c3ec0c2b70de8c2c14c5dbc22066e299d3110898065435d9f3e1662fe72e90d","timestamp":"2024-10-13T12:44:45Z","subdir":"","vcs_ref":"refs/tags/v2.27.5"},\ | ||
| 112 | {"module":"github.com/pkg/profile","version":"v1.7.0","vcs_hash":"514b8b4f0dcd1ab4c812208028d6ffbd8ac9873c6f9fa22227d0537fe9f6af87","timestamp":"2022-10-20T01:34:01Z","subdir":"","vcs_ref":"refs/tags/v1.7.0"},\ | ||
| 113 | {"module":"github.com/pkg/browser","version":"v0.0.0-20240102092130-5ac0b6a4141c","vcs_hash":"10a8ed3a78b0663b7f54101de61f0c1b24ac55185382242b62e593e0b344d42e","timestamp":"2024-01-02T09:21:30Z","subdir":"","vcs_ref":""},\ | ||
| 114 | {"module":"github.com/pkg/errors","version":"v0.8.0","vcs_hash":"ea5c82f11a22b952cd732b93d2e8a599298017272296a9232e4a97e26b3f3f27","timestamp":"2016-09-29T01:48:01Z","subdir":"","vcs_ref":"refs/tags/v0.8.0"},\ | ||
| 115 | {"module":"github.com/pkg/errors","version":"v0.9.1","vcs_hash":"58e525151c02acebc6662bf19060e7ee1112335787f1ffb059ea8d46a3164e5e","timestamp":"2020-01-14T19:47:44Z","subdir":"","vcs_ref":"refs/tags/v0.9.1"},\ | ||
| 116 | {"module":"github.com/pkg/errors","version":"v0.8.1","vcs_hash":"05a9ae48ad2a27ee2ace909fb6dfe443196ef4ba6b92bd0e3d2f6a9460fc8fea","timestamp":"2019-01-03T06:52:24Z","subdir":"","vcs_ref":"refs/tags/v0.8.1"},\ | ||
| 117 | {"module":"github.com/hanwen/go-fuse/v2","version":"v2.6.3","vcs_hash":"93e9510ac26708545aafce1b6444107f503901cfe4934566520d53a63dad9de1","timestamp":"2024-10-31T07:00:57Z","subdir":"","vcs_ref":"refs/tags/v2.6.3"},\ | ||
| 118 | {"module":"github.com/xeipuuv/gojsonpointer","version":"v0.0.0-20180127040702-4e3ac2762d5f","vcs_hash":"f35df1afe406fbe96a9200b2fa5c736db1be1c70f292d9e69247d35fa318ec32","timestamp":"2018-01-27T04:07:02Z","subdir":"","vcs_ref":""},\ | ||
| 119 | {"module":"github.com/xeipuuv/gojsonpointer","version":"v0.0.0-20190905194746-02993c407bfb","vcs_hash":"4b0abfc7aeea962cf44836059fabc8aebf20db8d2e9ce317db13d42ade75c19f","timestamp":"2019-09-05T19:47:46Z","subdir":"","vcs_ref":""},\ | ||
| 120 | {"module":"github.com/xeipuuv/gojsonreference","version":"v0.0.0-20180127040603-bd5ef7bd5415","vcs_hash":"6cce19ebe3be9e8f13d8b3c5090971f010f3f3cda349fa51197c974450d133ee","timestamp":"2018-01-27T04:06:03Z","subdir":"","vcs_ref":""},\ | ||
| 121 | {"module":"github.com/xeipuuv/gojsonschema","version":"v1.2.0","vcs_hash":"21478840c17d30281eb0f8b90406d132c72274e71f74dcbe3dfb4fa4236df77c","timestamp":"2019-10-15T14:03:57Z","subdir":"","vcs_ref":"refs/tags/v1.2.0"},\ | ||
| 122 | {"module":"github.com/xrash/smetrics","version":"v0.0.0-20240521201337-686a1a2994c1","vcs_hash":"39f621debd197a5e0bcda4514cb54d787e4e443693f317363918ceb70d590944","timestamp":"2024-05-21T20:13:37Z","subdir":"","vcs_ref":""},\ | ||
| 123 | {"module":"github.com/beorn7/perks","version":"v1.0.0","vcs_hash":"8dd89f9e3fbe68a081d37f37c6deba6f0c099069502b162148d0ede72f822a95","timestamp":"2019-04-14T22:11:40Z","subdir":"","vcs_ref":"refs/tags/v1.0.0"},\ | ||
| 124 | {"module":"github.com/beorn7/perks","version":"v1.0.1","vcs_hash":"c20c7a1c80a243f687008566bc9b8a9517bdf7e3a4f9db15e17160ad20568e9d","timestamp":"2019-07-31T12:00:54Z","subdir":"","vcs_ref":"refs/tags/v1.0.1"},\ | ||
| 125 | {"module":"github.com/beorn7/perks","version":"v0.0.0-20150223135152-b965b613227f","vcs_hash":"bdca05a2672eea03731c25222db95561d1fad3ee6ccede612b305abb27b074ac","timestamp":"2015-02-23T13:51:52Z","subdir":"","vcs_ref":""},\ | ||
| 126 | {"module":"github.com/beorn7/perks","version":"v0.0.0-20180321164747-3a771d992973","vcs_hash":"b05d3659d70127d95ec0b6f7d3aa9b87a50009706e0919be0913fc61dc69e093","timestamp":"2018-03-21T16:47:47Z","subdir":"","vcs_ref":""},\ | ||
| 127 | {"module":"github.com/kylelemons/godebug","version":"v1.1.0","vcs_hash":"070cd2056d33748c34b60876b93e86d0f8bcfa86a4dee28d6da2a6f3aaea66ac","timestamp":"2019-05-05T01:16:37Z","subdir":"","vcs_ref":"refs/tags/v1.1.0"},\ | ||
| 128 | {"module":"github.com/mxk/go-flowrate","version":"v0.0.0-20140419014527-cca7078d478f","vcs_hash":"12c25c020a66ecc07c7c90ff8a8793d5462f3f4e58338c9b36012b25b4ed81b8","timestamp":"2014-04-19T01:45:27Z","subdir":"","vcs_ref":""},\ | ||
| 129 | {"module":"github.com/go-stack/stack","version":"v1.8.0","vcs_hash":"b165c1e0ccf05d91f62b1ae66d83365c5d96f152e956573fb16040ab15370424","timestamp":"2018-08-26T13:48:48Z","subdir":"","vcs_ref":"refs/tags/v1.8.0"},\ | ||
| 130 | {"module":"github.com/creack/pty","version":"v1.1.24","vcs_hash":"a723ba2e04aa95258b42d73ca8ebfd0b4170ac8a314767e9e3f78318484bb93b","timestamp":"2024-10-31T18:56:50Z","subdir":"","vcs_ref":"refs/tags/v1.1.24"},\ | ||
| 131 | {"module":"github.com/creack/pty","version":"v1.1.17","vcs_hash":"2ae6946e9609d4012331fdd2a2f73d351d9fb15432db00d88ab4c508585a6d96","timestamp":"2021-10-16T17:41:19Z","subdir":"","vcs_ref":"refs/tags/v1.1.17"},\ | ||
| 132 | {"module":"github.com/creack/pty","version":"v1.1.9","vcs_hash":"90ab694bdf1c87cb7742c9e23a91280fd693f673a912c6ed840ff28d25b2d46e","timestamp":"2019-09-25T15:36:33Z","subdir":"","vcs_ref":"refs/tags/v1.1.9"},\ | ||
| 133 | {"module":"github.com/erikstmartin/go-testdb","version":"v0.0.0-20160219214506-8d10e4a1bae5","vcs_hash":"94bdb322899f10502ca21756a20886b09fe0f8e8c7389a50bb21c7a2deb2d047","timestamp":"2016-02-19T21:45:06Z","subdir":"","vcs_ref":""},\ | ||
| 134 | {"module":"github.com/mattn/go-colorable","version":"v0.1.13","vcs_hash":"6a55366e9e60cc108e1e5a2ed7de5f7a45982abaf5a3d3a6b7acc8b4cfce973b","timestamp":"2022-08-15T05:53:26Z","subdir":"","vcs_ref":"refs/tags/v0.1.13"},\ | ||
| 135 | {"module":"github.com/mattn/go-colorable","version":"v0.1.2","vcs_hash":"c71b6f3acd50d510992b046a557833b9b03a5c1f131137523bd7a638b59e233e","timestamp":"2019-05-24T00:26:58Z","subdir":"","vcs_ref":"refs/tags/v0.1.2"},\ | ||
| 136 | {"module":"github.com/mattn/go-sqlite3","version":"v1.6.0","vcs_hash":"0bc060447a84109d178e936cf0287c198c9a1bcbf25d74362b7df7427a44fdda","timestamp":"2018-01-12T08:58:26Z","subdir":"","vcs_ref":"refs/tags/v1.6.0"},\ | ||
| 137 | {"module":"github.com/mattn/go-isatty","version":"v0.0.8","vcs_hash":"4963e35bcc64525b440c791c0eb22045df1ebb90bbcdf56256950a814d09f425","timestamp":"2019-05-22T01:25:13Z","subdir":"","vcs_ref":"refs/tags/v0.0.8"},\ | ||
| 138 | {"module":"github.com/mattn/go-isatty","version":"v0.0.17","vcs_hash":"0806649a7916051776caa365ddfead985a0e796c337935c6d4684980e07dcabe","timestamp":"2022-12-29T03:52:09Z","subdir":"","vcs_ref":"refs/tags/v0.0.17"},\ | ||
| 139 | {"module":"github.com/mattn/go-isatty","version":"v0.0.16","vcs_hash":"f79b0a50499696515d01ee34055f66e2f63d620014b0df96e0086e89846966e7","timestamp":"2022-08-15T05:52:20Z","subdir":"","vcs_ref":"refs/tags/v0.0.16"},\ | ||
| 140 | {"module":"github.com/mattn/go-runewidth","version":"v0.0.15","vcs_hash":"06d33c3205d863c169e841e4b5af4ec9ccb16e6968fd491facb8c17ba56bb7b7","timestamp":"2023-07-23T16:42:41Z","subdir":"","vcs_ref":"refs/tags/v0.0.15"},\ | ||
| 141 | {"module":"github.com/mattn/go-shellwords","version":"v1.0.12","vcs_hash":"3e9de7967c04a07a314669e56b72110ac8eee96a9646f5b9863c709575abe8d1","timestamp":"2021-06-04T13:07:19Z","subdir":"","vcs_ref":"refs/tags/v1.0.12"},\ | ||
| 142 | {"module":"github.com/sirupsen/logrus","version":"v1.0.6","vcs_hash":"e2b60414d6cf051bc156482dc25c0e442f2dcbaf755db11f95b165196e3a417d","timestamp":"2018-07-21T07:00:01Z","subdir":"","vcs_ref":"refs/tags/v1.0.6"},\ | ||
| 143 | {"module":"github.com/sirupsen/logrus","version":"v1.4.1","vcs_hash":"e7dadc55f17d7e5dd646b8a1408f0d5dc551bfbbbb8de273a6b6ceb927a05353","timestamp":"2019-04-02T16:14:07Z","subdir":"","vcs_ref":"refs/tags/v1.4.1"},\ | ||
| 144 | {"module":"github.com/sirupsen/logrus","version":"v1.2.0","vcs_hash":"f662f3bd248d63f5671cbf660c0fd3e5c3fc5389fca023c018b7c8fa63d75263","timestamp":"2018-11-01T07:39:56Z","subdir":"","vcs_ref":"refs/tags/v1.2.0"},\ | ||
| 145 | {"module":"github.com/sirupsen/logrus","version":"v1.9.3","vcs_hash":"a1230aee5f8f1a866199cbec636d1525e00a9b13cf2fe0023dcf6b874c525014","timestamp":"2023-05-21T12:59:35Z","subdir":"","vcs_ref":"refs/tags/v1.9.3"},\ | ||
| 146 | {"module":"github.com/theupdateframework/notary","version":"v0.7.0","vcs_hash":"0e83ed3cbdbbbd63c9ab62dc40651621a386fcaf575326772f2912b1279bfb2b","timestamp":"2021-01-14T13:39:57Z","subdir":"","vcs_ref":"refs/tags/v0.7.0"},\ | ||
| 147 | {"module":"github.com/AzureAD/microsoft-authentication-library-for-go","version":"v1.3.2","vcs_hash":"ee4456dd08dc4761e548cc44d4ebab6fe47b83b1a829a081c2437abd674498fc","timestamp":"2024-11-08T11:14:33Z","subdir":"","vcs_ref":"refs/tags/v1.3.2"},\ | ||
| 148 | {"module":"github.com/otiai10/copy","version":"v1.14.1","vcs_hash":"6f52336953491d169a014c4906e3f17a4c78b425ca26804ae779c6167516d7d0","timestamp":"2025-01-05T09:29:22Z","subdir":"","vcs_ref":"refs/tags/v1.14.1"},\ | ||
| 149 | {"module":"github.com/otiai10/mint","version":"v1.6.3","vcs_hash":"8e5429bf94b80c2f4aae87b33f4b4dd03b9d8a978004bf74b1fe4042dc0b5fad","timestamp":"2023-07-01T08:53:10Z","subdir":"","vcs_ref":"refs/tags/v1.6.3"},\ | ||
| 150 | {"module":"github.com/in-toto/in-toto-golang","version":"v0.5.0","vcs_hash":"7d544f7dc777f982bd6692662edefe8dc45ef1902fea4d1d8f2e3961898159f6","timestamp":"2022-10-19T01:41:52Z","subdir":"","vcs_ref":"refs/tags/v0.5.0"},\ | ||
| 151 | {"module":"github.com/Masterminds/semver/v3","version":"v3.2.1","vcs_hash":"06a2e404550af8289dddf14a03f5ed0f2de99fa87c449e6aa486f068fcfca24e","timestamp":"2023-04-10T14:11:21Z","subdir":"","vcs_ref":"refs/tags/v3.2.1"},\ | ||
| 152 | {"module":"github.com/envoyproxy/go-control-plane","version":"v0.13.1","vcs_hash":"8cb6f07cc6cc729c5452d8664e1688bbe0abee3015dd5d2d76804c7d50cd0660","timestamp":"2024-10-15T18:00:46Z","subdir":"","vcs_ref":"refs/tags/v0.13.1"},\ | ||
| 153 | {"module":"github.com/envoyproxy/protoc-gen-validate","version":"v1.1.0","vcs_hash":"ecd89a579c798e2583479ead808e21e18beb78976348081588cdcfcf79ec8e8a","timestamp":"2024-08-02T22:50:14Z","subdir":"","vcs_ref":"refs/tags/v1.1.0"},\ | ||
| 154 | {"module":"github.com/armon/circbuf","version":"v0.0.0-20190214190532-5111143e8da2","vcs_hash":"f44b726eafbedd3c7d5723dfd9850375946a0b78000629a3558aacfbb013cecb","timestamp":"2019-02-14T19:05:32Z","subdir":"","vcs_ref":""},\ | ||
| 155 | {"module":"github.com/armon/go-socks5","version":"v0.0.0-20160902184237-e75332964ef5","vcs_hash":"e611fb2e9fe86f2cb19c89c1dc37c0ad6b5656135015f1466fb20c934e3dc531","timestamp":"2016-09-02T18:42:37Z","subdir":"","vcs_ref":""},\ | ||
| 156 | {"module":"github.com/coreos/go-systemd/v22","version":"v22.5.0","vcs_hash":"1240ab68de5778e9c43b2943db956bd157fab582cec5363f953cb5c72f2e445b","timestamp":"2022-11-07T13:52:27Z","subdir":"","vcs_ref":"refs/tags/v22.5.0"},\ | ||
| 157 | {"module":"github.com/mdlayher/socket","version":"v0.4.1","vcs_hash":"9c6cb75836d53715b547a2b7260474a523540fec4e687f790069f58f7264c418","timestamp":"2023-04-26T18:58:44Z","subdir":"","vcs_ref":"refs/tags/v0.4.1"},\ | ||
| 158 | {"module":"github.com/mdlayher/vsock","version":"v1.2.1","vcs_hash":"a7b2ec13026e78d41b91e1e452aab0a78ae155b70966624ec8e5e52ba56a0b08","timestamp":"2023-04-29T14:19:24Z","subdir":"","vcs_ref":"refs/tags/v1.2.1"},\ | ||
| 159 | {"module":"github.com/mailru/easyjson","version":"v0.7.7","vcs_hash":"5b802334c301c91bd13cee6264caa8c327300bfc16173c6074fc315244620dd8","timestamp":"2021-02-06T19:00:08Z","subdir":"","vcs_ref":"refs/tags/v0.7.7"},\ | ||
| 160 | {"module":"github.com/agext/levenshtein","version":"v1.2.3","vcs_hash":"f4186a1dba20fb3f51b9daaf116c010f10b94a0eb8114b084e25bb3b5649ecf6","timestamp":"2020-03-12T21:09:59Z","subdir":"","vcs_ref":"refs/tags/v1.2.3"},\ | ||
| 161 | {"module":"github.com/AdaLogics/go-fuzz-headers","version":"v0.0.0-20240806141605-e8a1dd7889d6","vcs_hash":"618ef3cd1ed01872674845eae25e7d6a50a3d70b49881ccd500327b0778fedb9","timestamp":"2024-08-06T14:16:05Z","subdir":"","vcs_ref":""},\ | ||
| 162 | {"module":"github.com/dvsekhvalnov/jose2go","version":"v0.0.0-20170216131308-f21a8cedbbae","vcs_hash":"3bed371de2aaaf0cbb9c346c5f01b8240e14c9e194179639d31b29aef3704b71","timestamp":"2017-02-16T13:13:08Z","subdir":"","vcs_ref":""},\ | ||
| 163 | {"module":"github.com/opencontainers/runtime-spec","version":"v1.2.0","vcs_hash":"5dd5e40a73eece5da452e07f7921fde1940d6b484a76b9c3203be7a9a0807cb0","timestamp":"2024-01-26T12:55:39Z","subdir":"","vcs_ref":"refs/tags/v1.2.0"},\ | ||
| 164 | {"module":"github.com/opencontainers/go-digest","version":"v0.0.0-20170106003457-a6d0ee40d420","vcs_hash":"023b07658f561af4e33906504bb1dff6d66e7a4b8ef99fcf0927e6d101be98bd","timestamp":"2017-01-06T00:34:57Z","subdir":"","vcs_ref":""},\ | ||
| 165 | {"module":"github.com/opencontainers/go-digest","version":"v1.0.0","vcs_hash":"1a4d20c74c510ca00ecb86a3379c151579ed626508723e74a394480a71a0af24","timestamp":"2020-05-14T01:46:00Z","subdir":"","vcs_ref":"refs/tags/v1.0.0"},\ | ||
| 166 | {"module":"github.com/opencontainers/selinux","version":"v1.11.1","vcs_hash":"7a79fab55a520abe1fd1c87ab4a52fb9e469ee25eb924c5bc3c3f151e045078d","timestamp":"2024-08-07T11:31:10Z","subdir":"","vcs_ref":"refs/tags/v1.11.1"},\ | ||
| 167 | {"module":"github.com/opencontainers/image-spec","version":"v1.1.1","vcs_hash":"5bb7cbac46d5df774d087c364c00445553d3db253ca80dc7050c4e57832c118d","timestamp":"2025-02-24T17:26:57Z","subdir":"","vcs_ref":"refs/tags/v1.1.1"},\ | ||
| 168 | {"module":"github.com/opencontainers/image-spec","version":"v1.0.1","vcs_hash":"cc3b5f635a95bc8a8d17057e77e824e9203543710d27cab434eae6bda0ebd445","timestamp":"2017-10-30T17:47:40Z","subdir":"","vcs_ref":"refs/tags/v1.0.1"},\ | ||
| 169 | {"module":"github.com/opencontainers/runtime-tools","version":"v0.9.1-0.20221107090550-2e043c6bd626","vcs_hash":"8b8cdfeb7bd96052c4ebea0b549284e395ebb9bac1a75605850eea9bc5202abf","timestamp":"2022-11-07T09:05:50Z","subdir":"","vcs_ref":""},\ | ||
| 170 | {"module":"github.com/yuin/goldmark","version":"v1.2.1","vcs_hash":"4c58efe0c28d74a0131cf65fc06af9bf723f3852cb20f81dce6ce9ae50793119","timestamp":"2020-07-30T13:33:42Z","subdir":"","vcs_ref":"refs/tags/v1.2.1"},\ | ||
| 171 | {"module":"github.com/yuin/goldmark","version":"v1.4.13","vcs_hash":"fbec1a06cf7d810b36a87559756866f825159c4db030b543bd6359717d401035","timestamp":"2022-07-09T07:22:17Z","subdir":"","vcs_ref":"refs/tags/v1.4.13"},\ | ||
| 172 | {"module":"github.com/yuin/goldmark","version":"v1.1.27","vcs_hash":"fb45f805a799ac2f897942f334c68fc215fa5bfc06f4b0277d583fe78f6c36ca","timestamp":"2020-03-31T17:10:28Z","subdir":"","vcs_ref":"refs/tags/v1.1.27"},\ | ||
| 173 | {"module":"github.com/pelletier/go-toml","version":"v1.9.5","vcs_hash":"22bc2e212b193b23af04b0014dd6e6f15e66953913e88670099f8375927b48c7","timestamp":"2022-01-05T14:17:32Z","subdir":"","vcs_ref":"refs/tags/v1.9.5"},\ | ||
| 174 | {"module":"github.com/pelletier/go-toml/v2","version":"v2.2.3","vcs_hash":"c292f215fe326412116cc710f5de461999e72fd140e4e646d33969f537def76b","timestamp":"2024-08-17T20:26:05Z","subdir":"","vcs_ref":"refs/tags/v2.2.3"},\ | ||
| 175 | {"module":"github.com/x448/float16","version":"v0.8.4","vcs_hash":"e395eca01f11e874b5b2b165e3dc2620faa30374fb308657449d3a3023ce5cbb","timestamp":"2020-01-17T18:31:28Z","subdir":"","vcs_ref":"refs/tags/v0.8.4"},\ | ||
| 176 | {"module":"github.com/go-viper/mapstructure/v2","version":"v2.0.0","vcs_hash":"cb0d283517ebc8a7669a3ae29fbdc0f774cb29e99c8f6d8dd96ee760e00aa565","timestamp":"2024-06-02T08:40:03Z","subdir":"","vcs_ref":"refs/tags/v2.0.0"},\ | ||
| 177 | {"module":"github.com/godbus/dbus/v5","version":"v5.1.0","vcs_hash":"64a1380eac8fb56f64570a9ee44f46ff49a8cfc74d31623d696b49699728d072","timestamp":"2022-02-27T11:53:47Z","subdir":"v5","vcs_ref":"refs/tags/v5.1.0"},\ | ||
| 178 | {"module":"github.com/acarl005/stripansi","version":"v0.0.0-20180116102854-5a71ef0e047d","vcs_hash":"337c48cf09adc53fe47bcae33dc8d5465a7dbf818b017054e53ee8ec11f2a73f","timestamp":"2018-01-16T10:28:54Z","subdir":"","vcs_ref":""},\ | ||
| 179 | {"module":"github.com/go-logr/logr","version":"v1.2.2","vcs_hash":"761d6b76e4ca57583edd8a7d6cf39d5a0c0dfd1fb4f82f099c044f754193f7d1","timestamp":"2021-12-05T13:02:31Z","subdir":"","vcs_ref":"refs/tags/v1.2.2"},\ | ||
| 180 | {"module":"github.com/go-logr/logr","version":"v1.4.2","vcs_hash":"9655eab28e005d39cc2bb4b149948f2765b6737fb833acda1ea9a8fa1c01f086","timestamp":"2024-05-20T10:45:40Z","subdir":"","vcs_ref":"refs/tags/v1.4.2"},\ | ||
| 181 | {"module":"github.com/go-logr/stdr","version":"v1.2.2","vcs_hash":"e69aa58ea5f2f28aa8623652f5e6643b2299d9fe8ba1e6c73a8e3d602290ac67","timestamp":"2021-12-14T08:00:35Z","subdir":"","vcs_ref":"refs/tags/v1.2.2"},\ | ||
| 182 | {"module":"github.com/petermattis/goid","version":"v0.0.0-20240813172612-4fcff4a6cae7","vcs_hash":"28fe23d2ffb5463ca74406309be8d07f56f5b77b8f151b1f3d5a8edf6d6ae9be","timestamp":"2024-08-13T17:26:12Z","subdir":"","vcs_ref":""},\ | ||
| 183 | {"module":"github.com/danieljoos/wincred","version":"v1.2.1","vcs_hash":"3af90ab01dd5055f0f7304a3aab6d9153d9e4b7dadf15f1cce3c3f1a96a923c2","timestamp":"2023-12-15T09:48:44Z","subdir":"","vcs_ref":"refs/tags/v1.2.1"},\ | ||
| 184 | {"module":"github.com/grpc-ecosystem/go-grpc-middleware/providers/prometheus","version":"v1.0.1","vcs_hash":"3e59bfc763822ab8a68a88fa3e9fac0f47783c9374d27ac65298f1f8d1b2571a","timestamp":"2024-04-25T04:50:13Z","subdir":"providers/prometheus","vcs_ref":"refs/tags/providers/prometheus/v1.0.1"},\ | ||
| 185 | {"module":"github.com/grpc-ecosystem/go-grpc-middleware/v2","version":"v2.1.0","vcs_hash":"4e15ad209f57f1610bea03c67dbeef9ef7792fafe9b2902ca1a141277719f091","timestamp":"2024-02-22T15:43:25Z","subdir":"","vcs_ref":"refs/tags/v2.1.0"},\ | ||
| 186 | {"module":"github.com/grpc-ecosystem/grpc-gateway/v2","version":"v2.22.0","vcs_hash":"54aa69c409e35a26a6892d859ac1c260b7467abbebcf7533bac2d13284145cdc","timestamp":"2024-08-16T21:23:50Z","subdir":"","vcs_ref":"refs/tags/v2.22.0"},\ | ||
| 187 | {"module":"github.com/go-task/slim-sprig/v3","version":"v3.0.0","vcs_hash":"8dd5020cf322cc4f91014ac7828ac4826cba4ce7da08320ac497d655159088a5","timestamp":"2023-09-14T01:46:41Z","subdir":"","vcs_ref":"refs/tags/v3.0.0"},\ | ||
| 188 | {"module":"github.com/containernetworking/cni","version":"v1.2.3","vcs_hash":"207079ebc0e6f1af1497b081245d90f57acd17d56b5a7e8c5e02d50bb04653e1","timestamp":"2024-07-22T15:10:34Z","subdir":"","vcs_ref":"refs/tags/v1.2.3"},\ | ||
| 189 | {"module":"github.com/containernetworking/plugins","version":"v1.5.1","vcs_hash":"da85936fb221491063d7af963a2cea694c748a952f56b7c9b260477d72647200","timestamp":"2024-06-17T15:46:35Z","subdir":"","vcs_ref":"refs/tags/v1.5.1"},\ | ||
| 190 | {"module":"github.com/opentracing/opentracing-go","version":"v1.1.0","vcs_hash":"ef2c56f0be025c9601f62c989b9bbcc2ccb4177a010b2d10139888b5762b9823","timestamp":"2019-03-23T20:25:03Z","subdir":"","vcs_ref":"refs/tags/v1.1.0"},\ | ||
| 191 | {"module":"github.com/go-kit/kit","version":"v0.8.0","vcs_hash":"164d4eaa2f8107f0ad2f6559aac743c96ecce3f6eb17905b0e878385ede67301","timestamp":"2018-11-08T02:13:29Z","subdir":"","vcs_ref":"refs/tags/v0.8.0"},\ | ||
| 192 | {"module":"github.com/go-kit/log","version":"v0.2.1","vcs_hash":"ed7073de6ef2fea58a8fe12729a291d8a57b99673c02db9713b63e7bd9dae5d2","timestamp":"2022-04-27T13:55:41Z","subdir":"","vcs_ref":"refs/tags/v0.2.1"},\ | ||
| 193 | {"module":"github.com/BurntSushi/toml","version":"v0.3.1","vcs_hash":"c7591feaba0db5f458f0e6745283c8246ea0f50af4eb4714a53ff88805ecd88a","timestamp":"2018-08-15T10:47:33Z","subdir":"","vcs_ref":"refs/tags/v0.3.1"},\ | ||
| 194 | {"module":"github.com/go-openapi/jsonreference","version":"v0.20.2","vcs_hash":"2b1f5e4abef192d562993c04982e0222c673c03ef641b68a8e86ea31eae7b8e4","timestamp":"2023-01-14T04:19:40Z","subdir":"","vcs_ref":"refs/tags/v0.20.2"},\ | ||
| 195 | {"module":"github.com/go-openapi/swag","version":"v0.22.4","vcs_hash":"8f8d2571addcdca482f06070dbf229c1458c2580e2de6646584bfc5f88180320","timestamp":"2023-03-28T05:23:10Z","subdir":"","vcs_ref":"refs/tags/v0.22.4"},\ | ||
| 196 | {"module":"github.com/go-openapi/swag","version":"v0.22.3","vcs_hash":"d421d27944361416d092faf841873e7e7e5bad53f26778f0f55b912c83749393","timestamp":"2022-08-18T03:19:56Z","subdir":"","vcs_ref":"refs/tags/v0.22.3"},\ | ||
| 197 | {"module":"github.com/go-openapi/jsonpointer","version":"v0.19.6","vcs_hash":"00cfe127584daa066683f2c66a1b89f3fc8e301a1bbe5bf9fa1e5af7785cf776","timestamp":"2023-01-02T19:46:53Z","subdir":"","vcs_ref":"refs/tags/v0.19.6"},\ | ||
| 198 | {"module":"github.com/r3labs/sse","version":"v0.0.0-20210224172625-26fe804710bc","vcs_hash":"ab0b92c9c29a7a73f8bd6dab95e19601499450551acc92cb339fff90be59f4cb","timestamp":"2021-02-24T17:26:25Z","subdir":"","vcs_ref":""},\ | ||
| 199 | {"module":"github.com/emicklei/go-restful/v3","version":"v3.11.0","vcs_hash":"eeb71d093818e9ca5330b299be473b34d4e409659702a5b3608fe23fb85b1798","timestamp":"2023-08-19T06:54:41Z","subdir":"","vcs_ref":"refs/tags/v3.11.0"},\ | ||
| 200 | {"module":"github.com/gorilla/mux","version":"v1.7.0","vcs_hash":"e9f6dcbb74dd04784ade5364ce0688a4247bdb04e0cc5ea8774218e7cf8a65c5","timestamp":"2019-01-25T16:05:53Z","subdir":"","vcs_ref":"refs/tags/v1.7.0"},\ | ||
| 201 | {"module":"github.com/gorilla/mux","version":"v1.8.1","vcs_hash":"489d4511710bd1a1fc80974aa65ee7c2b851f7c6354c34549b8cd131f4435f0f","timestamp":"2023-10-18T11:23:00Z","subdir":"","vcs_ref":"refs/tags/v1.8.1"},\ | ||
| 202 | {"module":"github.com/gorilla/websocket","version":"v1.5.0","vcs_hash":"477b2601256923ac752e44d0be1d4864a37c42c87fcd9d9a143ea91a6714d9e4","timestamp":"2022-01-04T01:59:52Z","subdir":"","vcs_ref":"refs/tags/v1.5.0"},\ | ||
| 203 | {"module":"github.com/golang-sql/civil","version":"v0.0.0-20190719163853-cb61b32ac6fe","vcs_hash":"cf48a794754d9a9b29ff84011cf01764f8e4e9140292e83b4154b89a13f0eee9","timestamp":"2019-07-19T16:38:53Z","subdir":"","vcs_ref":""},\ | ||
| 204 | {"module":"github.com/tilt-dev/fsnotify","version":"v1.4.8-0.20220602155310-fff9c274a375","vcs_hash":"7518a2b435d07d055cf9c9215e09d3f354425246b3aaec57d9906b3f344e061e","timestamp":"2022-06-02T15:53:10Z","subdir":"","vcs_ref":""},\ | ||
| 205 | {"module":"github.com/matttproud/golang_protobuf_extensions","version":"v1.0.1","vcs_hash":"dd0fe058870feb088b8d2d88a7ff601f4c8c03aedeede7d837efcd311b5aea9b","timestamp":"2016-04-24T11:30:07Z","subdir":"","vcs_ref":"refs/tags/v1.0.1"},\ | ||
| 206 | {"module":"github.com/Netflix/go-expect","version":"v0.0.0-20220104043353-73e0943537d2","vcs_hash":"421789c64dd51281a459815573a00c171d61889f5324c1701c37f5f2e8caa8a3","timestamp":"2022-01-04T04:33:53Z","subdir":"","vcs_ref":""},\ | ||
| 207 | {"module":"github.com/pmezard/go-difflib","version":"v1.0.1-0.20181226105442-5d4384ee4fb2","vcs_hash":"542a02198867d48986449e0f3353a6afa6fd53ac0a9f07be5882207092512174","timestamp":"2018-12-26T10:54:42Z","subdir":"","vcs_ref":""},\ | ||
| 208 | {"module":"github.com/pmezard/go-difflib","version":"v1.0.0","vcs_hash":"c04ad296d2e3203fda8b7ca96feaca21b20b3b7441e33c7d67cda029ea61ab4c","timestamp":"2016-01-10T10:55:54Z","subdir":"","vcs_ref":"refs/tags/v1.0.0"},\ | ||
| 209 | {"module":"github.com/golang/groupcache","version":"v0.0.0-20210331224755-41bb18bfe9da","vcs_hash":"9cb4fa70f6f35f54f74cdd67019238c735edf9b37265c9047d5be47d613fac53","timestamp":"2021-03-31T22:47:55Z","subdir":"","vcs_ref":""},\ | ||
| 210 | {"module":"github.com/golang/glog","version":"v1.2.3","vcs_hash":"10238c556d1959fe7150392c62d47e4e08933e1d5d1656ee52804859fec96c6a","timestamp":"2024-11-05T15:05:08Z","subdir":"","vcs_ref":"refs/tags/v1.2.3"},\ | ||
| 211 | {"module":"github.com/golang/protobuf","version":"v1.3.1","vcs_hash":"ac3a600ae77600dcd73c8d21a4cd18d0b220318ed349c8deda52af33b71c50c6","timestamp":"2019-02-28T15:19:29Z","subdir":"","vcs_ref":"refs/tags/v1.3.1"},\ | ||
| 212 | {"module":"github.com/golang/protobuf","version":"v1.2.0","vcs_hash":"c620195ee748026eed07d7e16b36050b97c69cfe3f735e96aafd915e5397baa5","timestamp":"2018-08-14T21:14:27Z","subdir":"","vcs_ref":"refs/tags/v1.2.0"},\ | ||
| 213 | {"module":"github.com/golang/protobuf","version":"v1.3.4","vcs_hash":"f83545c5d009af94276add9fdb970f0b4b5b6872f19d4b02b8111007ee5544b0","timestamp":"2020-02-26T19:23:50Z","subdir":"","vcs_ref":"refs/tags/v1.3.4"},\ | ||
| 214 | {"module":"github.com/golang/protobuf","version":"v1.3.2","vcs_hash":"cbdb48339b27d250cd1655e4e658760981e0b526face5866f3cfac54fd21200c","timestamp":"2019-07-01T18:22:01Z","subdir":"","vcs_ref":"refs/tags/v1.3.2"},\ | ||
| 215 | {"module":"github.com/golang/protobuf","version":"v1.5.4","vcs_hash":"ff75ecee442381e7c87bac5ec092ebaf50137bc693ba5c5c1edce6eb4bd3ce94","timestamp":"2024-03-06T06:45:40Z","subdir":"","vcs_ref":"refs/tags/v1.5.4"},\ | ||
| 216 | {"module":"github.com/go-jose/go-jose/v4","version":"v4.0.4","vcs_hash":"19011aacdb618bd78f198fe7f98f5dd0d87658ba153cfe43f6dac19de23aace4","timestamp":"2024-07-27T00:46:37Z","subdir":"","vcs_ref":"refs/tags/v4.0.4"},\ | ||
| 217 | {"module":"github.com/golang-jwt/jwt/v5","version":"v5.2.1","vcs_hash":"145bc6b589338e18adbd25b7938cbbdeb333148620cb6268838b78897d3540c5","timestamp":"2024-02-12T11:49:14Z","subdir":"","vcs_ref":"refs/tags/v5.2.1"},\ | ||
| 218 | {"module":"github.com/felixge/httpsnoop","version":"v1.0.4","vcs_hash":"4faaa0a5649a2ae9245609ad7ed739dbc2e39cfd27a3018400f3dad114269d26","timestamp":"2023-03-12T10:31:09Z","subdir":"","vcs_ref":"refs/tags/v1.0.4"},\ | ||
| 219 | {"module":"github.com/felixge/fgprof","version":"v0.9.3","vcs_hash":"e4198b9fea19f930b494d86892d08c8dcf4d5828b2b7c19db44e432daeadbd37","timestamp":"2022-09-01T14:50:22Z","subdir":"","vcs_ref":"refs/tags/v0.9.3"},\ | ||
| 220 | {"module":"github.com/spdx/tools-golang","version":"v0.5.3","vcs_hash":"da8df6a61f5097d88daf5e9b6c03c38b4b19ae6e6536edb864f75bf2bc30b151","timestamp":"2023-07-27T17:06:05Z","subdir":"","vcs_ref":"refs/tags/v0.5.3"},\ | ||
| 221 | {"module":"github.com/lib/pq","version":"v0.0.0-20150723085316-0dad96c0b94f","vcs_hash":"501779f1f37d5eedf7b5e73065f7d7847c6343baa947b47ab9335de358604a1c","timestamp":"2015-07-23T08:53:16Z","subdir":"","vcs_ref":""},\ | ||
| 222 | {"module":"github.com/cloudflare/cfssl","version":"v0.0.0-20180223231731-4e2dcbde5004","vcs_hash":"3c8104b7da9d2e18832889b5c6a3e835075611b12d6602487addb722a70feac5","timestamp":"2018-02-23T23:17:31Z","subdir":"","vcs_ref":""},\ | ||
| 223 | {"module":"github.com/asaskevich/govalidator","version":"v0.0.0-20190424111038-f61b66f89f4a","vcs_hash":"61c02063e287a5f7f9564f2b444919f4570e5c77b7fedf6b636132c1444406fd","timestamp":"2019-04-24T11:10:38Z","subdir":"","vcs_ref":""},\ | ||
| 224 | {"module":"github.com/tonistiigi/go-actions-cache","version":"v0.0.0-20250219102945-1a5174abd055","vcs_hash":"7afb6e37fb41c654c85c7025c09e86eeb4cad6d13f273ae7fe4e12cb744895a8","timestamp":"2025-02-19T10:29:45Z","subdir":"","vcs_ref":""},\ | ||
| 225 | {"module":"github.com/tonistiigi/dchapes-mode","version":"v0.0.0-20241001053921-ca0759fec205","vcs_hash":"4b37a45b573e46274999aeacb947e66b77af10f7bcf80d7765116f0f545ddb53","timestamp":"2024-10-01T05:39:21Z","subdir":"","vcs_ref":""},\ | ||
| 226 | {"module":"github.com/tonistiigi/go-csvvalue","version":"v0.0.0-20240710180619-ddb21b71c0b4","vcs_hash":"9d2768221331347d1dcceca683175004436e98a7a509a80b315da4f2e94252fe","timestamp":"2024-07-10T18:06:19Z","subdir":"","vcs_ref":""},\ | ||
| 227 | {"module":"github.com/tonistiigi/units","version":"v0.0.0-20180711220420-6950e57a87ea","vcs_hash":"a0528d63437c733bc9243aeb601d0f1175a8f8eaa01b2402d7b077f35f36fbcd","timestamp":"2018-07-11T22:04:20Z","subdir":"","vcs_ref":""},\ | ||
| 228 | {"module":"github.com/tonistiigi/go-archvariant","version":"v1.0.0","vcs_hash":"07d631aebb630179eda0ac758a6a400523556e0df873aaaa8107c81569f5312d","timestamp":"2022-01-31T19:23:56Z","subdir":"","vcs_ref":"refs/tags/v1.0.0"},\ | ||
| 229 | {"module":"github.com/tonistiigi/jaeger-ui-rest","version":"v0.0.0-20250211190051-7d4944a45bb6","vcs_hash":"7962db19081ce7b7826282db478ca2eaf3a8c7527f539dea5102801e6e99c614","timestamp":"2025-02-11T19:00:51Z","subdir":"","vcs_ref":""},\ | ||
| 230 | {"module":"github.com/tonistiigi/fsutil","version":"v0.0.0-20250113203817-b14e27f4135a","vcs_hash":"24136717ad11dd9402df48c0d2246006790ab9f69981c713ef2bdd9dd1feef96","timestamp":"2025-01-13T20:38:17Z","subdir":"","vcs_ref":""},\ | ||
| 231 | {"module":"github.com/tonistiigi/vt100","version":"v0.0.0-20240514184818-90bafcd6abab","vcs_hash":"8c7e9f3cea5c616be7d8cb3b181a8ecf2d3b1ff0b881bb34abd9235b7680d2c9","timestamp":"2024-05-14T18:48:18Z","subdir":"","vcs_ref":""},\ | ||
| 232 | {"module":"github.com/denisenkom/go-mssqldb","version":"v0.0.0-20191128021309-1d7a30a10f73","vcs_hash":"51d1448ae824a59e167bc4626cbed812ff98e24bad9ad0e55865452f35f4e32a","timestamp":"2019-11-28T02:13:09Z","subdir":"","vcs_ref":""},\ | ||
| 233 | {"module":"github.com/containerd/stargz-snapshotter","version":"v0.16.3","vcs_hash":"5eb38cc9ca80caacbcdd1de8143458a6ee925f3d22dcf816abaa4c95692e1bed","timestamp":"2024-12-12T14:42:49Z","subdir":"","vcs_ref":"refs/tags/v0.16.3"},\ | ||
| 234 | {"module":"github.com/containerd/stargz-snapshotter/estargz","version":"v0.16.3","vcs_hash":"5eb38cc9ca80caacbcdd1de8143458a6ee925f3d22dcf816abaa4c95692e1bed","timestamp":"2024-12-12T14:42:49Z","subdir":"estargz","vcs_ref":"refs/tags/estargz/v0.16.3"},\ | ||
| 235 | {"module":"github.com/containerd/otelttrpc","version":"v0.1.0","vcs_hash":"c27d4a7087a7f4624cdf40c161f9707dbb90cd2d71159840f7c7b610260e9f24","timestamp":"2025-01-09T19:17:17Z","subdir":"","vcs_ref":"refs/tags/v0.1.0"},\ | ||
| 236 | {"module":"github.com/containerd/platforms","version":"v1.0.0-rc.1","vcs_hash":"228b46280b8405c1f31e6357892b48ca503c9081ad55b4542dacec14a2cb0142","timestamp":"2025-01-11T00:16:51Z","subdir":"","vcs_ref":"refs/tags/v1.0.0-rc.1"},\ | ||
| 237 | {"module":"github.com/containerd/go-runc","version":"v1.1.0","vcs_hash":"9044e9e240020298712a51a4db4736afc66d70b1870cf11cac73c0661be06842","timestamp":"2023-05-17T04:55:20Z","subdir":"","vcs_ref":"refs/tags/v1.1.0"},\ | ||
| 238 | {"module":"github.com/containerd/errdefs","version":"v1.0.0","vcs_hash":"d9d1c9949e837f39205605237b656e944c7d0cd69e48a906fabdb6bebe0edb66","timestamp":"2024-10-08T13:10:09Z","subdir":"","vcs_ref":"refs/tags/v1.0.0"},\ | ||
| 239 | {"module":"github.com/containerd/errdefs/pkg","version":"v0.3.0","vcs_hash":"d9d1c9949e837f39205605237b656e944c7d0cd69e48a906fabdb6bebe0edb66","timestamp":"2024-10-08T13:10:09Z","subdir":"pkg","vcs_ref":"refs/tags/pkg/v0.3.0"},\ | ||
| 240 | {"module":"github.com/containerd/nri","version":"v0.8.0","vcs_hash":"ba74adc9d7b3b1cfa448d53477902136dcbbecec853952e1cf60100155fb0f11","timestamp":"2024-10-31T20:13:36Z","subdir":"","vcs_ref":"refs/tags/v0.8.0"},\ | ||
| 241 | {"module":"github.com/containerd/typeurl/v2","version":"v2.2.3","vcs_hash":"60bc9255cadbea28631b3293cd629cbe0b9a9cffb987712231cdc4f9dc75a2cb","timestamp":"2024-11-07T03:45:23Z","subdir":"","vcs_ref":"refs/tags/v2.2.3"},\ | ||
| 242 | {"module":"github.com/containerd/fuse-overlayfs-snapshotter/v2","version":"v2.1.1","vcs_hash":"904456d103fdf69a1715c0ea77bf08dce2fd0956746f1b7176edb3069d52c5e6","timestamp":"2025-01-16T16:40:33Z","subdir":"","vcs_ref":"refs/tags/v2.1.1"},\ | ||
| 243 | {"module":"github.com/containerd/cgroups/v3","version":"v3.0.5","vcs_hash":"5915036ca3b1a492afe8acd828fa11ac9556f8742822bb2a5b5c0050c65e4b9b","timestamp":"2024-12-17T02:43:09Z","subdir":"","vcs_ref":"refs/tags/v3.0.5"},\ | ||
| 244 | {"module":"github.com/containerd/plugin","version":"v1.0.0","vcs_hash":"f786b847c888d27ca5c517b566772c78216ed963d31d5119a32ebad7494855ea","timestamp":"2024-10-20T22:03:21Z","subdir":"","vcs_ref":"refs/tags/v1.0.0"},\ | ||
| 245 | {"module":"github.com/containerd/zfs/v2","version":"v2.0.0-rc.0","vcs_hash":"760d9b417b3649f7335a5437c1ddc3ce9a7d15632bcac73a7aabc3c145104a12","timestamp":"2024-10-24T13:31:35Z","subdir":"","vcs_ref":"refs/tags/v2.0.0-rc.0"},\ | ||
| 246 | {"module":"github.com/containerd/continuity","version":"v0.4.5","vcs_hash":"ef286b146362aa5da58f9ef4e88323a32e1ea45eda78c6d484875972ce0a81e0","timestamp":"2024-10-30T04:18:59Z","subdir":"","vcs_ref":"refs/tags/v0.4.5"},\ | ||
| 247 | {"module":"github.com/containerd/imgcrypt/v2","version":"v2.0.0-rc.1","vcs_hash":"b07abb487671181608270a83bbdba89c618a98614a7b5b7bf51d458da4777e82","timestamp":"2024-10-24T14:15:12Z","subdir":"","vcs_ref":"refs/tags/v2.0.0-rc.1"},\ | ||
| 248 | {"module":"github.com/containerd/console","version":"v1.0.4","vcs_hash":"4456f224c4d8f02c6b42fad134de97f5c0635b3ac18e8c88a9d3e4768baaf76b","timestamp":"2023-07-06T20:39:07Z","subdir":"","vcs_ref":"refs/tags/v1.0.4"},\ | ||
| 249 | {"module":"github.com/containerd/ttrpc","version":"v1.2.7","vcs_hash":"89e0e59ec2637becf69ff869326d460e7b3aa5c251d58a6d42981bc9c12360fd","timestamp":"2024-12-28T23:29:38Z","subdir":"","vcs_ref":"refs/tags/v1.2.7"},\ | ||
| 250 | {"module":"github.com/containerd/fifo","version":"v1.1.0","vcs_hash":"e4b0152cde11b075ce8a8a9f0db77d54abb72ee1bab1036ab0c157b678aade47","timestamp":"2023-02-17T21:37:13Z","subdir":"","vcs_ref":"refs/tags/v1.1.0"},\ | ||
| 251 | {"module":"github.com/containerd/go-cni","version":"v1.1.12","vcs_hash":"55070c8abada9a5bff1ca98847799f569e31b4d2f5e8f75fd9d55e51e55a9447","timestamp":"2025-01-09T14:22:27Z","subdir":"","vcs_ref":"refs/tags/v1.1.12"},\ | ||
| 252 | {"module":"github.com/containerd/containerd/api","version":"v1.8.0","vcs_hash":"bc8017d9dffb143b7124d71be2017fef2a6352076f6074797e640cb36b518d50","timestamp":"2024-11-04T05:25:19Z","subdir":"api","vcs_ref":"refs/tags/api/v1.8.0"},\ | ||
| 253 | {"module":"github.com/containerd/containerd/v2","version":"v2.0.2","vcs_hash":"8f09d2a9a40b1c32cb7517ac507d7888de95cacb76efdbdfbb4a5624d35ba57e","timestamp":"2025-01-14T05:21:27Z","subdir":"","vcs_ref":"refs/tags/v2.0.2"},\ | ||
| 254 | {"module":"github.com/containerd/log","version":"v0.1.0","vcs_hash":"697be36d9b8a0eb34f8591d0f69b6d596e1e9341b5944ebf81ddd334b1907bc6","timestamp":"2023-09-09T00:27:15Z","subdir":"","vcs_ref":"refs/tags/v0.1.0"},\ | ||
| 255 | {"module":"github.com/containerd/nydus-snapshotter","version":"v0.15.0","vcs_hash":"74f4a2b58f7a254bda83dc687342b8589fa804a1edfd1d986db99d951541eaf3","timestamp":"2024-12-11T02:14:18Z","subdir":"","vcs_ref":"refs/tags/v0.15.0"},\ | ||
| 256 | {"module":"github.com/containerd/btrfs/v2","version":"v2.0.0","vcs_hash":"8a2ee3ce7d871ae06962c07984197acdfd6035091884c9db0791378ac0229823","timestamp":"2023-02-10T01:01:25Z","subdir":"","vcs_ref":"refs/tags/v2.0.0"},\ | ||
| 257 | {"module":"github.com/codahale/rfc6979","version":"v0.0.0-20141003034818-6a90f24967eb","vcs_hash":"fd8285193cc7c3bc341773b0166d258b6baca2f6985aa666e14e22b19401aea7","timestamp":"2014-10-03T03:48:18Z","subdir":"","vcs_ref":""},\ | ||
| 258 | {"module":"github.com/docker/distribution","version":"v2.8.3+incompatible","vcs_hash":"179a4ea80ae56a5b38e4349dac5aa88a7180045bd04943c05933125b8abc5d93","timestamp":"2023-10-02T17:09:30Z","subdir":"","vcs_ref":"refs/tags/v2.8.3"},\ | ||
| 259 | {"module":"github.com/docker/distribution","version":"v2.7.1+incompatible","vcs_hash":"26a3d4dc632c62414346d52deda2aedc133ba755ea9665e3aba4eba2cfe57bb0","timestamp":"2019-01-17T23:19:26Z","subdir":"","vcs_ref":"refs/tags/v2.7.1"},\ | ||
| 260 | {"module":"github.com/docker/go-metrics","version":"v0.0.0-20180209012529-399ea8c73916","vcs_hash":"e46943e0ce240f96ccb15fabd2b6c91ee2105677005b8cff59822b6c952ea98e","timestamp":"2018-02-09T01:25:29Z","subdir":"","vcs_ref":""},\ | ||
| 261 | {"module":"github.com/docker/go-metrics","version":"v0.0.1","vcs_hash":"96ae8893e24907a70aef922af47d48651611460f2b982f7e1e27dacd5ad82b9f","timestamp":"2019-08-28T14:40:21Z","subdir":"","vcs_ref":"refs/tags/v0.0.1"},\ | ||
| 262 | {"module":"github.com/docker/docker-credential-helpers","version":"v0.8.2","vcs_hash":"9d19f9106dbe45ca19ac469a52047d35fd2c4f6889c78f5c8b54214c3353b519","timestamp":"2024-05-10T12:15:26Z","subdir":"","vcs_ref":"refs/tags/v0.8.2"},\ | ||
| 263 | {"module":"github.com/docker/libtrust","version":"v0.0.0-20160708172513-aabc10ec26b7","vcs_hash":"30b9f1ca3a03878df88db7db5466a284cdc61ad2e0e647ef5d4611b4bc72f1b8","timestamp":"2016-07-08T17:25:13Z","subdir":"","vcs_ref":""},\ | ||
| 264 | {"module":"github.com/docker/buildx","version":"v0.21.2","vcs_hash":"f3b4bcdb14cfbb9adceeede6a2a1d3b7ca4d562c5fdf4986a0821413a5472b4f","timestamp":"2025-03-03T16:10:32Z","subdir":"","vcs_ref":"refs/tags/v0.21.2"},\ | ||
| 265 | {"module":"github.com/docker/go-events","version":"v0.0.0-20190806004212-e31b211e4f1c","vcs_hash":"3e0bfea9682128db4b902dfb300a63020f2a4e0fd9e50a9a43529185ded21203","timestamp":"2019-08-06T00:42:12Z","subdir":"","vcs_ref":""},\ | ||
| 266 | {"module":"github.com/docker/go-connections","version":"v0.4.0","vcs_hash":"90a622b6d50d291d33dc478ac881c41bd809522c6c0c4e6928a6c544843d868f","timestamp":"2018-02-28T14:10:15Z","subdir":"","vcs_ref":"refs/tags/v0.4.0"},\ | ||
| 267 | {"module":"github.com/docker/go-connections","version":"v0.5.0","vcs_hash":"537a652ffe4ade5b6ad2a464d46ac04ecd52e765db706829f721e228252e1310","timestamp":"2023-11-10T21:24:14Z","subdir":"","vcs_ref":"refs/tags/v0.5.0"},\ | ||
| 268 | {"module":"github.com/docker/docker","version":"v28.0.1+incompatible","vcs_hash":"97026e8bc301235a97e3834f4805d557b452d605272a29421c5ee5d9aaf6e52c","timestamp":"2025-02-26T09:52:05Z","subdir":"","vcs_ref":"refs/tags/v28.0.1"},\ | ||
| 269 | {"module":"github.com/docker/go-units","version":"v0.5.0","vcs_hash":"2f970538f28b36d4a39663fa90033ec5c742ddd7774a86d94cc6c179e63a1c49","timestamp":"2022-05-17T10:43:04Z","subdir":"","vcs_ref":"refs/tags/v0.5.0"},\ | ||
| 270 | {"module":"github.com/docker/cli","version":"v28.0.1+incompatible","vcs_hash":"397767543164f61dbe60fcb9896cad24b7efb6a0a3a327d84dd0140a9020f330","timestamp":"2025-02-25T17:52:55Z","subdir":"","vcs_ref":"refs/tags/v28.0.1"},\ | ||
| 271 | {"module":"github.com/docker/cli-docs-tool","version":"v0.9.0","vcs_hash":"ca2b4e986a36ec73482468578377accca11c21670388897d0a2dad975a32bdc3","timestamp":"2025-01-11T20:48:44Z","subdir":"","vcs_ref":"refs/tags/v0.9.0"},\ | ||
| 272 | {"module":"github.com/docker/compose/v2","version":"v2.0.0-20250305091945-eaf9800948e0","vcs_hash":"db2145cc8e57f3f21582af6c070571cbfcfa1c0cab2ba25cbf94f52385355015","timestamp":"2025-03-05T09:19:45Z","subdir":"v2","vcs_ref":""},\ | ||
| 273 | {"module":"github.com/klauspost/compress","version":"v1.17.11","vcs_hash":"1a818e5938f06e0c21b23becbe591b89626d41c0bc822cc43ff12a46f44c4700","timestamp":"2024-10-08T09:20:28Z","subdir":"","vcs_ref":"refs/tags/v1.17.11"},\ | ||
| 274 | {"module":"github.com/jpillora/backoff","version":"v1.0.0","vcs_hash":"f3877637b1b0b11053bd3f6485df13672bc371749f756a13048e72298849b276","timestamp":"2019-10-03T12:57:08Z","subdir":"","vcs_ref":"refs/tags/v1.0.0"},\ | ||
| 275 | {"module":"github.com/davecgh/go-spew","version":"v1.1.1","vcs_hash":"4c7d69cfe586f86079773ff48d94f76d327c2914d8dfeffca9e34fd1146e5d5e","timestamp":"2018-02-21T23:26:28Z","subdir":"","vcs_ref":"refs/tags/v1.1.1"},\ | ||
| 276 | {"module":"github.com/davecgh/go-spew","version":"v1.1.2-0.20180830191138-d8f796af33cc","vcs_hash":"0bbb25cc88e50a90d274f6ee02d66c1a618efd4ad460b7046fdd7f680cb60ffc","timestamp":"2018-08-30T19:11:38Z","subdir":"","vcs_ref":""},\ | ||
| 277 | {"module":"github.com/davecgh/go-spew","version":"v1.1.0","vcs_hash":"5ce38ad71c2d3bc390b87154a89c53fd5ead19aed2bf005419db5c0b28ea9dfd","timestamp":"2016-10-29T20:57:26Z","subdir":"","vcs_ref":"refs/tags/v1.1.0"},\ | ||
| 278 | {"module":"github.com/munnerz/goautoneg","version":"v0.0.0-20191010083416-a7dc8b61c822","vcs_hash":"0f68eeb31e17a8fc96eede1943fe26be5835b08f5cc4a9eee4ed1b8eee4887ee","timestamp":"2019-10-10T08:34:16Z","subdir":"","vcs_ref":""},\ | ||
| 279 | {"module":"github.com/intel/goresctrl","version":"v0.8.0","vcs_hash":"5d20d90ec5de5ded41d2af02d43b1894cd4847e927f36f70d656aaed8856fdf5","timestamp":"2024-09-19T05:35:30Z","subdir":"","vcs_ref":"refs/tags/v0.8.0"},\ | ||
| 280 | {"module":"github.com/gofrs/flock","version":"v0.12.1","vcs_hash":"2eca9ade511bd007a13375faeeafb3f984450113cd6e7f26251dc5922d27f7a1","timestamp":"2024-07-22T20:18:06Z","subdir":"","vcs_ref":"refs/tags/v0.12.1"},\ | ||
| 281 | {"module":"github.com/moby/sys/symlink","version":"v0.3.0","vcs_hash":"c5c70dcea521c7e4cc66d0ca1ccdc1721b1a865780c1a1b9274ced410fa0553f","timestamp":"2024-07-16T17:21:58Z","subdir":"symlink","vcs_ref":"refs/tags/symlink/v0.3.0"},\ | ||
| 282 | {"module":"github.com/moby/sys/sequential","version":"v0.6.0","vcs_hash":"c5c70dcea521c7e4cc66d0ca1ccdc1721b1a865780c1a1b9274ced410fa0553f","timestamp":"2024-07-16T17:21:58Z","subdir":"sequential","vcs_ref":"refs/tags/sequential/v0.6.0"},\ | ||
| 283 | {"module":"github.com/moby/sys/userns","version":"v0.1.0","vcs_hash":"8ea1faceda9bb3618c7b96f0749fcc6b4672432eef27c1f25c4bf631513501f2","timestamp":"2024-08-07T23:23:49Z","subdir":"userns","vcs_ref":"refs/tags/userns/v0.1.0"},\ | ||
| 284 | {"module":"github.com/moby/sys/capability","version":"v0.4.0","vcs_hash":"e67c1b1913863f71a44fb255bb4ceafcd322cbb0790a301c410f76acaf083f75","timestamp":"2024-11-11T19:02:25Z","subdir":"capability","vcs_ref":"refs/tags/capability/v0.4.0"},\ | ||
| 285 | {"module":"github.com/moby/sys/mount","version":"v0.3.4","vcs_hash":"bafd5119fc031ca52b9e52a119b6c3c57d48dea0d101fe2ad1a175fce54de6c7","timestamp":"2024-07-17T03:02:24Z","subdir":"mount","vcs_ref":"refs/tags/mount/v0.3.4"},\ | ||
| 286 | {"module":"github.com/moby/sys/reexec","version":"v0.1.0","vcs_hash":"4c6d72296668707abb39f73bf8ef79dbb131e20164c7c8897885dfa2b6dd000b","timestamp":"2024-12-18T18:52:09Z","subdir":"reexec","vcs_ref":"refs/tags/reexec/v0.1.0"},\ | ||
| 287 | {"module":"github.com/moby/sys/signal","version":"v0.7.1","vcs_hash":"c5c70dcea521c7e4cc66d0ca1ccdc1721b1a865780c1a1b9274ced410fa0553f","timestamp":"2024-07-16T17:21:58Z","subdir":"signal","vcs_ref":"refs/tags/signal/v0.7.1"},\ | ||
| 288 | {"module":"github.com/moby/sys/mountinfo","version":"v0.7.2","vcs_hash":"c5c70dcea521c7e4cc66d0ca1ccdc1721b1a865780c1a1b9274ced410fa0553f","timestamp":"2024-07-16T17:21:58Z","subdir":"mountinfo","vcs_ref":"refs/tags/mountinfo/v0.7.2"},\ | ||
| 289 | {"module":"github.com/moby/sys/user","version":"v0.3.0","vcs_hash":"8ea1faceda9bb3618c7b96f0749fcc6b4672432eef27c1f25c4bf631513501f2","timestamp":"2024-08-07T23:23:49Z","subdir":"user","vcs_ref":"refs/tags/user/v0.3.0"},\ | ||
| 290 | {"module":"github.com/moby/patternmatcher","version":"v0.6.0","vcs_hash":"fde57a922ff865dfe02454fffbfcbb1e5f2ca06ac3390f3a9df16466bfda666b","timestamp":"2023-08-22T20:52:28Z","subdir":"","vcs_ref":"refs/tags/v0.6.0"},\ | ||
| 291 | {"module":"github.com/moby/term","version":"v0.5.2","vcs_hash":"b7e959e4874fee596e5f3eaf06300410fe7cefde4fbece51042d17be137ef04e","timestamp":"2025-01-02T15:40:12Z","subdir":"","vcs_ref":"refs/tags/v0.5.2"},\ | ||
| 292 | {"module":"github.com/moby/docker-image-spec","version":"v1.3.1","vcs_hash":"7e0006fc710e13d8f5d4dd052be9861a4fd4562e1330ab6bdf94303f885e80da","timestamp":"2024-02-09T17:17:29Z","subdir":"","vcs_ref":"refs/tags/v1.3.1"},\ | ||
| 293 | {"module":"github.com/moby/buildkit","version":"v0.20.0","vcs_hash":"d40bbb408c7127675b37910d85e8d47dd9198ffb26d427b8d50c54add6ae0627","timestamp":"2025-02-19T18:10:26Z","subdir":"","vcs_ref":"refs/tags/v0.20.0"},\ | ||
| 294 | {"module":"github.com/moby/locker","version":"v1.0.1","vcs_hash":"5549df51df50be0334c0cca67abc7ed6c0bd4fceee3f7bb56eb917b56bfe8644","timestamp":"2020-09-10T19:56:44Z","subdir":"","vcs_ref":"refs/tags/v1.0.1"},\ | ||
| 295 | {"module":"github.com/moby/spdystream","version":"v0.4.0","vcs_hash":"4b1e1dce7955a489620ea75994f8d113e0c41f711b8826d760073dbf3e8a065f","timestamp":"2024-06-27T16:56:17Z","subdir":"","vcs_ref":"refs/tags/v0.4.0"},\ | ||
| 296 | {"module":"github.com/planetscale/vtprotobuf","version":"v0.6.1-0.20240319094008-0393e58bdf10","vcs_hash":"2a8f7a744764b6b7d0f6b17003fd8217cc861be946aee65fccc7d1491634942f","timestamp":"2024-03-19T09:40:08Z","subdir":"","vcs_ref":""},\ | ||
| 297 | {"module":"github.com/miekg/pkcs11","version":"v1.1.1","vcs_hash":"cfc32d6973be9c203ec1d8480b59f61c59be67d146de9d920f82d4eb7c4d994a","timestamp":"2022-01-05T09:50:38Z","subdir":"","vcs_ref":"refs/tags/v1.1.1"},\ | ||
| 298 | {"module":"github.com/miekg/pkcs11","version":"v1.0.2","vcs_hash":"eb5a56eb790cc3fc7850bf57682d3ac5831360a4496818de755c41ce63d505ba","timestamp":"2019-04-19T07:10:23Z","subdir":"","vcs_ref":"refs/tags/v1.0.2"},\ | ||
| 299 | {"module":"github.com/dimchansky/utfbom","version":"v1.1.1","vcs_hash":"04f39ab86cb6ab9bf2a2278357fae9932b31f6cb8b07bf8e6ca02581cbf46ecf","timestamp":"2020-11-06T16:33:08Z","subdir":"","vcs_ref":"refs/tags/v1.1.1"},\ | ||
| 300 | {"module":"github.com/kballard/go-shellquote","version":"v0.0.0-20180428030007-95032a82bc51","vcs_hash":"49fe182d1b759955b666e8ad12ff66052cc7e14ba9ccf9e8371ee85848f1f9ac","timestamp":"2018-04-28T03:00:07Z","subdir":"","vcs_ref":""},\ | ||
| 301 | {"module":"github.com/cenkalti/backoff/v4","version":"v4.3.0","vcs_hash":"c644c1d0f5212c0210f056d6c7d45f3e482a1fca002b7c3e65edf8d3c060566f","timestamp":"2024-01-02T22:56:19Z","subdir":"","vcs_ref":"refs/tags/v4.3.0"},\ | ||
| 302 | {"module":"github.com/buger/goterm","version":"v1.0.4","vcs_hash":"caf1c06b7ea92c81a60195c5df6f46d1e4ceb75cfb096fb918e712dcc226fc04","timestamp":"2022-01-25T19:34:06Z","subdir":"","vcs_ref":"refs/tags/v1.0.4"},\ | ||
| 303 | {"module":"github.com/mitchellh/go-ps","version":"v1.0.0","vcs_hash":"e2954bb45e8e4304338ab2532158d042745f3a239202953369cef281beed32cb","timestamp":"2020-02-03T20:02:15Z","subdir":"","vcs_ref":"refs/tags/v1.0.0"},\ | ||
| 304 | {"module":"github.com/mitchellh/mapstructure","version":"v1.5.0","vcs_hash":"d9f5489d4515cf23689f7c9a7a71a85fdd52671cf92601ea8e8c59bf3644b6b5","timestamp":"2022-04-20T22:31:31Z","subdir":"","vcs_ref":"refs/tags/v1.5.0"},\ | ||
| 305 | {"module":"github.com/mitchellh/mapstructure","version":"v0.0.0-20150613213606-2caf8efc9366","vcs_hash":"5ad95eaf3fe770e7f704095dccb10123fc34e55570f7e163eb2e3e9a5c0586a6","timestamp":"2015-06-13T21:36:06Z","subdir":"","vcs_ref":""},\ | ||
| 306 | {"module":"github.com/mitchellh/hashstructure/v2","version":"v2.0.2","vcs_hash":"7c1d661828ecf7a5daa9f90b02814e542e1ed4d474edc002d91d945df708a5be","timestamp":"2021-05-27T23:24:52Z","subdir":"v2","vcs_ref":"refs/tags/v2.0.2"},\ | ||
| 307 | {"module":"github.com/mitchellh/go-wordwrap","version":"v0.0.0-20150314170334-ad45545899c7","vcs_hash":"84dd581dbedfed4ad91418958b9953cb3b8c321481b44916212a3c9214911ce7","timestamp":"2015-03-14T17:03:34Z","subdir":"","vcs_ref":""},\ | ||
| 308 | {"module":"github.com/hashicorp/hcl/v2","version":"v2.23.0","vcs_hash":"6fa59ecdf57a9f38bb28028cc2edf5908ddcf947959456ffc92c2ce12d831971","timestamp":"2024-11-15T16:25:01Z","subdir":"","vcs_ref":"refs/tags/v2.23.0"},\ | ||
| 309 | {"module":"github.com/hashicorp/errwrap","version":"v1.0.0","vcs_hash":"65db17b2a8abd8c2bde5a919d17f7abc0e891ae4037aa21f7aa2482f560cf21f","timestamp":"2018-08-24T00:39:10Z","subdir":"","vcs_ref":"refs/tags/v1.0.0"},\ | ||
| 310 | {"module":"github.com/hashicorp/errwrap","version":"v1.1.0","vcs_hash":"a0949020a0c14672f86d32cbf0d984b8d048a27e6f75aeac79f8ca3f7cc4ecae","timestamp":"2020-07-14T15:51:01Z","subdir":"","vcs_ref":"refs/tags/v1.1.0"},\ | ||
| 311 | {"module":"github.com/hashicorp/go-version","version":"v1.7.0","vcs_hash":"fd3860df5d492a5119c8c51b16a6aab4a06c5aa25b862415b5447aa36f240677","timestamp":"2024-05-24T10:16:12Z","subdir":"","vcs_ref":"refs/tags/v1.7.0"},\ | ||
| 312 | {"module":"github.com/hashicorp/go-multierror","version":"v1.1.1","vcs_hash":"cec0f337a88725c16a86058204a5dd4ae667b8a92bbed995ab204ebcb62177a5","timestamp":"2021-03-11T20:17:12Z","subdir":"","vcs_ref":"refs/tags/v1.1.1"},\ | ||
| 313 | {"module":"github.com/hashicorp/go-cty-funcs","version":"v0.0.0-20241120183456-c51673e0b3dd","vcs_hash":"1404e62b188bb9403807f3f5bcef614facdb25c37a249518983a0496b8d68c41","timestamp":"2024-11-20T18:34:56Z","subdir":"","vcs_ref":""},\ | ||
| 314 | {"module":"github.com/hashicorp/go-retryablehttp","version":"v0.7.7","vcs_hash":"1c161e79086905c04399aaec101924f22b95228d7f8380bbe1b73faba8fb6988","timestamp":"2024-05-30T00:13:00Z","subdir":"","vcs_ref":"refs/tags/v0.7.7"},\ | ||
| 315 | {"module":"github.com/hashicorp/golang-lru/v2","version":"v2.0.7","vcs_hash":"0a17d620bc2f7dd8c00efd79d0b78bb5f5c0bfaa2ec311417e9256a33b35db77","timestamp":"2023-09-21T18:26:40Z","subdir":"","vcs_ref":"refs/tags/v2.0.7"},\ | ||
| 316 | {"module":"github.com/hashicorp/go-immutable-radix/v2","version":"v2.1.0","vcs_hash":"e7330a0d345fdfe0fc28bc95ffa515bf29b09fde15bff6885c08836ae16c3992","timestamp":"2023-11-21T15:50:58Z","subdir":"","vcs_ref":"refs/tags/v2.1.0"},\ | ||
| 317 | {"module":"github.com/hashicorp/go-cleanhttp","version":"v0.5.2","vcs_hash":"da345fc970b7e579c1da9ec42edfbe1bf896f5e3274ce418f134b15952eb2494","timestamp":"2021-02-03T18:51:13Z","subdir":"","vcs_ref":"refs/tags/v0.5.2"},\ | ||
| 318 | {"module":"github.com/Azure/go-ansiterm","version":"v0.0.0-20250102033503-faa5f7b0171c","vcs_hash":"d9abe4d330489bbcc2f3473a042a0886c4f556d7a3b9128c484c2fef3396e790","timestamp":"2025-01-02T03:35:03Z","subdir":"","vcs_ref":""},\ | ||
| 319 | {"module":"github.com/Azure/azure-sdk-for-go/sdk/storage/azblob","version":"v1.5.0","vcs_hash":"69ba1366ff498c1f6625ee95464ad8462e9596296890fc801954d6d94c815ead","timestamp":"2024-11-13T16:30:52Z","subdir":"sdk/storage/azblob","vcs_ref":"refs/tags/sdk/storage/azblob/v1.5.0"},\ | ||
| 320 | {"module":"github.com/Azure/azure-sdk-for-go/sdk/azcore","version":"v1.16.0","vcs_hash":"245b8f5795c8d96405232e1a2e8c72f59cba7bdc372087fac7104dcb5da15324","timestamp":"2024-10-17T16:00:31Z","subdir":"sdk/azcore","vcs_ref":"refs/tags/sdk/azcore/v1.16.0"},\ | ||
| 321 | {"module":"github.com/Azure/azure-sdk-for-go/sdk/azidentity","version":"v1.8.0","vcs_hash":"52041511e242e9a8316f8115e10be7a67dd2adc3ba13fd312c7d70f6b940c7b3","timestamp":"2024-10-08T16:09:05Z","subdir":"sdk/azidentity","vcs_ref":"refs/tags/sdk/azidentity/v1.8.0"},\ | ||
| 322 | {"module":"github.com/Azure/azure-sdk-for-go/sdk/internal","version":"v1.10.0","vcs_hash":"ec0071ebcd0aed0d5d8b5075798b7a1655618184bfbc041225117314cd8e7b6f","timestamp":"2024-07-16T00:19:52Z","subdir":"sdk/internal","vcs_ref":"refs/tags/sdk/internal/v1.10.0"},\ | ||
| 323 | {"module":"github.com/cilium/ebpf","version":"v0.11.0","vcs_hash":"97c993719bbaecd5e3098a8f78f8fc31685066f8e93a9b0363fe9924048beb14","timestamp":"2023-07-06T12:08:51Z","subdir":"","vcs_ref":"refs/tags/v0.11.0"},\ | ||
| 324 | {"module":"github.com/NYTimes/gziphandler","version":"v0.0.0-20170623195520-56545f4a5d46","vcs_hash":"8a7f0144b147a12bb29a2d86a514ce50f52a04d967d93788d850075bf4e43a36","timestamp":"2017-06-23T19:55:20Z","subdir":"","vcs_ref":""},\ | ||
| 325 | {"module":"github.com/skratchdot/open-golang","version":"v0.0.0-20200116055534-eef842397966","vcs_hash":"2049e06101e5abb574af5068dfb1255087c23cd963db0e1f0c82585b42e02bf4","timestamp":"2020-01-16T05:55:34Z","subdir":"","vcs_ref":""},\ | ||
| 326 | {"module":"github.com/magiconair/properties","version":"v1.5.3","vcs_hash":"d96b4b0c7ecc137249800d1b95fece0b9fca1b6978650bd2a8be72d541a097fd","timestamp":"2015-06-01T22:12:01Z","subdir":"","vcs_ref":"refs/tags/v1.5.3"},\ | ||
| 327 | {"module":"github.com/jonboulle/clockwork","version":"v0.5.0","vcs_hash":"8a9b3a40ae13b2679138bcbfbe409f1586f92c23e873f4e219066c6596debc26","timestamp":"2024-11-29T18:02:53Z","subdir":"","vcs_ref":"refs/tags/v0.5.0"},\ | ||
| 328 | {"module":"github.com/checkpoint-restore/go-criu/v7","version":"v7.2.0","vcs_hash":"cd3a96bfb455f01e0ad41b83fe0a2ba40c017e12b43cf536dd72401c0a9efa9b","timestamp":"2024-09-09T09:30:43Z","subdir":"","vcs_ref":"refs/tags/v7.2.0"},\ | ||
| 329 | {"module":"github.com/checkpoint-restore/checkpointctl","version":"v1.3.0","vcs_hash":"2c7723c5a9ee119e95480471084db495771076bc7a1f870bc1cba6832e279438","timestamp":"2024-10-23T09:47:41Z","subdir":"","vcs_ref":"refs/tags/v1.3.0"},\ | ||
| 330 | {"module":"github.com/kisielk/errcheck","version":"v1.5.0","vcs_hash":"2ae681313b6ac49c6c60836f406eed1f7f4db5b86a3027f0ec720f5984386390","timestamp":"2021-01-05T19:12:31Z","subdir":"","vcs_ref":"refs/tags/v1.5.0"},\ | ||
| 331 | {"module":"github.com/kisielk/gotool","version":"v1.0.0","vcs_hash":"5f448e8a93894c89c55e73478ef6dc8a0a1a6a3fd3fe3a2b5cd5e03e65915fb1","timestamp":"2018-02-21T18:54:26Z","subdir":"","vcs_ref":"refs/tags/v1.0.0"},\ | ||
| 332 | {"module":"github.com/Shopify/logrus-bugsnag","version":"v0.0.0-20170309145241-6dbc35f2c30d","vcs_hash":"32b9430ae515731f656e10a931bd6ca61d5ea940c15245ea2c8bb98990560cfd","timestamp":"2017-03-09T14:52:41Z","subdir":"","vcs_ref":""},\ | ||
| 333 | {"module":"github.com/Shopify/logrus-bugsnag","version":"v0.0.0-20171204204709-577dee27f20d","vcs_hash":"60f0c216a86b2a3136ecc6c76cf68c4fd064e2bfaf1e61e6d3393fec9102f03d","timestamp":"2017-12-04T20:47:09Z","subdir":"","vcs_ref":""},\ | ||
| 334 | {"module":"github.com/imdario/mergo","version":"v0.3.16","vcs_hash":"290fb19f9a5f9073db90468b4dc0e8fe8311dc6cedba860d5135f4d0e7fd7ecc","timestamp":"2023-04-02T14:27:58Z","subdir":"","vcs_ref":"refs/tags/v0.3.16"},\ | ||
| 335 | {"module":"github.com/gregjones/httpcache","version":"v0.0.0-20180305231024-9cad4c3443a7","vcs_hash":"1a426dcf2bd73bb01f3e2a33b6dda0049c74e6ae66ae07236e3326ff6ce2b6fc","timestamp":"2018-03-05T23:10:24Z","subdir":"","vcs_ref":""},\ | ||
| 336 | {"module":"github.com/onsi/gomega","version":"v1.19.0","vcs_hash":"28dcd87c5118c456f54d669a43808a7357ca11e54faeb05c921b4d75a1a5f1b4","timestamp":"2022-03-25T19:12:09Z","subdir":"","vcs_ref":"refs/tags/v1.19.0"},\ | ||
| 337 | {"module":"github.com/onsi/gomega","version":"v1.7.1","vcs_hash":"eca01df4f63425b54410888126f5e562e7f2c689d9483249110a2f793909648b","timestamp":"2019-10-30T17:12:58Z","subdir":"","vcs_ref":"refs/tags/v1.7.1"},\ | ||
| 338 | {"module":"github.com/onsi/gomega","version":"v1.9.0","vcs_hash":"728f44b7af3fd5cab91499df1e92a9d2c3e67004ea59ac1e4a549fb2ca6763a8","timestamp":"2020-02-01T10:40:48Z","subdir":"","vcs_ref":"refs/tags/v1.9.0"},\ | ||
| 339 | {"module":"github.com/onsi/ginkgo","version":"v1.12.0","vcs_hash":"1fa773d747594333c67867f9bdc536ee1286d76aa754e875bec3818f99d1318b","timestamp":"2020-02-01T10:35:24Z","subdir":"","vcs_ref":"refs/tags/v1.12.0"},\ | ||
| 340 | {"module":"github.com/onsi/ginkgo","version":"v1.6.0","vcs_hash":"084961c940c1064ad8f72342797a7f84ceb5184e0f4f98076f0ac0a75a0a376f","timestamp":"2018-07-17T16:34:38Z","subdir":"","vcs_ref":"refs/tags/v1.6.0"},\ | ||
| 341 | {"module":"github.com/onsi/ginkgo/v2","version":"v2.19.0","vcs_hash":"8e5a756c057f3a6e0e02b0cd368f60ee45b7e8f9b97731510611270f4a9e1770","timestamp":"2024-05-24T13:49:06Z","subdir":"","vcs_ref":"refs/tags/v2.19.0"},\ | ||
| 342 | {"module":"github.com/anchore/go-struct-converter","version":"v0.0.0-20221118182256-c68fdcfa2092","vcs_hash":"4be54006369c9c3bb6a42a67721ee3e3e0f1aab0f71192fdc85f8dc980af1bd6","timestamp":"2022-11-18T18:22:56Z","subdir":"","vcs_ref":""},\ | ||
| 343 | {"module":"github.com/apparentlymart/go-textseg/v15","version":"v15.0.0","vcs_hash":"2ad90a9579325698fb8eedc37a5bb5c32c0df927e2e2029b3cfa6369b0aad683","timestamp":"2023-08-29T15:35:34Z","subdir":"","vcs_ref":"refs/tags/v15.0.0"},\ | ||
| 344 | {"module":"github.com/apparentlymart/go-cidr","version":"v1.0.1","vcs_hash":"78882067332ee02e3c72ccc9d03c697f04b24132ddd74da1593a953f0b833469","timestamp":"2019-08-17T16:12:28Z","subdir":"","vcs_ref":"refs/tags/v1.0.1"},\ | ||
| 345 | {"module":"github.com/Microsoft/go-winio","version":"v0.6.2","vcs_hash":"963154633520174004b7a508de4bfa23c0374f9312f6db845c29aa3cb751d708","timestamp":"2024-04-09T20:07:04Z","subdir":"","vcs_ref":"refs/tags/v0.6.2"},\ | ||
| 346 | {"module":"github.com/Microsoft/hcsshim","version":"v0.12.9","vcs_hash":"05dc4d58e83373d88f474ae8e70744afab6cb5a48243bd4618d3a0e36276f49a","timestamp":"2024-10-30T01:31:23Z","subdir":"","vcs_ref":"refs/tags/v0.12.9"},\ | ||
| 347 | {"module":"github.com/russross/blackfriday","version":"v1.6.0","vcs_hash":"45882c51d4da17f32775abbdabd353753e5115f6ec6282c3bf028fe3471fc743","timestamp":"2020-10-27T03:46:40Z","subdir":"","vcs_ref":"refs/tags/v1.6.0"},\ | ||
| 348 | {"module":"github.com/russross/blackfriday/v2","version":"v2.1.0","vcs_hash":"6dd1604eceba1790dbf7f827f1e22a5866a5348a2ab616daed7363a6e16e081d","timestamp":"2020-10-27T03:47:54Z","subdir":"v2","vcs_ref":"refs/tags/v2.1.0"},\ | ||
| 349 | {"module":"github.com/josharian/intern","version":"v1.0.0","vcs_hash":"273d42676826fc8f106c11c2800d01690a09463878fa115700b2e26df24a2440","timestamp":"2019-12-14T22:12:22Z","subdir":"","vcs_ref":"refs/tags/v1.0.0"},\ | ||
| 350 | {"module":"github.com/kr/pretty","version":"v0.1.0","vcs_hash":"0f21d99b403d8e61d556bfa775400b5cd3eeb5d2fb19e978a43ff5e77dae75ee","timestamp":"2018-05-06T08:33:45Z","subdir":"","vcs_ref":"refs/tags/v0.1.0"},\ | ||
| 351 | {"module":"github.com/kr/pretty","version":"v0.3.1","vcs_hash":"487dccea2d19da29e6f873ffd57f7f4d33720781a3f60bb9f852176acb476435","timestamp":"2022-08-29T23:03:05Z","subdir":"","vcs_ref":"refs/tags/v0.3.1"},\ | ||
| 352 | {"module":"github.com/kr/pretty","version":"v0.2.1","vcs_hash":"910eaae1a45b64a385e9b5cf589986cb7c9441f3e51dafccad658a47f2b9d937","timestamp":"2020-07-29T04:02:43Z","subdir":"","vcs_ref":"refs/tags/v0.2.1"},\ | ||
| 353 | {"module":"github.com/kr/logfmt","version":"v0.0.0-20140226030751-b84e30acd515","vcs_hash":"e035982996fb3352cf0880f1bb882f434fcb4adc3e775981b88072f2a379ec80","timestamp":"2014-02-26T03:07:51Z","subdir":"","vcs_ref":""},\ | ||
| 354 | {"module":"github.com/kr/text","version":"v0.1.0","vcs_hash":"d47a4a089998b1398264c79fffcb25588459baa28396ff9e275fff9f4995519a","timestamp":"2018-05-06T08:24:08Z","subdir":"","vcs_ref":"refs/tags/v0.1.0"},\ | ||
| 355 | {"module":"github.com/kr/text","version":"v0.2.0","vcs_hash":"62674ecb33f72b9ab66dd856fe2e651dbf7344dea40ba5132203c7b4b32cfd61","timestamp":"2020-02-14T20:31:06Z","subdir":"","vcs_ref":"refs/tags/v0.2.0"},\ | ||
| 356 | {"module":"github.com/kr/pty","version":"v1.1.1","vcs_hash":"1bac58bd1947d8ae4f18469faf2550b830a1ff3614f2644b00e44b1dc16e13ec","timestamp":"2018-01-13T18:08:13Z","subdir":"","vcs_ref":"refs/tags/v1.1.1"},\ | ||
| 357 | {"module":"github.com/xhit/go-str2duration/v2","version":"v2.1.0","vcs_hash":"395a3ddd7e351b7b882dc20af4936a00bd11a84147f83ac7a7c25f8093a51cb3","timestamp":"2022-12-07T00:32:32Z","subdir":"","vcs_ref":"refs/tags/v2.1.0"},\ | ||
| 358 | {"module":"github.com/containers/ocicrypt","version":"v1.2.0","vcs_hash":"f270df24d55b7b03c3e1339dbc127d2143f8e542d2f64535619b351cae148e99","timestamp":"2024-07-01T13:35:23Z","subdir":"","vcs_ref":"refs/tags/v1.2.0"},\ | ||
| 359 | {"module":"github.com/juju/loggo","version":"v0.0.0-20190526231331-6e530bcce5d8","vcs_hash":"eaf37a5284a67e209a1c088360157366cb7f05d143b944db7660e83c541adf4c","timestamp":"2019-05-26T23:13:31Z","subdir":"","vcs_ref":""},\ | ||
| 360 | {"module":"github.com/aws/smithy-go","version":"v1.20.3","vcs_hash":"c1f9fc4ebee11068a7c704ab9d4d1dbf1f08118e5d144a287927a03613bf5c94","timestamp":"2024-06-27T21:33:29Z","subdir":"","vcs_ref":"refs/tags/v1.20.3"},\ | ||
| 361 | {"module":"github.com/aws/aws-sdk-go-v2","version":"v1.30.3","vcs_hash":"922a4404b83a60bff9878846e9559afd00a4e40117c850bf4090f652793ad5fe","timestamp":"2024-07-10T22:57:16Z","subdir":"","vcs_ref":"refs/tags/v1.30.3"},\ | ||
| 362 | {"module":"github.com/aws/aws-sdk-go-v2/credentials","version":"v1.17.27","vcs_hash":"3eb1a185525c0b37eabb3bd79e0df48bca3470a8e8c1592d9ae44b14c981245b","timestamp":"2024-07-18T19:40:11Z","subdir":"credentials","vcs_ref":"refs/tags/credentials/v1.17.27"},\ | ||
| 363 | {"module":"github.com/aws/aws-sdk-go-v2/service/sts","version":"v1.30.3","vcs_hash":"922a4404b83a60bff9878846e9559afd00a4e40117c850bf4090f652793ad5fe","timestamp":"2024-07-10T22:57:16Z","subdir":"service/sts","vcs_ref":"refs/tags/service/sts/v1.30.3"},\ | ||
| 364 | {"module":"github.com/aws/aws-sdk-go-v2/service/sso","version":"v1.22.4","vcs_hash":"3eb1a185525c0b37eabb3bd79e0df48bca3470a8e8c1592d9ae44b14c981245b","timestamp":"2024-07-18T19:40:11Z","subdir":"service/sso","vcs_ref":"refs/tags/service/sso/v1.22.4"},\ | ||
| 365 | {"module":"github.com/aws/aws-sdk-go-v2/service/s3","version":"v1.58.2","vcs_hash":"922a4404b83a60bff9878846e9559afd00a4e40117c850bf4090f652793ad5fe","timestamp":"2024-07-10T22:57:16Z","subdir":"service/s3","vcs_ref":"refs/tags/service/s3/v1.58.2"},\ | ||
| 366 | {"module":"github.com/aws/aws-sdk-go-v2/service/internal/s3shared","version":"v1.17.15","vcs_hash":"922a4404b83a60bff9878846e9559afd00a4e40117c850bf4090f652793ad5fe","timestamp":"2024-07-10T22:57:16Z","subdir":"service/internal/s3shared","vcs_ref":"refs/tags/service/internal/s3shared/v1.17.15"},\ | ||
| 367 | {"module":"github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding","version":"v1.11.3","vcs_hash":"955a184cf2a0f33544045aa04663746a0ac0b9af6f2b103a53c7e0971c83f741","timestamp":"2024-06-28T19:27:56Z","subdir":"service/internal/accept-encoding","vcs_ref":"refs/tags/service/internal/accept-encoding/v1.11.3"},\ | ||
| 368 | {"module":"github.com/aws/aws-sdk-go-v2/service/internal/presigned-url","version":"v1.11.17","vcs_hash":"922a4404b83a60bff9878846e9559afd00a4e40117c850bf4090f652793ad5fe","timestamp":"2024-07-10T22:57:16Z","subdir":"service/internal/presigned-url","vcs_ref":"refs/tags/service/internal/presigned-url/v1.11.17"},\ | ||
| 369 | {"module":"github.com/aws/aws-sdk-go-v2/service/internal/checksum","version":"v1.3.17","vcs_hash":"922a4404b83a60bff9878846e9559afd00a4e40117c850bf4090f652793ad5fe","timestamp":"2024-07-10T22:57:16Z","subdir":"service/internal/checksum","vcs_ref":"refs/tags/service/internal/checksum/v1.3.17"},\ | ||
| 370 | {"module":"github.com/aws/aws-sdk-go-v2/service/ssooidc","version":"v1.26.4","vcs_hash":"922a4404b83a60bff9878846e9559afd00a4e40117c850bf4090f652793ad5fe","timestamp":"2024-07-10T22:57:16Z","subdir":"service/ssooidc","vcs_ref":"refs/tags/service/ssooidc/v1.26.4"},\ | ||
| 371 | {"module":"github.com/aws/aws-sdk-go-v2/internal/endpoints/v2","version":"v2.6.15","vcs_hash":"922a4404b83a60bff9878846e9559afd00a4e40117c850bf4090f652793ad5fe","timestamp":"2024-07-10T22:57:16Z","subdir":"internal/endpoints","vcs_ref":"refs/tags/internal/endpoints/v2.6.15"},\ | ||
| 372 | {"module":"github.com/aws/aws-sdk-go-v2/internal/v4a","version":"v1.3.15","vcs_hash":"922a4404b83a60bff9878846e9559afd00a4e40117c850bf4090f652793ad5fe","timestamp":"2024-07-10T22:57:16Z","subdir":"internal/v4a","vcs_ref":"refs/tags/internal/v4a/v1.3.15"},\ | ||
| 373 | {"module":"github.com/aws/aws-sdk-go-v2/internal/configsources","version":"v1.3.15","vcs_hash":"922a4404b83a60bff9878846e9559afd00a4e40117c850bf4090f652793ad5fe","timestamp":"2024-07-10T22:57:16Z","subdir":"internal/configsources","vcs_ref":"refs/tags/internal/configsources/v1.3.15"},\ | ||
| 374 | {"module":"github.com/aws/aws-sdk-go-v2/internal/ini","version":"v1.8.0","vcs_hash":"1019db3148ced92df014f3223b25aa98b2ba2efdbeabf15f6118d4ee009ddf00","timestamp":"2024-02-13T19:15:02Z","subdir":"internal/ini","vcs_ref":"refs/tags/internal/ini/v1.8.0"},\ | ||
| 375 | {"module":"github.com/aws/aws-sdk-go-v2/config","version":"v1.27.27","vcs_hash":"3eb1a185525c0b37eabb3bd79e0df48bca3470a8e8c1592d9ae44b14c981245b","timestamp":"2024-07-18T19:40:11Z","subdir":"config","vcs_ref":"refs/tags/config/v1.27.27"},\ | ||
| 376 | {"module":"github.com/aws/aws-sdk-go-v2/feature/ec2/imds","version":"v1.16.11","vcs_hash":"922a4404b83a60bff9878846e9559afd00a4e40117c850bf4090f652793ad5fe","timestamp":"2024-07-10T22:57:16Z","subdir":"feature/ec2/imds","vcs_ref":"refs/tags/feature/ec2/imds/v1.16.11"},\ | ||
| 377 | {"module":"github.com/aws/aws-sdk-go-v2/feature/s3/manager","version":"v1.17.8","vcs_hash":"3eb1a185525c0b37eabb3bd79e0df48bca3470a8e8c1592d9ae44b14c981245b","timestamp":"2024-07-18T19:40:11Z","subdir":"feature/s3/manager","vcs_ref":"refs/tags/feature/s3/manager/v1.17.8"},\ | ||
| 378 | {"module":"github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream","version":"v1.6.3","vcs_hash":"955a184cf2a0f33544045aa04663746a0ac0b9af6f2b103a53c7e0971c83f741","timestamp":"2024-06-28T19:27:56Z","subdir":"aws/protocol/eventstream","vcs_ref":"refs/tags/aws/protocol/eventstream/v1.6.3"},\ | ||
| 379 | {"module":"github.com/rogpeppe/fastuuid","version":"v1.2.0","vcs_hash":"20ca2e2cf2990cc136cad7958992d06abd356dc16a58362afd2bd51be48ae0ac","timestamp":"2019-07-08T15:05:45Z","subdir":"","vcs_ref":"refs/tags/v1.2.0"},\ | ||
| 380 | {"module":"github.com/rogpeppe/go-internal","version":"v1.13.1","vcs_hash":"6a8cf885e1574a3d34afe5d7b0a7b4272403e5d756cae287c06d90a7e9eb2d09","timestamp":"2024-09-23T11:44:11Z","subdir":"","vcs_ref":"refs/tags/v1.13.1"},\ | ||
| 381 | {"module":"github.com/zeebo/errs","version":"v1.2.2","vcs_hash":"ab1d23bd1ffcc30e5c5298fa86862646b17d8fcee82bc359c85bbe4ff14f3d35","timestamp":"2019-06-17T12:32:20Z","subdir":"","vcs_ref":"refs/tags/v1.2.2"},\ | ||
| 382 | {"module":"github.com/cncf/xds/go","version":"v0.0.0-20240905190251-b4127c9b8d78","vcs_hash":"59411b899b4de9b9df58397f83b829e20e5646fece957765821dd0b69c8f9611","timestamp":"2024-09-05T19:02:51Z","subdir":"go","vcs_ref":""},\ | ||
| 383 | {"module":"github.com/niemeyer/pretty","version":"v0.0.0-20200227124842-a10e7caefd8e","vcs_hash":"7b69594221f05faea56a0d177d0ca9efaac2b2e4ba4f7539c68b87cfe214c6ef","timestamp":"2020-02-27T12:48:42Z","subdir":"","vcs_ref":""},\ | ||
| 384 | {"module":"github.com/AdamKorcz/go-118-fuzz-build","version":"v0.0.0-20231105174938-2b5cbb29f3e2","vcs_hash":"7b745e973a8111f30e1e95d1a88ce98b403177bbe2a1b34d1eb16d90d5352448","timestamp":"2023-11-05T17:49:38Z","subdir":"","vcs_ref":""},\ | ||
| 385 | {"module":"github.com/vbatts/tar-split","version":"v0.11.6","vcs_hash":"c62fb2ec8c4c547dd85124481813fc68c8e55cb36aa228f3c9b1a6d7d2e583d4","timestamp":"2024-09-27T00:14:20Z","subdir":"","vcs_ref":"refs/tags/v0.11.6"},\ | ||
| 386 | {"module":"github.com/stretchr/testify","version":"v1.7.1","vcs_hash":"719be8c83742fcd5ea6c60cce03388f5367bceeb8522379d83d0110c884426a5","timestamp":"2022-03-15T21:08:43Z","subdir":"","vcs_ref":"refs/tags/v1.7.1"},\ | ||
| 387 | {"module":"github.com/stretchr/testify","version":"v1.7.0","vcs_hash":"f87883f9ef1ad6bd6ecb844fe9108ae126c4dfab49080e5fb37bd27ca64417be","timestamp":"2021-01-13T09:54:11Z","subdir":"","vcs_ref":"refs/tags/v1.7.0"},\ | ||
| 388 | {"module":"github.com/stretchr/testify","version":"v1.4.0","vcs_hash":"9e52b2f6204cf4daab20f41d30029448e95ae1a472c112e86dbdd68a16e14a2e","timestamp":"2019-07-12T00:01:36Z","subdir":"","vcs_ref":"refs/tags/v1.4.0"},\ | ||
| 389 | {"module":"github.com/stretchr/testify","version":"v1.6.1","vcs_hash":"782e156612c5b8f52bb9daab64be055460c9e50ce18305034fc5c8954a4e6b4a","timestamp":"2020-06-05T10:48:45Z","subdir":"","vcs_ref":"refs/tags/v1.6.1"},\ | ||
| 390 | {"module":"github.com/stretchr/testify","version":"v1.8.0","vcs_hash":"39798af0c50431f2d4ce305d1aea9c6d13ad19d1ab6af227d59ebb3580e7a7f0","timestamp":"2022-06-29T10:56:06Z","subdir":"","vcs_ref":"refs/tags/v1.8.0"},\ | ||
| 391 | {"module":"github.com/stretchr/testify","version":"v1.5.1","vcs_hash":"725790d9265526f327bc846ba6025be038cd5cdf6367be0f622409ad58ac9aa0","timestamp":"2020-02-19T20:56:11Z","subdir":"","vcs_ref":"refs/tags/v1.5.1"},\ | ||
| 392 | {"module":"github.com/stretchr/testify","version":"v1.10.0","vcs_hash":"9f66a27582a9e6eca9bf419e24508c10315317c311c9f2dd15c7944badd99385","timestamp":"2024-11-12T22:58:45Z","subdir":"","vcs_ref":"refs/tags/v1.10.0"},\ | ||
| 393 | {"module":"github.com/stretchr/testify","version":"v1.2.2","vcs_hash":"2bb8c4aae39dd3460bd5d8094b70444e65cec7f2390b1c2a41ffb7d431d41317","timestamp":"2018-06-09T11:55:18Z","subdir":"","vcs_ref":"refs/tags/v1.2.2"},\ | ||
| 394 | {"module":"github.com/stretchr/testify","version":"v1.8.1","vcs_hash":"d45ab2961914a9a432c9fbbee6a5e2e51a7c04a9c7b64b567c83074a7152bb5f","timestamp":"2022-10-20T10:50:56Z","subdir":"","vcs_ref":"refs/tags/v1.8.1"},\ | ||
| 395 | {"module":"github.com/stretchr/testify","version":"v1.3.0","vcs_hash":"15f4be955793ecb9ef81031cf64191211271265868a72e4bf25c409e978a8ce8","timestamp":"2019-01-03T19:31:39Z","subdir":"","vcs_ref":"refs/tags/v1.3.0"},\ | ||
| 396 | {"module":"github.com/stretchr/objx","version":"v0.1.0","vcs_hash":"39828321881a0709a36a2d1edde8fc9928ddd471ebd0bbdf7012076e7214bb02","timestamp":"2018-01-06T01:13:53Z","subdir":"","vcs_ref":"refs/tags/v0.1.0"},\ | ||
| 397 | {"module":"github.com/stretchr/objx","version":"v0.4.0","vcs_hash":"4ca532f3c50e5c7c19e3dc9316d05026ba007fe253a359de8b2a8492d16f1faa","timestamp":"2022-04-12T09:17:15Z","subdir":"","vcs_ref":"refs/tags/v0.4.0"},\ | ||
| 398 | {"module":"github.com/stretchr/objx","version":"v0.2.0","vcs_hash":"982a1df420b1f34eee71122e02865aa89e1ea251dc09362265917bd0e0ca3995","timestamp":"2019-04-09T12:31:02Z","subdir":"","vcs_ref":"refs/tags/v0.2.0"},\ | ||
| 399 | {"module":"github.com/stretchr/objx","version":"v0.5.0","vcs_hash":"956998068f3cc530e52afae6bcb80d92158cdaee2b707bdfdaf132ff05de3b4f","timestamp":"2022-09-18T03:09:40Z","subdir":"","vcs_ref":"refs/tags/v0.5.0"},\ | ||
| 400 | {"module":"github.com/stretchr/objx","version":"v0.1.1","vcs_hash":"324a79f9170fef44f826e43999370c6ec3bc3be6044c9a4c2e3eb97cdf5ac743","timestamp":"2018-01-25T22:19:50Z","subdir":"","vcs_ref":"refs/tags/v0.1.1"},\ | ||
| 401 | {"module":"github.com/stretchr/objx","version":"v0.5.2","vcs_hash":"fe4a57d26379977ebf461da8c71a20095b9f973a91d55076b67fa0de48206a1e","timestamp":"2024-02-29T09:57:51Z","subdir":"","vcs_ref":"refs/tags/v0.5.2"},\ | ||
| 402 | {"module":"github.com/mgutz/ansi","version":"v0.0.0-20170206155736-9520e82c474b","vcs_hash":"f38805371ceca34945d620f33580bc80b8d8946d490670358956c3579639e7ad","timestamp":"2017-02-06T15:57:36Z","subdir":"","vcs_ref":""},\ | ||
| 403 | {"module":"github.com/inconshreveable/mousetrap","version":"v1.0.0","vcs_hash":"bdd1bbf309f6078c2e930609779f6207bad79817ed60bcb7a66df8a5735580f3","timestamp":"2014-10-17T20:07:13Z","subdir":"","vcs_ref":"refs/tags/v1.0.0"},\ | ||
| 404 | {"module":"github.com/inconshreveable/mousetrap","version":"v1.1.0","vcs_hash":"a9f0ac4cf05240ceb9790811cbd8ab3cbdcd404501a9ca5a402a28033e7235d8","timestamp":"2022-11-27T22:01:53Z","subdir":"","vcs_ref":"refs/tags/v1.1.0"},\ | ||
| 405 | {"module":"github.com/cpuguy83/go-md2man/v2","version":"v2.0.6","vcs_hash":"0b9036af46cc50aa9433a461266e6ef3b3645807c3d1fa49cc53eb201e011781","timestamp":"2024-12-16T17:50:50Z","subdir":"","vcs_ref":"refs/tags/v2.0.6"},\ | ||
| 406 | {"module":"github.com/secure-systems-lab/go-securesystemslib","version":"v0.4.0","vcs_hash":"5083dc847d3360adddd82d9406c0a48660073abdf4b4466695690b2bb8758be2","timestamp":"2022-05-30T16:22:06Z","subdir":"","vcs_ref":"refs/tags/v0.4.0"},\ | ||
| 407 | {"module":"github.com/hpcloud/tail","version":"v1.0.0","vcs_hash":"9dfd08c5a4f07a465c8fe6fd4e5e96ac82ccaeba87143831c1a6290e944a3c84","timestamp":"2016-04-28T00:30:50Z","subdir":"","vcs_ref":"refs/tags/v1.0.0"},\ | ||
| 408 | {"module":"github.com/peterbourgon/diskv","version":"v2.0.1+incompatible","vcs_hash":"8625edde317f1f22cc2818a98d9abcbe70bd7594027c378d1af3b3b0354ac6fe","timestamp":"2017-08-14T17:35:58Z","subdir":"","vcs_ref":"refs/tags/v2.0.1"},\ | ||
| 409 | {"module":"github.com/cespare/xxhash/v2","version":"v2.3.0","vcs_hash":"4cf9134295bfe252b2146507759140e7050e00021c322cfd0d38a231ef3c0b20","timestamp":"2024-04-04T20:00:10Z","subdir":"","vcs_ref":"refs/tags/v2.3.0"},\ | ||
| 410 | {"module":"github.com/santhosh-tekuri/jsonschema/v5","version":"v5.3.1","vcs_hash":"9964fa94eb99b405ebcfa3af19e0e16d07aef590c7af497cdfc6743aa4544776","timestamp":"2023-07-22T18:48:50Z","subdir":"","vcs_ref":"refs/tags/v5.3.1"},\ | ||
| 411 | {"module":"github.com/mistifyio/go-zfs/v3","version":"v3.0.1","vcs_hash":"14a067948c9001a8443e88278679f597430282136bcd53894095ccfed51182ca","timestamp":"2023-05-23T02:04:01Z","subdir":"","vcs_ref":"refs/tags/v3.0.1"},\ | ||
| 412 | {"module":"go.uber.org/mock","version":"v0.5.0","vcs_hash":"84690e1069b4ad70e2d5fec3d8f934623d7d299829df8ba8c5fcaeec38806c67","timestamp":"2024-10-17T21:35:14Z","subdir":"","vcs_ref":"refs/tags/v0.5.0"},\ | ||
| 413 | {"module":"go.uber.org/goleak","version":"v1.3.0","vcs_hash":"358840d6c8d4d8a268b95a505fd6f93da14af34041c0824fe51920b4cd523ae2","timestamp":"2023-10-24T16:28:03Z","subdir":"","vcs_ref":"refs/tags/v1.3.0"},\ | ||
| 414 | {"module":"sigs.k8s.io/structured-merge-diff/v4","version":"v4.4.1","vcs_hash":"4a63ad967da7904ce5fc3bb9f38fa10e528be9f375ff26c2f8dfbf8691298928","timestamp":"2023-10-27T03:34:02Z","subdir":"","vcs_ref":"refs/tags/v4.4.1"},\ | ||
| 415 | {"module":"sigs.k8s.io/json","version":"v0.0.0-20221116044647-bc3834ca7abd","vcs_hash":"75caa32e3677fcec80221cbc877ff77fe39daae57f9bb7addb78b26f595031fe","timestamp":"2022-11-16T04:46:47Z","subdir":"","vcs_ref":""},\ | ||
| 416 | {"module":"sigs.k8s.io/yaml","version":"v1.4.0","vcs_hash":"1a5189a2f11994a0ed72dcd69d5046be49f0ac8890830fc52ddb333e63e84cd5","timestamp":"2023-10-24T17:13:34Z","subdir":"","vcs_ref":"refs/tags/v1.4.0"},\ | ||
| 417 | {"module":"kernel.org/pub/linux/libs/security/libcap/cap","version":"v1.2.73","vcs_hash":"260c81b23c2692359fafdd3e143836fde2f8faa8ed59eadf56141d3d2c898d98","timestamp":"2024-12-02T04:18:58Z","subdir":"cap","vcs_ref":"refs/tags/cap/v1.2.73"},\ | ||
| 418 | {"module":"kernel.org/pub/linux/libs/security/libcap/psx","version":"v1.2.73","vcs_hash":"260c81b23c2692359fafdd3e143836fde2f8faa8ed59eadf56141d3d2c898d98","timestamp":"2024-12-02T04:18:58Z","subdir":"psx","vcs_ref":"refs/tags/psx/v1.2.73"},\ | ||
| 419 | {"module":"go.mozilla.org/pkcs7","version":"v0.9.0","vcs_hash":"1222396cde93c85d8db5f16a7e20ad86a4b44eb93169f41bad5eb019aa182aac","timestamp":"2024-09-04T22:00:51Z","subdir":"","vcs_ref":"refs/tags/v0.9.0"},\ | ||
| 420 | {"module":"cel.dev/expr","version":"v0.19.0","vcs_hash":"cbea25bc9fe77d358c0c7105ec4d3387a645e2879918aef6945299fd172a69c8","timestamp":"2024-12-02T21:06:23Z","subdir":"","vcs_ref":"refs/tags/v0.19.0"},\ | ||
| 421 | {"module":"go.opencensus.io","version":"v0.24.0","vcs_hash":"8607148e6fbec2ab3d0020ea3ffb8bdce7bc15dae97ebec60385afa6ddb97c29","timestamp":"2022-11-03T20:13:50Z","subdir":"","vcs_ref":"refs/tags/v0.24.0"},\ | ||
| 422 | {"module":"golang.org/x/sys","version":"v0.1.0","vcs_hash":"b1e9a27b98fa2dd77074f2947aa9586de17609eb0bdd77672fccab342a0f1a77","timestamp":"2022-10-13T17:17:32Z","subdir":"","vcs_ref":"refs/tags/v0.1.0"},\ | ||
| 423 | {"module":"golang.org/x/sys","version":"v0.30.0","vcs_hash":"cef0b94e63cc5f5b9e0a30e26b3a4b3cbfcf2356d9ce5285e78900231b8efdd8","timestamp":"2025-01-31T15:57:49Z","subdir":"","vcs_ref":"refs/tags/v0.30.0"},\ | ||
| 424 | {"module":"golang.org/x/sys","version":"v0.0.0-20220811171246-fbc7d0a398ab","vcs_hash":"938106f0f34e86c11ae1decb53e24d7293c5a446a646dc74c77598fa32066959","timestamp":"2022-08-11T17:12:46Z","subdir":"","vcs_ref":""},\ | ||
| 425 | {"module":"golang.org/x/mod","version":"v0.22.0","vcs_hash":"5b9ae50077b1fa1d7a79f7e69a15458269de8ead3c36f56e23d2121771ae40cc","timestamp":"2024-11-01T18:50:30Z","subdir":"","vcs_ref":"refs/tags/v0.22.0"},\ | ||
| 426 | {"module":"golang.org/x/oauth2","version":"v0.24.0","vcs_hash":"be89d63080feffbcbe6644bcea46d6fc18206e67876ec876ed0f9049c6538349","timestamp":"2024-11-01T18:29:12Z","subdir":"","vcs_ref":"refs/tags/v0.24.0"},\ | ||
| 427 | {"module":"golang.org/x/term","version":"v0.27.0","vcs_hash":"6e80986253586c744eeb9301c1f4d73cf3fda43e353aa2aeca103d7589f19176","timestamp":"2024-12-04T16:04:05Z","subdir":"","vcs_ref":"refs/tags/v0.27.0"},\ | ||
| 428 | {"module":"golang.org/x/sync","version":"v0.11.0","vcs_hash":"a1ea9c5d66cb424c251553fb8c78853cf27fd86db554b15dc8e4ca40ed88f6f2","timestamp":"2025-01-17T15:49:37Z","subdir":"","vcs_ref":"refs/tags/v0.11.0"},\ | ||
| 429 | {"module":"golang.org/x/crypto","version":"v0.31.0","vcs_hash":"a38aa53b73d0a33a443bb08947f8372e080f4dbcf765ddbe93db05515afa3ed6","timestamp":"2024-12-11T17:50:49Z","subdir":"","vcs_ref":"refs/tags/v0.31.0"},\ | ||
| 430 | {"module":"golang.org/x/net","version":"v0.33.0","vcs_hash":"efb49d6c533f0c4edb5aaa1328290d633a3c9d6b88a92eed26a023d8ff604d7a","timestamp":"2024-12-18T19:34:41Z","subdir":"","vcs_ref":"refs/tags/v0.33.0"},\ | ||
| 431 | {"module":"golang.org/x/exp","version":"v0.0.0-20241108190413-2d47ceb2692f","vcs_hash":"fa78cf25fa01c74cefb0336713724c43d794cf309539a0b58c51aa1c413b6612","timestamp":"2024-11-08T19:04:13Z","subdir":"","vcs_ref":""},\ | ||
| 432 | {"module":"golang.org/x/text","version":"v0.4.0","vcs_hash":"5ad35cfebebfa5b556ca6d44b5026673bb71ab874271a0fc395ab751275779ae","timestamp":"2022-10-14T17:33:59Z","subdir":"","vcs_ref":"refs/tags/v0.4.0"},\ | ||
| 433 | {"module":"golang.org/x/text","version":"v0.21.0","vcs_hash":"7fcb78a8fd04f8a91f109513bdf93dd6c6681a83c61c24ba5d330cc070dad0a6","timestamp":"2024-12-04T16:04:30Z","subdir":"","vcs_ref":"refs/tags/v0.21.0"},\ | ||
| 434 | {"module":"golang.org/x/time","version":"v0.6.0","vcs_hash":"ab204931a58ec8ccf1316657eae3e35ee90a15fe2e4a0eca5017a69b34aa48b9","timestamp":"2024-07-16T16:11:05Z","subdir":"","vcs_ref":"refs/tags/v0.6.0"},\ | ||
| 435 | {"module":"golang.org/x/xerrors","version":"v0.0.0-20220907171357-04be3eba64a2","vcs_hash":"eebbc7ff1ce54422705a4e11c1a375ce3ad751ff9c853e7948e423942bb5e416","timestamp":"2022-09-07T17:13:57Z","subdir":"","vcs_ref":""},\ | ||
| 436 | {"module":"golang.org/x/tools","version":"v0.27.0","vcs_hash":"02f11548c916b8e79c22811551166007244b987085c97a7f2e796447c493e3d8","timestamp":"2024-11-08T16:44:01Z","subdir":"","vcs_ref":"refs/tags/v0.27.0"},\ | ||
| 437 | {"module":"k8s.io/apiserver","version":"v0.31.2","vcs_hash":"afc1d12b75ddb6271d393061a91219c5ec4abed2b3bc79abf007ff5010bd153e","timestamp":"2024-10-23T14:26:55Z","subdir":"","vcs_ref":"refs/tags/v0.31.2"},\ | ||
| 438 | {"module":"k8s.io/apimachinery","version":"v0.31.2","vcs_hash":"26170b50e37f07cc31ef36c1a32f4ba52613fb968ad57ea9c68d51d25490eb11","timestamp":"2024-07-19T19:04:41Z","subdir":"","vcs_ref":"refs/tags/v0.31.2"},\ | ||
| 439 | {"module":"k8s.io/api","version":"v0.31.2","vcs_hash":"0881aba7d7840bd304655ebf83e9beabd459b55c392b44fbac1662b3a77741b4","timestamp":"2024-10-23T13:57:11Z","subdir":"","vcs_ref":"refs/tags/v0.31.2"},\ | ||
| 440 | {"module":"k8s.io/klog/v2","version":"v2.130.1","vcs_hash":"eaab5e8e1958570d9bced9a912298fdaa9472cecec794161f58aebf8c4d1e963","timestamp":"2024-06-20T00:51:19Z","subdir":"","vcs_ref":"refs/tags/v2.130.1"},\ | ||
| 441 | {"module":"k8s.io/component-base","version":"v0.31.2","vcs_hash":"0a0444d5607879352c647e14046b4453a89c85d0519f317078c2ad3cf49856da","timestamp":"2024-10-23T14:11:37Z","subdir":"","vcs_ref":"refs/tags/v0.31.2"},\ | ||
| 442 | {"module":"k8s.io/kube-openapi","version":"v0.0.0-20240228011516-70dd3763d340","vcs_hash":"2634a027d7ac5f2c1c672a4521e633effb71cc8ea765af44381ee81e019f012f","timestamp":"2024-02-28T01:15:16Z","subdir":"","vcs_ref":""},\ | ||
| 443 | {"module":"k8s.io/cri-api","version":"v0.31.2","vcs_hash":"891e2f4aaa1d1ad61a2021f914c621afafb5c6117c4ed588cae65178dc2b15a4","timestamp":"2024-06-24T08:34:43Z","subdir":"","vcs_ref":"refs/tags/v0.31.2"},\ | ||
| 444 | {"module":"k8s.io/kubelet","version":"v0.31.2","vcs_hash":"b828a6d5f9885d79ec9d82e6704c572f1817848c3d0d613b751e2129f9cb406a","timestamp":"2024-10-23T15:02:10Z","subdir":"","vcs_ref":"refs/tags/v0.31.2"},\ | ||
| 445 | {"module":"k8s.io/gengo/v2","version":"v2.0.0-20240228010128-51d4e06bde70","vcs_hash":"e988896d3ab1864ce970af359d84b602c96051a77e8fdb330c86abb79a1a76a6","timestamp":"2024-02-28T01:01:28Z","subdir":"","vcs_ref":""},\ | ||
| 446 | {"module":"k8s.io/utils","version":"v0.0.0-20240711033017-18e509b52bc8","vcs_hash":"97853f3a1c8c98c8da2a9a88dfe3f6c95380fbf82c6261cc711f1c7df391ff62","timestamp":"2024-07-11T03:30:17Z","subdir":"","vcs_ref":""},\ | ||
| 447 | {"module":"k8s.io/client-go","version":"v0.31.2","vcs_hash":"9389426d4052ef158ae65f764f943d4ec3f435c06d553772e40bbd7789392ea6","timestamp":"2024-10-23T14:04:49Z","subdir":"","vcs_ref":"refs/tags/v0.31.2"},\ | ||
| 448 | {"module":"go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace","version":"v0.56.0","vcs_hash":"48c3168b81321d95e77298c427895735ed62dcca9c4c8b4f797f78d60f2ee89c","timestamp":"2024-10-14T15:28:59Z","subdir":"instrumentation/net/http/httptrace/otelhttptrace","vcs_ref":"refs/tags/instrumentation/net/http/httptrace/otelhttptrace/v0.56.0"},\ | ||
| 449 | {"module":"go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp","version":"v0.56.0","vcs_hash":"48c3168b81321d95e77298c427895735ed62dcca9c4c8b4f797f78d60f2ee89c","timestamp":"2024-10-14T15:28:59Z","subdir":"instrumentation/net/http/otelhttp","vcs_ref":"refs/tags/instrumentation/net/http/otelhttp/v0.56.0"},\ | ||
| 450 | {"module":"go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc","version":"v0.56.0","vcs_hash":"48c3168b81321d95e77298c427895735ed62dcca9c4c8b4f797f78d60f2ee89c","timestamp":"2024-10-14T15:28:59Z","subdir":"instrumentation/google.golang.org/grpc/otelgrpc","vcs_ref":"refs/tags/instrumentation/google.golang.org/grpc/otelgrpc/v0.56.0"},\ | ||
| 451 | {"module":"go.opentelemetry.io/contrib/detectors/gcp","version":"v1.32.0","vcs_hash":"5b1d0351329581396ef0beb0319314b5e0bb243738ffd3fac3d1fe9ee9f029a9","timestamp":"2024-11-08T19:09:00Z","subdir":"detectors/gcp","vcs_ref":"refs/tags/detectors/gcp/v1.32.0"},\ | ||
| 452 | {"module":"go.opentelemetry.io/proto/otlp","version":"v1.3.1","vcs_hash":"aaf93de1b99f2caad8d2248ab8d78b4919ad81f9cb07935ba861f3d6619f2525","timestamp":"2024-06-11T17:49:12Z","subdir":"otlp","vcs_ref":"refs/tags/otlp/v1.3.1"},\ | ||
| 453 | {"module":"go.opentelemetry.io/otel","version":"v1.32.0","vcs_hash":"a88bcf462be50b5ec9893d845737cdb0869a6945d49c699596a1c973d2ca76d0","timestamp":"2024-11-08T17:52:26Z","subdir":"","vcs_ref":"refs/tags/v1.32.0"},\ | ||
| 454 | {"module":"go.opentelemetry.io/otel/sdk","version":"v1.32.0","vcs_hash":"a88bcf462be50b5ec9893d845737cdb0869a6945d49c699596a1c973d2ca76d0","timestamp":"2024-11-08T17:52:26Z","subdir":"sdk","vcs_ref":"refs/tags/sdk/v1.32.0"},\ | ||
| 455 | {"module":"go.opentelemetry.io/otel/sdk/metric","version":"v1.32.0","vcs_hash":"a88bcf462be50b5ec9893d845737cdb0869a6945d49c699596a1c973d2ca76d0","timestamp":"2024-11-08T17:52:26Z","subdir":"sdk/metric","vcs_ref":"refs/tags/sdk/metric/v1.32.0"},\ | ||
| 456 | {"module":"go.opentelemetry.io/otel/metric","version":"v1.32.0","vcs_hash":"a88bcf462be50b5ec9893d845737cdb0869a6945d49c699596a1c973d2ca76d0","timestamp":"2024-11-08T17:52:26Z","subdir":"metric","vcs_ref":"refs/tags/metric/v1.32.0"},\ | ||
| 457 | {"module":"go.opentelemetry.io/otel/trace","version":"v1.32.0","vcs_hash":"a88bcf462be50b5ec9893d845737cdb0869a6945d49c699596a1c973d2ca76d0","timestamp":"2024-11-08T17:52:26Z","subdir":"trace","vcs_ref":"refs/tags/trace/v1.32.0"},\ | ||
| 458 | {"module":"go.opentelemetry.io/otel/exporters/prometheus","version":"v0.42.0","vcs_hash":"5781e823bcdbe01100cd1dc8d89e81f073e0a26cb157df3e236c81af5d21f7e4","timestamp":"2023-09-28T19:28:51Z","subdir":"exporters/prometheus","vcs_ref":"refs/tags/exporters/prometheus/v0.42.0"},\ | ||
| 459 | {"module":"go.opentelemetry.io/otel/exporters/stdout/stdouttrace","version":"v1.31.0","vcs_hash":"32a87864cfa3320f417f47862642c312d2c19908839bd781f0f1073a0a9b899e","timestamp":"2024-10-11T16:59:27Z","subdir":"exporters/stdout/stdouttrace","vcs_ref":""},\ | ||
| 460 | {"module":"go.opentelemetry.io/otel/exporters/jaeger","version":"v1.17.0","vcs_hash":"7257a93ca31d121ae8fee06e2ce5824c46e65e351d7b2daf9b1a27a10d8bb60d","timestamp":"2023-08-28T14:50:03Z","subdir":"exporters/jaeger","vcs_ref":"refs/tags/exporters/jaeger/v1.17.0"},\ | ||
| 461 | {"module":"go.opentelemetry.io/otel/exporters/otlp/otlptrace","version":"v1.31.0","vcs_hash":"32a87864cfa3320f417f47862642c312d2c19908839bd781f0f1073a0a9b899e","timestamp":"2024-10-11T16:59:27Z","subdir":"exporters/otlp/otlptrace","vcs_ref":"refs/tags/exporters/otlp/otlptrace/v1.31.0"},\ | ||
| 462 | {"module":"go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp","version":"v1.31.0","vcs_hash":"32a87864cfa3320f417f47862642c312d2c19908839bd781f0f1073a0a9b899e","timestamp":"2024-10-11T16:59:27Z","subdir":"exporters/otlp/otlptrace/otlptracehttp","vcs_ref":"refs/tags/exporters/otlp/otlptrace/otlptracehttp/v1.31.0"},\ | ||
| 463 | {"module":"go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc","version":"v1.31.0","vcs_hash":"32a87864cfa3320f417f47862642c312d2c19908839bd781f0f1073a0a9b899e","timestamp":"2024-10-11T16:59:27Z","subdir":"exporters/otlp/otlptrace/otlptracegrpc","vcs_ref":"refs/tags/exporters/otlp/otlptrace/otlptracegrpc/v1.31.0"},\ | ||
| 464 | {"module":"go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp","version":"v1.31.0","vcs_hash":"32a87864cfa3320f417f47862642c312d2c19908839bd781f0f1073a0a9b899e","timestamp":"2024-10-11T16:59:27Z","subdir":"exporters/otlp/otlpmetric/otlpmetrichttp","vcs_ref":""},\ | ||
| 465 | {"module":"go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc","version":"v1.31.0","vcs_hash":"32a87864cfa3320f417f47862642c312d2c19908839bd781f0f1073a0a9b899e","timestamp":"2024-10-11T16:59:27Z","subdir":"exporters/otlp/otlpmetric/otlpmetricgrpc","vcs_ref":""},\ | ||
| 466 | {"module":"go.etcd.io/bbolt","version":"v1.3.11","vcs_hash":"c5dfa2d8cb348dd268f3f0ef5e744fc736f4d2570eef6e7cb6273eae40dea832","timestamp":"2024-08-20T08:57:48Z","subdir":"","vcs_ref":"refs/tags/v1.3.11"},\ | ||
| 467 | {"module":"gopkg.in/check.v1","version":"v0.0.0-20161208181325-20d25e280405","vcs_hash":"f6f7125ac7ef086ca6395a14a9a28c8c11cd6f8790a8be7cfd6475d1acd0f40b","timestamp":"2016-12-08T18:13:25Z","subdir":"","vcs_ref":""},\ | ||
| 468 | {"module":"gopkg.in/check.v1","version":"v1.0.0-20200227125254-8fa46927fb4f","vcs_hash":"23da246e09df0cfb88f7874f3e8ab42f1563033c51f59b8fd9f88f708ab87083","timestamp":"2020-02-27T12:52:54Z","subdir":"","vcs_ref":""},\ | ||
| 469 | {"module":"gopkg.in/check.v1","version":"v1.0.0-20201130134442-10cb98267c6c","vcs_hash":"b8ed7c01feb15e76511fd0dcf4b7d5e0ab535f96b5fe0e22cd9854a758a6c38d","timestamp":"2020-11-30T13:44:42Z","subdir":"","vcs_ref":""},\ | ||
| 470 | {"module":"gopkg.in/inf.v0","version":"v0.9.1","vcs_hash":"61185ca91404d2e09a193aede807b4a9ededd43199f58cd49ec4cef480d7bc7f","timestamp":"2018-03-26T17:23:32Z","subdir":"","vcs_ref":"refs/tags/v0.9.1"},\ | ||
| 471 | {"module":"gopkg.in/tomb.v1","version":"v1.0.0-20141024135613-dd632973f1e7","vcs_hash":"3eb09c53457860b46e591b55bd3d381c6c4ceb426eeef3c43e3b3eac38964c0d","timestamp":"2014-10-24T13:56:13Z","subdir":"","vcs_ref":""},\ | ||
| 472 | {"module":"gopkg.in/yaml.v2","version":"v2.2.8","vcs_hash":"400816c86851106c70bff651cdce4df77403b9659ec70d1d1bbe2d3211dfa942","timestamp":"2020-01-21T17:19:40Z","subdir":"","vcs_ref":"refs/tags/v2.2.8"},\ | ||
| 473 | {"module":"gopkg.in/yaml.v2","version":"v2.2.2","vcs_hash":"8a100ce674e65e72daf096e45d53f5beec9f9123c742acb89993de84b6414834","timestamp":"2018-11-15T11:05:04Z","subdir":"","vcs_ref":"refs/tags/v2.2.2"},\ | ||
| 474 | {"module":"gopkg.in/yaml.v2","version":"v2.2.4","vcs_hash":"16ad1bc1035b50f99a688a97524eadf6fc6a8b09612f99dd2ef19e0889b7935a","timestamp":"2019-10-02T18:33:36Z","subdir":"","vcs_ref":"refs/tags/v2.2.4"},\ | ||
| 475 | {"module":"gopkg.in/yaml.v2","version":"v2.4.0","vcs_hash":"84e688efadb8602ec1990d3cd251d5818e95c14682a169266ac9a1edadfe5424","timestamp":"2020-11-17T15:46:20Z","subdir":"","vcs_ref":"refs/tags/v2.4.0"},\ | ||
| 476 | {"module":"gopkg.in/yaml.v2","version":"v2.2.1","vcs_hash":"0fa3b98a4c1a3d9bd017c1d1c94874fecbc693d1400e5f002f53d4444a42664c","timestamp":"2018-03-28T19:50:20Z","subdir":"","vcs_ref":"refs/tags/v2.2.1"},\ | ||
| 477 | {"module":"gopkg.in/fsnotify.v1","version":"v1.4.7","vcs_hash":"cc44f7bf337eee80812ff411465b4e87c78887003ae940c1b27adb151bbed7d2","timestamp":"2018-01-10T05:33:47Z","subdir":"","vcs_ref":"refs/tags/v1.4.7"},\ | ||
| 478 | {"module":"gopkg.in/yaml.v3","version":"v3.0.1","vcs_hash":"8d340fff421a1861f196061b40e49b2f9e802647204935d08e1062b8ecd90b0d","timestamp":"2022-05-27T08:35:30Z","subdir":"","vcs_ref":"refs/tags/v3.0.1"},\ | ||
| 479 | {"module":"gopkg.in/yaml.v3","version":"v3.0.0-20200313102051-9f266ea9e77c","vcs_hash":"ae6e6119974a43d5668501b6efe7e743408319dee4094d1929d3e75a4f5dac98","timestamp":"2020-03-13T10:20:51Z","subdir":"","vcs_ref":""},\ | ||
| 480 | {"module":"google.golang.org/grpc","version":"v1.0.5","vcs_hash":"a8f63cb0b9589a8734365d4e15d54811da5f80c7314224f78f912146fcb9e1d8","timestamp":"2016-12-02T18:43:27Z","subdir":"","vcs_ref":"refs/tags/v1.0.5"},\ | ||
| 481 | {"module":"google.golang.org/grpc","version":"v1.70.0","vcs_hash":"e58c14dd349857769c94ca9778f4cd2a4f5928530a1881f2c1074ca1cbb2d10e","timestamp":"2025-01-23T17:43:56Z","subdir":"","vcs_ref":"refs/tags/v1.70.0"},\ | ||
| 482 | {"module":"google.golang.org/grpc/cmd/protoc-gen-go-grpc","version":"v1.5.1","vcs_hash":"ce5a862c22ded840bff7b7ec1016804cb0af284075ea09fb5fe73b9866532a3a","timestamp":"2024-07-29T17:04:12Z","subdir":"cmd/protoc-gen-go-grpc","vcs_ref":"refs/tags/cmd/protoc-gen-go-grpc/v1.5.1"},\ | ||
| 483 | {"module":"google.golang.org/genproto","version":"v0.0.0-20200806141610-86f49bd18e98","vcs_hash":"60d429fbf7c05db4fa9c255ebe6a537c9d7310b32a3ae1ae4050b4e38a3b3232","timestamp":"2020-08-06T14:16:10Z","subdir":"","vcs_ref":""},\ | ||
| 484 | {"module":"google.golang.org/genproto/googleapis/api","version":"v0.0.0-20241202173237-19429a94021a","vcs_hash":"2f5bb31a0a8f937de324b23ab84e814e504046e93133c7326bf700b0882dc384","timestamp":"2024-12-02T17:32:37Z","subdir":"googleapis/api","vcs_ref":""},\ | ||
| 485 | {"module":"google.golang.org/genproto/googleapis/rpc","version":"v0.0.0-20241202173237-19429a94021a","vcs_hash":"2f5bb31a0a8f937de324b23ab84e814e504046e93133c7326bf700b0882dc384","timestamp":"2024-12-02T17:32:37Z","subdir":"googleapis/rpc","vcs_ref":""},\ | ||
| 486 | {"module":"google.golang.org/protobuf","version":"v1.35.2","vcs_hash":"0c67444ea9910e060a9eecff1756801f86c29e8b3b530800a00304736b7b2996","timestamp":"2024-11-14T09:28:32Z","subdir":"","vcs_ref":"refs/tags/v1.35.2"},\ | ||
| 487 | {"module":"tags.cncf.io/container-device-interface","version":"v0.8.1","vcs_hash":"4f5352b6f77f4f121f95a0b3e9a76e55d772a4a180f172a124639c29e71fc9b8","timestamp":"2025-02-24T11:06:35Z","subdir":"","vcs_ref":"refs/tags/v0.8.1"},\ | ||
| 488 | {"module":"tags.cncf.io/container-device-interface/specs-go","version":"v0.8.0","vcs_hash":"f812ffada8aed322606ad148d39d72f0d5f13ee7311973a217d387e352ac9800","timestamp":"2024-07-09T11:19:40Z","subdir":"specs-go","vcs_ref":"refs/tags/specs-go/v0.8.0"},\ | ||
| 489 | {"module":"cloud.google.com/go/compute/metadata","version":"v0.5.2","vcs_hash":"545512f9060ccdd4a5f961c7872003895f14afd8d660e406e141363d3cbedd5a","timestamp":"2024-09-23T14:41:47Z","subdir":"compute/metadata","vcs_ref":"refs/tags/compute/metadata/v0.5.2"},\ | ||
| 490 | {"module":"gotest.tools/v3","version":"v3.5.2","vcs_hash":"0059a65e8d8f001755ae605517342ab3e098223b600f512103941850dfee7cc5","timestamp":"2024-09-05T03:48:22Z","subdir":"","vcs_ref":"refs/tags/v3.5.2"},\ | ||
| 491 | {"module":"dario.cat/mergo","version":"v1.0.1","vcs_hash":"ec93951cf02739e6e999cf0902a7970a4983432145559425fd7600b4d7fd553b","timestamp":"2024-08-17T20:16:10Z","subdir":"","vcs_ref":"refs/tags/v1.0.1"},\ | ||
| 492 | {"module":"github.com/docker/go","version":"v1.5.1-1.0.20160303222718-d30aec9fd63c","vcs_hash":"adbf3e69f7023041c90d95475b29404cfcd9bbc165416530ac397daf92713d9f","timestamp":"2016-03-03T22:27:18Z","subdir":"","vcs_ref":""},\ | ||
| 493 | {"module":"gopkg.in/airbrake/gobrake.v2","version":"v2.0.9","vcs_hash":"077965e9dddf4afe778a53c5657b15d425b2922ce1bb4473b48a092882d1c86c","timestamp":"1970-01-01T00:00:00Z","subdir":"","vcs_ref":""},\ | ||
| 494 | {"module":"gopkg.in/alecthomas/kingpin.v2","version":"v2.2.6","vcs_hash":"2735cac9b4a3cdb15215106fb8250a3cf703ade538238379c02b2e4630006774","timestamp":"1970-01-01T00:00:00Z","subdir":"","vcs_ref":""},\ | ||
| 495 | {"module":"gopkg.in/cenkalti/backoff.v1","version":"v1.1.0","vcs_hash":"8210864debb0dafc5139d41233d2068be3e9a91acfd85c53a3cb338654ce2424","timestamp":"1970-01-01T00:00:00Z","subdir":"","vcs_ref":""},\ | ||
| 496 | {"module":"gopkg.in/cenkalti/backoff.v2","version":"v2.2.1","vcs_hash":"71c3d72ed297486ed0a5ea367107475dd5a2f63506f13752eff8697b952feb2b","timestamp":"1970-01-01T00:00:00Z","subdir":"","vcs_ref":""},\ | ||
| 497 | {"module":"gopkg.in/evanphx/json-patch.v4","version":"v4.12.0","vcs_hash":"4b7afc94ca313174a1c06213eff6268514e8df200fe8280a69535c2f7d458ab8","timestamp":"1970-01-01T00:00:00Z","subdir":"","vcs_ref":""},\ | ||
| 498 | {"module":"gopkg.in/gemnasium/logrus-airbrake-hook.v2","version":"v2.1.2","vcs_hash":"d0726cab486cec911bd01a228103871bd0013c064acd93acf6ec283371126c72","timestamp":"1970-01-01T00:00:00Z","subdir":"","vcs_ref":""},\ | ||
| 499 | {"module":"gopkg.in/rethinkdb/rethinkdb-go.v6","version":"v6.2.1","vcs_hash":"217dbcd1c8416832ce026dc8bc5191884d1b45525c1a9e2c2e6980ae4fa4b11e","timestamp":"1970-01-01T00:00:00Z","subdir":"","vcs_ref":""},\ | ||
| 500 | {"module":"gopkg.in/square/go-jose.v2","version":"v2.4.1","vcs_hash":"cc31f909ae479bddf63deb361914cc721f11905fbdd9cf582e47e4768c148336","timestamp":"1970-01-01T00:00:00Z","subdir":"","vcs_ref":""},\ | ||
| 501 | {"module":"golang.org/x/mod","version":"v0.2.0","vcs_hash":"d8ce3a26ef11a4e81bfc12391c4d0bf865766bcb2812acb31931c12ee0d326f8","timestamp":"1970-01-01T00:00:00Z","subdir":"","vcs_ref":"refs/tags/v0.2.0"},\ | ||
| 502 | {"module":"golang.org/x/mod","version":"v0.3.0","vcs_hash":"c7adf8bcca55c1652cddd18c7e949788e387f878482d2553dd5f0a8b63dae8ba","timestamp":"1970-01-01T00:00:00Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\ | ||
| 503 | {"module":"golang.org/x/mod","version":"v0.6.0-dev.0.20220419223038-86c51ed26bb4","vcs_hash":"8d01fb415e3ecdf7c1c57243ebaa9b07a2cecd87ea1574f747bbc2ab686be373","timestamp":"2022-04-19T22:30:38Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\ | ||
| 504 | {"module":"golang.org/x/net","version":"v0.0.0-20180906233101-161cd47e91fd","vcs_hash":"babc11e479dde015dda8f2983ff3d34baeca8fc3c8f903c8cdb86bbe5bd33276","timestamp":"2018-09-06T23:31:01Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\ | ||
| 505 | {"module":"golang.org/x/net","version":"v0.0.0-20181114220301-adae6a3d119a","vcs_hash":"b8c1e7047b6e4851ac069daf32f49810a275ba804ac8e291088dc3153c2e9244","timestamp":"2018-11-14T22:03:01Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\ | ||
| 506 | {"module":"golang.org/x/net","version":"v0.0.0-20190404232315-eb5bcb51f2a3","vcs_hash":"ae86d4593bf8e0a0514f77d1f3831f0f2f4214c3d1e77cc50661343ba4fcdebe","timestamp":"2019-04-04T23:23:15Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\ | ||
| 507 | {"module":"golang.org/x/net","version":"v0.0.0-20190613194153-d28f0bde5980","vcs_hash":"757dd4c6e25318b13686cfb89c72e097891b4100c7969a22acf412f56e47896d","timestamp":"2019-06-13T19:41:53Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\ | ||
| 508 | {"module":"golang.org/x/net","version":"v0.0.0-20190620200207-3b0461eec859","vcs_hash":"3c84774e4b117bf9ca7f463a9106bc672447617fbfdf58b268e7a74cb79b8882","timestamp":"2019-06-20T20:02:07Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\ | ||
| 509 | {"module":"golang.org/x/net","version":"v0.0.0-20191116160921-f9c825593386","vcs_hash":"0add53dcd932ca2db356b748f561e32f186413019044a765b2b1adfe195f8550","timestamp":"2019-11-16T16:09:21Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\ | ||
| 510 | {"module":"golang.org/x/net","version":"v0.0.0-20200226121028-0de0cce0169b","vcs_hash":"4a83ce2ea03f8d39736df96f33e3c12c6f2736e4e2d7c83f96b043f96b097451","timestamp":"2020-02-26T12:10:28Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\ | ||
| 511 | {"module":"golang.org/x/net","version":"v0.0.0-20201021035429-f5854403a974","vcs_hash":"fc8ecf11eddaf279509465d2c0dde9c76fb90ea7c097356e83c6ed4c375e1c16","timestamp":"2020-10-21T03:54:29Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\ | ||
| 512 | {"module":"golang.org/x/net","version":"v0.0.0-20210226172049-e18ecbb05110","vcs_hash":"376d3afffd1f62bc65b76e58fc724fe033367b5c6b239fa6c7d0367687a2bfbd","timestamp":"2021-02-26T17:20:49Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\ | ||
| 513 | {"module":"golang.org/x/net","version":"v0.0.0-20220722155237-a158d28d115b","vcs_hash":"2de939cb01f6e50973e8ce809ddfa5b8ceec4f7d5e7a3aef65caea692eb1f5b5","timestamp":"2022-07-22T15:52:37Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\ | ||
| 514 | {"module":"golang.org/x/sync","version":"v0.0.0-20180314180146-1d60e4601c6f","vcs_hash":"a474d88ee14fcd89b314b779d02a4628461aebbfc6613a6ba90e583c35e15b02","timestamp":"2018-03-14T18:01:46Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\ | ||
| 515 | {"module":"golang.org/x/sync","version":"v0.0.0-20181108010431-42b317875d0f","vcs_hash":"19d48188f5a03164bde06d13dc555c6a2ebc78aafd3dabc7439ec4c9dcca3519","timestamp":"2018-11-08T01:04:31Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\ | ||
| 516 | {"module":"golang.org/x/sync","version":"v0.0.0-20181221193216-37e7f081c4d4","vcs_hash":"901f082ea4e1c94dfbaef54bd883432751214951b6b2d5885765a306b1c60d1f","timestamp":"2018-12-21T19:32:16Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\ | ||
| 517 | {"module":"golang.org/x/sync","version":"v0.0.0-20190423024810-112230192c58","vcs_hash":"b68e56943c8c12324ce0414e7075fd80f016eafe879c0c69e6b25893ebb49bce","timestamp":"2019-04-23T02:48:10Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\ | ||
| 518 | {"module":"golang.org/x/sync","version":"v0.0.0-20190911185100-cd5d95a43a6e","vcs_hash":"eaa2921285a7524f3154ea98a551847767b259c18f901ed97668900b204aa7a6","timestamp":"2019-09-11T18:51:00Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\ | ||
| 519 | {"module":"golang.org/x/sync","version":"v0.0.0-20201020160332-67f06af15bc9","vcs_hash":"63c5dce6fecd17ec0193ec4ee4221b61ccd0834c745a066128df4000c7ec583e","timestamp":"2020-10-20T16:03:32Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\ | ||
| 520 | {"module":"golang.org/x/sync","version":"v0.0.0-20220722155255-886fb9371eb4","vcs_hash":"ca22f14e147dd49170157c4d70861fe830bc43b62113fa8da7da7806f515979b","timestamp":"2022-07-22T15:52:55Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\ | ||
| 521 | {"module":"golang.org/x/sys","version":"v0.0.0-20180905080454-ebe1bf3edb33","vcs_hash":"d3bdb2e23f146b5636bca4252db35273bff745f37dece252f87edb601338f1fa","timestamp":"2018-09-05T08:04:54Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\ | ||
| 522 | {"module":"golang.org/x/sys","version":"v0.0.0-20180909124046-d0be0721c37e","vcs_hash":"e23d421c76c78ddc7b91228f72ce5f09a2820d7648b887aa27f4e1b7ffe9f8a4","timestamp":"2018-09-09T12:40:46Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\ | ||
| 523 | {"module":"golang.org/x/sys","version":"v0.0.0-20181116152217-5ac8a444bdc5","vcs_hash":"fefde8e557c698aecc8d48f3c3d82b7fea1eb55451adbc71dbed3a8871ed8e13","timestamp":"2018-11-16T15:22:17Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\ | ||
| 524 | {"module":"golang.org/x/sys","version":"v0.0.0-20190215142949-d0b11bdaac8a","vcs_hash":"f12e98c7124bdf27aa44290b851a1ac08039087a76b23733d63312bc784b1556","timestamp":"2019-02-15T14:29:49Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\ | ||
| 525 | {"module":"golang.org/x/sys","version":"v0.0.0-20190222072716-a9d3bda3a223","vcs_hash":"b39bbf1e5c63baf8bb27abab5aa581c65e0d2a22893ed2ccbcc8fa2f7dcb1f04","timestamp":"2019-02-22T07:27:16Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\ | ||
| 526 | {"module":"golang.org/x/sys","version":"v0.0.0-20190412213103-97732733099d","vcs_hash":"aa620878a9f9f2576616d28b01af853869a5a014c70f6b2966e79beae63baeae","timestamp":"2019-04-12T21:31:03Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\ | ||
| 527 | {"module":"golang.org/x/sys","version":"v0.0.0-20190801041406-cbf593c0f2f3","vcs_hash":"4caa6bf3877ea4a9088acc64f20cf170854590c47a2251c747b075d57989606f","timestamp":"2019-08-01T04:14:06Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\ | ||
| 528 | {"module":"golang.org/x/sys","version":"v0.0.0-20191026070338-33540a1f6037","vcs_hash":"74df1e05ff5bf1317fe42883ce7a496c0ad3800044d955163fd3f3acca0a0166","timestamp":"2019-10-26T07:03:38Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\ | ||
| 529 | {"module":"golang.org/x/sys","version":"v0.0.0-20191120155948-bd437916bb0e","vcs_hash":"253eeaed31139dc6c6092c9677b29b309c54686acef6519ba8e7423b19d0c65e","timestamp":"2019-11-20T15:59:48Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\ | ||
| 530 | {"module":"golang.org/x/sys","version":"v0.0.0-20200930185726-fdedc70b468f","vcs_hash":"782e11bb6bc760c1f6beebcc00039d583f0f5dce996fff1adc7a3eac70c2c65b","timestamp":"2020-09-30T18:57:26Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\ | ||
| 531 | {"module":"golang.org/x/sys","version":"v0.0.0-20201119102817-f84b799fce68","vcs_hash":"5e73009c1afca32127ea1cb27ff11e49ac3eab70df61f2738a4e4d8f95e48511","timestamp":"2020-11-19T10:28:17Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\ | ||
| 532 | {"module":"golang.org/x/sys","version":"v0.0.0-20210331175145-43e1dd70ce54","vcs_hash":"61395547cb668a679b4d7508a904d02fd50ffe1630e5ffd6f4ef293a97c2d3ba","timestamp":"2021-03-31T17:51:45Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\ | ||
| 533 | {"module":"golang.org/x/sys","version":"v0.0.0-20210615035016-665e8c7367d1","vcs_hash":"7389e79775019a8b50e34efbdfd1a6f9ee910ef3822e04963ba444b3d04db399","timestamp":"2021-06-15T03:50:16Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\ | ||
| 534 | {"module":"golang.org/x/sys","version":"v0.0.0-20210616094352-59db8d763f22","vcs_hash":"34a6c6ff0efd234ebc0cc2a5cfdad07405fca7403da460f8d25bfb69091bc0c5","timestamp":"2021-06-16T09:43:52Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\ | ||
| 535 | {"module":"golang.org/x/sys","version":"v0.0.0-20220412211240-33da011f77ad","vcs_hash":"144d2f77c6aa06af51d5820df4e7506c5ecad01c86e770e0027b682ff0d3f9a9","timestamp":"2022-04-12T21:12:40Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\ | ||
| 536 | {"module":"golang.org/x/sys","version":"v0.0.0-20220520151302-bc2c85ada10a","vcs_hash":"f1ca944a9f749f11954489cf91646b40418e0abb15fdadc5040f1dbba7b6ee33","timestamp":"2022-05-20T15:13:02Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\ | ||
| 537 | {"module":"golang.org/x/sys","version":"v0.0.0-20220715151400-c0bba94af5f8","vcs_hash":"e4718f232872f03637fc197e3ccf66bc067874db09f67e7567cae86e8cee6732","timestamp":"2022-07-15T15:14:00Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\ | ||
| 538 | {"module":"golang.org/x/sys","version":"v0.0.0-20220722155257-8c9f86f7a55f","vcs_hash":"2b23297aec08f23623501029a20a4eee604e87ce090001ef6ad0a5930d799dd5","timestamp":"2022-07-22T15:52:57Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\ | ||
| 539 | {"module":"golang.org/x/term","version":"v0.0.0-20201117132131-f5c789dd3221","vcs_hash":"c88580cdc620bf60d25b76e2063471e63eb3d1d7e2637b2d2fee2fa29c5eef30","timestamp":"2020-11-17T13:21:31Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\ | ||
| 540 | {"module":"golang.org/x/term","version":"v0.0.0-20201126162022-7de9c90e9dd1","vcs_hash":"ead0d27eba7bab1501c9338f4e8f06fcaeada49e20ae7ea11b3242a3e7e99835","timestamp":"2020-11-26T16:20:22Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\ | ||
| 541 | {"module":"golang.org/x/term","version":"v0.0.0-20210927222741-03fcf44c2211","vcs_hash":"39b5e1daf17afc894da71452dbc3a21bfd60c2a69143fd621e2f4c38e90360ea","timestamp":"2021-09-27T22:27:41Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\ | ||
| 542 | {"module":"golang.org/x/text","version":"v0.3.0","vcs_hash":"d39e4750b0b2d1a0bd2ed4dc2dbe3b1b701235f69c66ba7085791fbf117c3528","timestamp":"1970-01-01T00:00:00Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\ | ||
| 543 | {"module":"golang.org/x/text","version":"v0.3.3","vcs_hash":"cb54f76ec6181ed72414cbac7c1d4de145545dbe7cf920063654dab541ce2dc1","timestamp":"1970-01-01T00:00:00Z","subdir":"","vcs_ref":"refs/tags/v0.3.3"},\ | ||
| 544 | {"module":"golang.org/x/text","version":"v0.3.7","vcs_hash":"62c926369bbefb0babf3ce89762737f7c9e16aefa43a75d7b49d544bdf87dd3e","timestamp":"1970-01-01T00:00:00Z","subdir":"","vcs_ref":"refs/tags/v0.3.7"},\ | ||
| 545 | {"module":"golang.org/x/tools","version":"v0.0.0-20180917221912-90fa682c2a6e","vcs_hash":"e396d41e128acc62cbad331ee090a99e470d23a3611d8b07d3c2cc41a1cc0b49","timestamp":"2018-09-17T22:19:12Z","subdir":"","vcs_ref":"refs/tags/v0.3.7"},\ | ||
| 546 | {"module":"golang.org/x/tools","version":"v0.0.0-20191119224855-298f0cb1881e","vcs_hash":"4bdade122172b6644bff0ea433cdb68d5460d8b894432e030ced235888ac6fdc","timestamp":"2019-11-19T22:48:55Z","subdir":"","vcs_ref":"refs/tags/v0.3.7"},\ | ||
| 547 | {"module":"golang.org/x/tools","version":"v0.0.0-20200619180055-7c47624df98f","vcs_hash":"a7efe20c5bee119c7e0018be6d57820b9b6a182d1818d3ec344c022fad6b7114","timestamp":"2020-06-19T18:00:55Z","subdir":"","vcs_ref":"refs/tags/v0.3.7"},\ | ||
| 548 | {"module":"golang.org/x/tools","version":"v0.0.0-20210106214847-113979e3529a","vcs_hash":"74532c68be1c7f64a0eee926ba2b0b7d4552a8c11bae36838bf170186db4264d","timestamp":"2021-01-06T21:48:47Z","subdir":"","vcs_ref":"refs/tags/v0.3.7"},\ | ||
| 549 | {"module":"golang.org/x/tools","version":"v0.1.12","vcs_hash":"caef14ab3734fcbf0d05c7a9aab8ffc3dee6066c109316257d37ec9c806f1482","timestamp":"1970-01-01T00:00:00Z","subdir":"","vcs_ref":"refs/tags/v0.1.12"},\ | ||
| 550 | {"module":"golang.org/x/xerrors","version":"v0.0.0-20190717185122-a985d3407aa7","vcs_hash":"19bf66358270f1db6b287805895c6fc8385236e01234a96b3da1d15fe70245f7","timestamp":"2019-07-17T18:51:22Z","subdir":"","vcs_ref":"refs/tags/v0.1.12"},\ | ||
| 551 | {"module":"golang.org/x/xerrors","version":"v0.0.0-20191011141410-1b5146add898","vcs_hash":"8c142112d3bf2046dde4cb3dda11db03c95a8ab51bfb424b4d31be45594f7e6a","timestamp":"2019-10-11T14:14:10Z","subdir":"","vcs_ref":"refs/tags/v0.1.12"},\ | ||
| 552 | {"module":"golang.org/x/xerrors","version":"v0.0.0-20191204190536-9bdfabe68543","vcs_hash":"a190c0bd506167cc1631eefeb81697d88fd666066c0d35abb4f058915f9881cd","timestamp":"2019-12-04T19:05:36Z","subdir":"","vcs_ref":"refs/tags/v0.1.12"},\ | ||
| 553 | {"module":"golang.org/x/xerrors","version":"v0.0.0-20200804184101-5ec99f83aff1","vcs_hash":"1a7eef0babb47828059471e537bef1e9023bf22cd1c23e5fcaf7523b68332e82","timestamp":"2020-08-04T18:41:01Z","subdir":"","vcs_ref":"refs/tags/v0.1.12"}\ | ||
| 554 | ]' | ||
diff --git a/recipes-containers/docker-compose/go-mod-git.inc b/recipes-containers/docker-compose/go-mod-git.inc new file mode 100644 index 00000000..6481990e --- /dev/null +++ b/recipes-containers/docker-compose/go-mod-git.inc | |||
| @@ -0,0 +1,743 @@ | |||
| 1 | # Generated by oe-go-mod-fetcher.py v3.0.0 | ||
| 2 | # Git repositories for Go module dependencies | ||
| 3 | |||
| 4 | SRC_URI += "git://github.com/go-sql-driver/mysql;protocol=https;nobranch=1;rev=a0583e0143b1624142adab07e0e97fe106d99561;name=git_825229b4_0;destsuffix=vcs_cache/732613cefc15b1adbb2c7aeb63e0c9bbf2708050a30ce547a2df82727da51371" | ||
| 5 | SRC_URI += "git://github.com/zclconf/go-cty;protocol=https;nobranch=1;rev=6e06defc5f817971ab942989ad06752e13446c9c;name=git_5ffc57d2_0;destsuffix=vcs_cache/4a41029e32bba6cfa3bebf1dbd77b9cfeb835e4a332dcafd0b0525b94d2d830a" | ||
| 6 | SRC_URI += "git://github.com/julienschmidt/httprouter;protocol=https;nobranch=1;shallow=1;rev=348b672cd90d8190f8240323e372ecd1e66b59dc;name=git_50116b68_0;destsuffix=vcs_cache/2c4d0627c16989284c34f4435f85eda929435309b1f35e089deeada06cba6920" | ||
| 7 | SRC_URI += "git://github.com/julienschmidt/httprouter;protocol=https;nobranch=1;shallow=1;rev=4eec211fa4e8df74ed978dc5681612131854144f;name=git_50116b68_1;destsuffix=vcs_cache/14612f57dd95aeae83955a7b4f9b44d716f96bdef922732f059430cdff278e10" | ||
| 8 | SRC_URI += "git://github.com/rivo/uniseg;protocol=https;nobranch=1;shallow=1;rev=75711fccf6a3e85bc74c241e2dddd06a9bc9e53d;name=git_b3b758f5_0;destsuffix=vcs_cache/711d6ce77fb103240fb5d501f7548a0f9a576d48e783647cd7fed297fccb112a" | ||
| 9 | SRC_URI += "git://github.com/spiffe/go-spiffe;protocol=https;nobranch=1;shallow=1;rev=1e584b8ba5f7b2d2e0f616a3ef5e24a1de674877;name=git_217f6de8_0;destsuffix=vcs_cache/50e6b0a1f0d8fd58a82256d93a304714c07f4319cdf00634ff6899ad9bb0fd66" | ||
| 10 | SRC_URI += "git://github.com/distribution/reference;protocol=https;nobranch=1;rev=ff14fafe2236e51c2894ac07d4bdfc778e96d682;name=git_b4d8130d_0;destsuffix=vcs_cache/ac2c94a9c45cfe172807163d3f9ae441bf0db0b30e528660d1b5db49678ed93a" | ||
| 11 | SRC_URI += "git://github.com/modern-go/reflect2;protocol=https;nobranch=1;shallow=1;rev=2b33151c9bbc5231aea69b8861c540102b087070;name=git_975c3d3f_0;destsuffix=vcs_cache/21d04a5177cfeef214577aa3b5c90454aed60c2184b77a0fffa7922aa843666a" | ||
| 12 | SRC_URI += "git://github.com/modern-go/reflect2;protocol=https;branch=master;rev=4b7aa43c6742a2c18fdef89dd197aaae7dac7ccd;name=git_975c3d3f_1;destsuffix=vcs_cache/8af4d54440b1b6703cd1b26845d1f5914958f01a18064501f7b77554b973b677" | ||
| 13 | SRC_URI += "git://github.com/modern-go/reflect2;protocol=https;nobranch=1;shallow=1;rev=94122c33edd36123c84d5368cfb2b69df93a0ec8;name=git_975c3d3f_2;destsuffix=vcs_cache/5f837a9261606850c86cb464d91848cb7e2e334be529f812891c080cfd881b9a" | ||
| 14 | SRC_URI += "git://github.com/modern-go/concurrent;protocol=https;branch=master;rev=bacd9c7ef1dd9b15be4a9909b8ac7a4e313eec94;name=git_2bbaef4c_0;destsuffix=vcs_cache/09a996e0549b43adaeb1c40a8dc339563ed1a8dcc831e5cb074441a30d502d23" | ||
| 15 | SRC_URI += "git://github.com/modern-go/concurrent;protocol=https;branch=master;rev=e0a39a4cb4216ea8db28e22a69f4ec25610d513a;name=git_2bbaef4c_1;destsuffix=vcs_cache/720429d876e0c333185ab19ebc83ff389edac9e5b459d07c74e7a18cae1c5b7a" | ||
| 16 | SRC_URI += "git://github.com/vmihailenco/msgpack;protocol=https;nobranch=1;rev=9f30401e9cdcc6fa561d6b3e4982cbe8161f1086;name=git_ac9774ec_0;destsuffix=vcs_cache/02a4e9fd526e13beccb6c173e6c8238f8f47b51174abd08bdbce44868d7dca0b" | ||
| 17 | SRC_URI += "git://github.com/vmihailenco/tagparser;protocol=https;nobranch=1;rev=2147fb31205921d022818561da850209b44b0097;name=git_92830617_0;destsuffix=vcs_cache/d8db384ca98ad948fdee0547f574d6b990caa73543d9caca66b2a4b9b6e384a0" | ||
| 18 | SRC_URI += "git://github.com/spf13/jwalterweatherman;protocol=https;branch=master;rev=3d60171a64319ef63c78bd45bd60e6eab1e75f8b;name=git_dbf881a0_0;destsuffix=vcs_cache/3516ad16d930d5653a48f59083d5a5851f1503e64d5f3e4f03dd5094d044ceba" | ||
| 19 | SRC_URI += "git://github.com/spf13/cast;protocol=https;branch=master;rev=4d07383ffe94b5e5a6fa3af9211374a4507a0184;name=git_60c66923_0;destsuffix=vcs_cache/61ca87f5a674dbb7719ca6806869cee44c68d3463ca0ee867270c61ef55016c5" | ||
| 20 | SRC_URI += "git://github.com/spf13/cobra;protocol=https;nobranch=1;rev=40b5bc1437a564fc795d388b23835e84f54cd1d1;name=git_41456771_0;destsuffix=vcs_cache/b9eaed78e0a5f6d8926cb7b295c1304ebd0c79848e4fc0ad5e0ab83089f9081b" | ||
| 21 | SRC_URI += "git://github.com/spf13/cobra;protocol=https;nobranch=1;shallow=1;rev=7b2c5ac9fc04fc5efafb60700713d4fa609b777b;name=git_41456771_1;destsuffix=vcs_cache/a6573b02628ec0c919f90bba89f525eac2b0bda84d9dccdcb78b3f07c92b918e" | ||
| 22 | SRC_URI += "git://github.com/spf13/viper;protocol=https;branch=master;rev=be5ff3e4840cf692388bde7a057595a474ef379e;name=git_133525c9_0;destsuffix=vcs_cache/6b7187b929229be5c3959df1ee113d9acd19aff47b973e42b64e50cdf8a0e740" | ||
| 23 | SRC_URI += "git://github.com/spf13/pflag;protocol=https;nobranch=1;shallow=1;rev=5ca813443bd2a4d9f46a253ea0407d23b3790713;name=git_66b7b8c8_0;destsuffix=vcs_cache/b7f51c906eabb517613129455992f23a2f48e1c6186855b1b66ba9e619db1aa4" | ||
| 24 | SRC_URI += "git://github.com/spf13/pflag;protocol=https;nobranch=1;shallow=1;rev=e57e3eeb33f795204c1ca35f56c44f83227c6e66;name=git_66b7b8c8_1;destsuffix=vcs_cache/160c6a820138c13e769bbec879294544287b8dfde6af77776f81536ff3f43df9" | ||
| 25 | SRC_URI += "git://github.com/jinzhu/gorm;protocol=https;branch=master;rev=5409931a1bb87e484d68d649af9367c207713ea2;name=git_82a2c1af_0;destsuffix=vcs_cache/e51ea32193aeb2a5bfab92442113de19e13f387509f58c7979e704306087d5d2" | ||
| 26 | SRC_URI += "git://github.com/jinzhu/now;protocol=https;nobranch=1;rev=7e7333ac029d4aad7e88500a30889fcd22489425;name=git_ffa5efac_0;destsuffix=vcs_cache/3a2e9d8aa645efa2980908fbe342f3eb31a21421aeacd8a821f15d5775cb129f" | ||
| 27 | SRC_URI += "git://github.com/jinzhu/inflection;protocol=https;branch=master;rev=1c35d901db3da928c72a72d8458480cc9ade058f;name=git_355e8fac_0;destsuffix=vcs_cache/3bf372ac0a41f41eb6c408c719a9f71d1a31a5cd8260a8135fa90085e5d6c0ce" | ||
| 28 | SRC_URI += "git://github.com/json-iterator/go;protocol=https;nobranch=1;shallow=1;rev=024077e996b048517130b21ea6bf12aa23055d3d;name=git_61c80dd4_0;destsuffix=vcs_cache/bdb67d21e426f2274ff76d4829ac60348539016b1aa54fa98cfccc554be12f3b" | ||
| 29 | SRC_URI += "git://github.com/json-iterator/go;protocol=https;nobranch=1;shallow=1;rev=0ff49de124c6f76f8494e194af75bde0f1a49a29;name=git_61c80dd4_1;destsuffix=vcs_cache/49dd68855c9609b742b2b0b4f38fc7310fe801de54098c1919a0a64c7a0df65f" | ||
| 30 | SRC_URI += "git://github.com/json-iterator/go;protocol=https;nobranch=1;shallow=1;rev=27518f6661eba504be5a7a9a9f6d9460d892ade3;name=git_61c80dd4_2;destsuffix=vcs_cache/bc41490320f388f56ca605b559e022840691077e82ae0ad6dd62b7ea000f0603" | ||
| 31 | SRC_URI += "git://github.com/hailocab/go-hostpool;protocol=https;branch=master;rev=e80d13ce29ede4452c43dea11e79b9bc8a15b478;name=git_9b349411_0;destsuffix=vcs_cache/9c4bc4176e756c26e2cdff114a1c5597225ee9e1831b7404408096c667ad9031" | ||
| 32 | SRC_URI += "git://github.com/vishvananda/netlink;protocol=https;branch=main;rev=084abd93d350e97ee5410b5b6311bcc211f7ea05;name=git_2270cfb3_0;destsuffix=vcs_cache/32176df318a695b68a17fb6ff9bd6f9d2fc3aaf8d469bb308bcdef86d6d0f563" | ||
| 33 | SRC_URI += "git://github.com/vishvananda/netns;protocol=https;nobranch=1;shallow=1;rev=4c46424d73b556b3ea4bc5a7cec9e7376dcb2a73;name=git_e786acee_0;destsuffix=vcs_cache/9f1ef5c3417729b4f24554f4b88d06d9e7cdeb771a5d62000cc1344bb1c985d8" | ||
| 34 | SRC_URI += "git://github.com/AlecAivazis/survey;protocol=https;nobranch=1;rev=fa37277e6394c29db7bcc94062cb30cd7785a126;name=git_8f711068_0;destsuffix=vcs_cache/915e6ad876675eb96b188d35f754bc931b786c20b8e9ce8142ab278092473e7c" | ||
| 35 | SRC_URI += "git://github.com/konsorten/go-windows-terminal-sequences;protocol=https;nobranch=1;rev=5c8c8bd35d3832f5d134ae1e1e375b69a4d25242;name=git_a370b262_0;destsuffix=vcs_cache/2044bc70056f083f4686548aca8c8ea39dc8943c0d28ac6ef38cfa1fa5ee7fd0" | ||
| 36 | SRC_URI += "git://github.com/konsorten/go-windows-terminal-sequences;protocol=https;nobranch=1;rev=f55edac94c9bbba5d6182a4be46d86a2c9b5b50e;name=git_a370b262_1;destsuffix=vcs_cache/1987ad3f256034b9d0fc3590868bb91e717f53fd7ee6de10cff3948645fcd530" | ||
| 37 | SRC_URI += "git://github.com/stefanberger/go-pkcs11uri;protocol=https;branch=master;rev=78284954bff6dcce7888166bb79bbba93bea0879;name=git_1abe3c80_0;destsuffix=vcs_cache/38fa201d7d655497d33723d139ffc3ec2ee78d3caab251015a1c3a5190f5e073" | ||
| 38 | SRC_URI += "git://github.com/fxamacker/cbor;protocol=https;nobranch=1;shallow=1;rev=02b69dbb52f4ecf450b3aa5e9a04b7a0b4bf409a;name=git_3a88ac44_0;destsuffix=vcs_cache/4b59857912b9ea71beceb3684f965865607f578625ab12541c012ff811a120c9" | ||
| 39 | SRC_URI += "git://github.com/bmizerany/assert;protocol=https;branch=master;rev=b7ed37b82869576c289d7d97fb2bbd8b64a0cb28;name=git_ed3a3c5c_0;destsuffix=vcs_cache/56f05fc81a59fa58a710a7972b156c07636f5719c2c74f5fe694e2cf49ca2576" | ||
| 40 | SRC_URI += "git://github.com/bugsnag/bugsnag-go;protocol=https;branch=master;rev=13fd6b8acda029830ef9904df6b63be0a83369d0;name=git_9b5e687f_0;destsuffix=vcs_cache/fcdbd0f3bb5816415e92fba0ccef0363d33bb9f4dd92baf939f44c15d7ff15dc" | ||
| 41 | SRC_URI += "git://github.com/bugsnag/osext;protocol=https;branch=master;rev=0dd3f918b21bec95ace9dc86c7e70266cfc5c702;name=git_a1a84bc7_0;destsuffix=vcs_cache/1e7b9a7b360bb8c03ff73c6b542ec4fc9da0aaa3491621e3f0709df81b41c883" | ||
| 42 | SRC_URI += "git://github.com/bugsnag/panicwrap;protocol=https;branch=master;rev=e2c28503fcd0675329da73bf48b33404db873782;name=git_3930fbb7_0;destsuffix=vcs_cache/262d5e88587cf547192faef1ff5a62313964f5302529d3b47078409890f656b8" | ||
| 43 | SRC_URI += "git://github.com/prometheus/common;protocol=https;nobranch=1;shallow=1;rev=0c7b585c7da330aae136aaa874cb4f89f5b3e5d9;name=git_63ab0745_0;destsuffix=vcs_cache/c773458e4153a1156de46f9b19a0c9e562195ea659bd1db2a371c7d3c9894d51" | ||
| 44 | SRC_URI += "git://github.com/prometheus/common;protocol=https;nobranch=1;rev=17f5ca1748182ddf24fc33a5a7caaaf790a52fcc;name=git_63ab0745_1;destsuffix=vcs_cache/892c75be05216c8a166e1dfe11c12f4563f5c0830e193268bcf9f7511010bcc7" | ||
| 45 | SRC_URI += "git://github.com/prometheus/common;protocol=https;nobranch=1;shallow=1;rev=31bed53e4047fd6c510e43a941f90cb31be0972a;name=git_63ab0745_2;destsuffix=vcs_cache/866ac186da10c19f814988a847f2b46d07b11981edcd6fec98970325a2803af4" | ||
| 46 | SRC_URI += "git://github.com/prometheus/common;protocol=https;branch=main;rev=89604d197083d4781071d3c65855d24ecfb0a563;name=git_63ab0745_3;destsuffix=vcs_cache/6fa554cea5eccb087d26785c06f579b8594dbf658c4a1288c2a78398383fed0f" | ||
| 47 | SRC_URI += "git://github.com/prometheus/client_model;protocol=https;nobranch=1;rev=571429e996ba2d9499e3dcb12926767ba953c0ef;name=git_63d71ba5_0;destsuffix=vcs_cache/caf181efa4396d95dac9ea7d6879b5ffa11a4c19d16fb9f0cdb4401b8bad274e" | ||
| 48 | SRC_URI += "git://github.com/prometheus/client_model;protocol=https;branch=master;rev=5c3871d89910bfb32f5fcab2aa4b9ec68e65a99f;name=git_63d71ba5_1;destsuffix=vcs_cache/f6f51abd7b0f905d6b844652733802c893708c937a90eddb39855a9027e795ef" | ||
| 49 | SRC_URI += "git://github.com/prometheus/client_model;protocol=https;branch=master;rev=99fa1f4be8e564e8a6b613da7fa6f46c9edafc6c;name=git_63d71ba5_2;destsuffix=vcs_cache/b20883069672740ec9f8b88232be489d4e077ea06970f02fdd7280e57e070c26" | ||
| 50 | SRC_URI += "git://github.com/prometheus/client_model;protocol=https;branch=master;rev=fd36f4220a901265f90734c3183c5f0c91daa0b8;name=git_63d71ba5_3;destsuffix=vcs_cache/86bc615fe75b2ce98cd8c130b2a77b88c6ddb4a708b29321848472d9dd871940" | ||
| 51 | SRC_URI += "git://github.com/prometheus/client_golang;protocol=https;nobranch=1;rev=170205fb58decfd011f1550d4cfb737230d7ae4f;name=git_6ffa6057_0;destsuffix=vcs_cache/4e44bd818fd07e6368ea60f26721c00dad401136a0e4742f5b167d5755f25168" | ||
| 52 | SRC_URI += "git://github.com/prometheus/client_golang;protocol=https;nobranch=1;shallow=1;rev=48e12a185519fd76b4e514b597483781d9ba4093;name=git_6ffa6057_1;destsuffix=vcs_cache/1a0860e1de6c5f86bfdf0955c8c04423e5e5ff7aa2653d61019308999d3e38b5" | ||
| 53 | SRC_URI += "git://github.com/prometheus/client_golang;protocol=https;nobranch=1;rev=4ab88e80c249ed361d3299e2930427d9ac43ef8d;name=git_6ffa6057_2;destsuffix=vcs_cache/607ef8649c55f0756537573f8975af1867f26f93a7f97eb4ff594fc98c467f83" | ||
| 54 | SRC_URI += "git://github.com/prometheus/client_golang;protocol=https;nobranch=1;rev=abad2d1bd44235a26707c172eab6bca5bf2dbad3;name=git_6ffa6057_3;destsuffix=vcs_cache/5b7494e1e1baac9b65067e6f77ebb97bd97f8ea769f7093cc8cb23ca7d5ab93e" | ||
| 55 | SRC_URI += "git://github.com/prometheus/procfs;protocol=https;branch=master;rev=185b4288413d2a0dd0806f78c90dde719829e5ae;name=git_0ab7c7bc_0;destsuffix=vcs_cache/6f855d6fe4ec2b6948e8c511b7c537693831aa71f3427a1625d4a9a01260e77d" | ||
| 56 | SRC_URI += "git://github.com/prometheus/procfs;protocol=https;nobranch=1;rev=3f98efb27840a48a7a2898ec80be07674d19f9c8;name=git_0ab7c7bc_1;destsuffix=vcs_cache/300598e31c95698a764cc0dc7edf8fdfc8ab21a3296c0c5a34791af504e1a038" | ||
| 57 | SRC_URI += "git://github.com/prometheus/procfs;protocol=https;nobranch=1;shallow=1;rev=51919fd4b9d0aaca69854ac81bdeda5f96dab366;name=git_0ab7c7bc_2;destsuffix=vcs_cache/9e485df4f8bbb8f868792732d9cf24f477d4d035cf6ee9fdf45dae2869f8e03f" | ||
| 58 | SRC_URI += "git://github.com/prometheus/procfs;protocol=https;nobranch=1;rev=833678b5bb319f2d20a475cb165c6cc59c2cc77c;name=git_0ab7c7bc_3;destsuffix=vcs_cache/99df38a3259da6d3172d2228188bc6bb7c0f8033d40d03436c89d71e754acf1e" | ||
| 59 | SRC_URI += "git://github.com/prometheus/procfs;protocol=https;branch=master;rev=cb4147076ac75738c9a7d279075a253c0cc5acbd;name=git_0ab7c7bc_4;destsuffix=vcs_cache/d6e1327c0735ef125d48a5e4da87d9573ffbc383c27ca670995682b478f20009" | ||
| 60 | SRC_URI += "git://github.com/compose-spec/compose-go;protocol=https;branch=main;rev=e508c724a35f6b21d90b4282baa776916f8a55d0;name=git_3547d0c7_0;destsuffix=vcs_cache/426d122e0f41c57419ee9b7d322833ff268b19e9b1faf4ef89a7a688ddcf8b30" | ||
| 61 | SRC_URI += "git://github.com/sasha-s/go-deadlock;protocol=https;nobranch=1;shallow=1;rev=464d34347a399b840a4f963cc96dfc993ccf8c62;name=git_8c229f40_0;destsuffix=vcs_cache/fa29175221f16401d041954c9a07bc5aa8b90d585d480873eaa15a18b5fa8e6d" | ||
| 62 | SRC_URI += "git://github.com/syndtr/gocapability;protocol=https;branch=master;rev=42c35b4376354fd554efc7ad35e0b7f94e3a0ffb;name=git_bddf7e02_0;destsuffix=vcs_cache/4480911d3d4457413aedb0be556a8ab2b064c475167177096e4dec65342505e9" | ||
| 63 | SRC_URI += "git://github.com/alecthomas/units;protocol=https;branch=master;rev=2efee857e7cfd4f3d0138cc3cbb1b4966962b93a;name=git_12276b46_0;destsuffix=vcs_cache/7a070bc84b00c7dd5b58f997285cd94232a9fb500b03e849c7be9017203e4d51" | ||
| 64 | SRC_URI += "git://github.com/alecthomas/units;protocol=https;branch=master;rev=b94a6e3cc13755c0a75fffecbb089eb346fc4289;name=git_12276b46_1;destsuffix=vcs_cache/fd740bbc9bdec5b8bf13526eff2ee852c365b4c2a8feb66c89e2aa4b36a0d677" | ||
| 65 | SRC_URI += "git://github.com/alecthomas/template;protocol=https;branch=master;rev=a0175ee3bccc567396460bf5acd36800cb10c49c;name=git_61f91bfb_0;destsuffix=vcs_cache/c18e6411468e7b9fa8d3eaacbe26c05c650393a6ed02eded4f8a729fcbdf3278" | ||
| 66 | SRC_URI += "git://github.com/alecthomas/kingpin;protocol=https;nobranch=1;shallow=1;rev=64d23c54e3e2a385ce12757939bed9c632d1693c;name=git_f0f35838_0;destsuffix=vcs_cache/ae34e4803d18ba03ac4e70e84f5e737ec48634b725413ad5282fb01d6fc47dda" | ||
| 67 | SRC_URI += "git://github.com/GoogleCloudPlatform/opentelemetry-operations-go;protocol=https;nobranch=1;shallow=1;rev=d637680bde0cb1e4d06117621478e5ac281ff556;name=git_2c8937f6_0;destsuffix=vcs_cache/be287d0c5f0cf7c8552c99e2b8be67e46cf1c24c93310324e134c8c36f9821e9" | ||
| 68 | SRC_URI += "git://github.com/gogo/protobuf;protocol=https;nobranch=1;shallow=1;rev=1adfc126b41513cc696b209667c8656ea7aac67c;name=git_99185c7b_0;destsuffix=vcs_cache/cea9fa9f6f83d88736f95389bf744ac714093c67292cefcf1607497c27a1dc2b" | ||
| 69 | SRC_URI += "git://github.com/gogo/protobuf;protocol=https;nobranch=1;shallow=1;rev=636bf0302bc95575d69441b25a2603156ffdddf1;name=git_99185c7b_1;destsuffix=vcs_cache/a909192a924253d08799dcf162d9ceb6acdb194f1201fee2872972a79ca6668d" | ||
| 70 | SRC_URI += "git://github.com/gogo/protobuf;protocol=https;nobranch=1;shallow=1;rev=b03c65ea87cdc3521ede29f62fe3ce239267c1bc;name=git_99185c7b_2;destsuffix=vcs_cache/e07d7c0e03a0e2831dd973581be0944984030693bc73f0b67a64e53b4c690635" | ||
| 71 | SRC_URI += "git://github.com/antihax/optional;protocol=https;nobranch=1;shallow=1;rev=c3f0ba9c1a592b971d66b2787679af55b5c58f21;name=git_aab58b7d_0;destsuffix=vcs_cache/535a79fbd6ec4a2d00a2eaeb938554011f822f57d36bc924215af19f4bab0697" | ||
| 72 | SRC_URI += "git://github.com/eiannone/keyboard;protocol=https;branch=master;rev=0d226195f2038e282bb90d2e24f7f29aa7c5b210;name=git_856af60d_0;destsuffix=vcs_cache/c7ad216919ed9d1db40a1a79054fb70019f12275ddb216094b1aefbdd44e8744" | ||
| 73 | SRC_URI += "git://github.com/mwitkow/go-conntrack;protocol=https;branch=master;rev=2f068394615f73e460c2f3d2c158b0ad9321cadb;name=git_ff07aa22_0;destsuffix=vcs_cache/0c95da896ecaf67638f45eea2282c2c840e57fd5bef90b1316645fe86914c177" | ||
| 74 | SRC_URI += "git://github.com/mwitkow/go-conntrack;protocol=https;branch=master;rev=cc309e4a22231782e8893f3c35ced0967807a33e;name=git_ff07aa22_1;destsuffix=vcs_cache/0ff4a51de5f43065c774026c897e99f6a207c66edef943350fa92176ccaf3982" | ||
| 75 | SRC_URI += "git://github.com/hinshun/vt10x;protocol=https;branch=master;rev=820417d04eecba13c2cbab106bbacb1edc8e2e98;name=git_08f1274a_0;destsuffix=vcs_cache/7a79a11a6f7d736423313fcb1bc2d2203d7d9e66baa86d1f4440c872a4349d6d" | ||
| 76 | SRC_URI += "git://github.com/jmespath/go-jmespath;protocol=https;nobranch=1;rev=3d4fd11601ddca248480565884e34e393313cd62;name=git_d4b17222_0;destsuffix=vcs_cache/c3c97b2a21733410cf7bdf451fa4187fbd4cd760335a06d42b48140ef8934d6b" | ||
| 77 | SRC_URI += "git://github.com/google/go-cmp;protocol=https;nobranch=1;shallow=1;rev=6f77996f0c42f7b84e5a2b252227263f93432e9b;name=git_8726c33a_0;destsuffix=vcs_cache/ae58fd0d54f7194cd02ff68b9600f09892901604ebd985b881c9860505e91785" | ||
| 78 | SRC_URI += "git://github.com/google/go-cmp;protocol=https;nobranch=1;shallow=1;rev=9b12f366a942ebc7254abc7f32ca05068b455fb7;name=git_8726c33a_1;destsuffix=vcs_cache/460ed71bde70f3a932cad8d9044d3f12302bf8b6e95353bd17c44189712e2763" | ||
| 79 | SRC_URI += "git://github.com/google/go-cmp;protocol=https;nobranch=1;shallow=1;rev=a97318bf6562f2ed2632c5f985db51b1bc5bdcd0;name=git_8726c33a_2;destsuffix=vcs_cache/fd14e45645e0977841a8f51fbe51cc4ca8444dbd2b4e5eddd91172a3805102fa" | ||
| 80 | SRC_URI += "git://github.com/google/btree;protocol=https;nobranch=1;shallow=1;rev=479b5e81b0a93ec038d201b0b33d17db599531d3;name=git_5967e616_0;destsuffix=vcs_cache/671dad8c21d0328f28b6a6b60eacb7a19b5fd139864911eaad2661310e076d52" | ||
| 81 | SRC_URI += "git://github.com/google/uuid;protocol=https;nobranch=1;shallow=1;rev=0f11ee6918f41a04c201eceeadf612a377bc7fbc;name=git_c3a7687c_0;destsuffix=vcs_cache/1743dd7863ebf20fb946ec26a0525a27c91536f2d01acf863b0a99566cd8f3e5" | ||
| 82 | SRC_URI += "git://github.com/google/pprof;protocol=https;branch=main;rev=4bfdf5a9a2afe5a477d08dd56a5a9b7afd0b0139;name=git_4d435d14_0;destsuffix=vcs_cache/c033cc9a13c1d83fa014636764ddba491707076d34caba553fec1eb1cdbcaf5d" | ||
| 83 | SRC_URI += "git://github.com/google/gofuzz;protocol=https;nobranch=1;rev=379e164120fbc98885a8f494b5aa41ba94f64c56;name=git_32fcbcb4_0;destsuffix=vcs_cache/3937010173fd05b3f7349b62cbf84ac3b69011d5b5f248f16416a9e481943f54" | ||
| 84 | SRC_URI += "git://github.com/google/gofuzz;protocol=https;nobranch=1;shallow=1;rev=f140a6486e521aad38f5917de355cbf147cc0496;name=git_32fcbcb4_1;destsuffix=vcs_cache/3b10b16f3e547f9036aa468f5a846c1e873d084728258048c32c4afc2a1bb2cf" | ||
| 85 | SRC_URI += "git://github.com/google/shlex;protocol=https;branch=master;rev=e7afc7fbc51079733e9468cdfd1efcd7d196cd1d;name=git_2bc3fe04_0;destsuffix=vcs_cache/6317e931b780de46077449706d69a38f426197406a504d848e3500a0d06b7299" | ||
| 86 | SRC_URI += "git://github.com/google/certificate-transparency-go;protocol=https;branch=master;rev=5ab67e519c93568ac3ee50fd6772a5bcf8aa460d;name=git_1d240fe8_0;destsuffix=vcs_cache/0fd69fa049b1061cd5c090184fa587afb10ae78ca64762f4b915f363cf226599" | ||
| 87 | SRC_URI += "git://github.com/google/gnostic-models;protocol=https;nobranch=1;shallow=1;rev=577692584cdf09674595bba0c182d0e8a44655d3;name=git_62ad6da8_0;destsuffix=vcs_cache/a304c0a753953523af06b9321faed7ab4d213739e5e52e0ed150794d203e5c82" | ||
| 88 | SRC_URI += "git://github.com/go-logfmt/logfmt;protocol=https;nobranch=1;rev=07c9b44f60d7ffdfb7d8efe1ad539965737836dc;name=git_6bd45679_0;destsuffix=vcs_cache/ba8d08b7a7c3160ce690a9887ce68303c6e395cb41e8669e5b9c7423dbb2e6d8" | ||
| 89 | SRC_URI += "git://github.com/go-logfmt/logfmt;protocol=https;nobranch=1;rev=2fe45f2cf057d707c50bc1949e25ec2cd6b7a015;name=git_6bd45679_1;destsuffix=vcs_cache/ef9468529842dc23f8307228f579820bee78d0b8657bb841836b93e32fe76b18" | ||
| 90 | SRC_URI += "git://github.com/go-logfmt/logfmt;protocol=https;nobranch=1;rev=390ab7935ee28ec6b286364bba9b4dd6410cb3d5;name=git_6bd45679_2;destsuffix=vcs_cache/87ea6a9e239f17f704d8539912edf62249556b50b823ce9b513c614350572831" | ||
| 91 | SRC_URI += "git://github.com/tchap/go-patricia;protocol=https;nobranch=1;shallow=1;rev=5fc88dd7937ad82ca516f7f1f6b2c06dd0180309;name=git_faedb7d0_0;destsuffix=vcs_cache/03e71ec665c4694ba8586be9a19f38ddeedf022149451164fb4721f599f9dc7d" | ||
| 92 | SRC_URI += "git://github.com/bitly/go-hostpool;protocol=https;nobranch=1;rev=5d3b4dc6ed4701a761ee884fd803b0a0879744f1;name=git_81a0605e_0;destsuffix=vcs_cache/4fa48fb597b43d9ba89aa477912e73c8b6130aa0cda05b209201b071f25d10a4" | ||
| 93 | SRC_URI += "git://github.com/bitly/go-simplejson;protocol=https;nobranch=1;rev=aabad6e819789e569bd6aabf444c935aa9ba1e44;name=git_460f3a74_0;destsuffix=vcs_cache/c56b9fa4257469037ce41f652467339083e21d8cf63b420f7051f689474dcb9e" | ||
| 94 | SRC_URI += "git://github.com/package-url/packageurl-go;protocol=https;nobranch=1;rev=358f10025d4a923f7f9babc766f0968720e82240;name=git_cc0cb43e_0;destsuffix=vcs_cache/69e2d03e1f7870cf593ec577931a0c5fd11729307d2e00a0deabe610548fcd48" | ||
| 95 | SRC_URI += "git://github.com/serialx/hashring;protocol=https;branch=master;rev=22c0c7ab6b1be4be7b950bae8b117767da7b18b6;name=git_819991f3_0;destsuffix=vcs_cache/9ad302311a59b7a00732c9d2e738e872440b07b223df6f9dc7104acafedb16ee" | ||
| 96 | SRC_URI += "git://github.com/census-instrumentation/opencensus-proto;protocol=https;nobranch=1;rev=e53624a87b9b9b919147a9b4626c669a869ebb34;name=git_67c76c7d_0;destsuffix=vcs_cache/50810a84fdec2d9c8210c7c5c4280d5911adb9a7bfd62c792a0353ebe06863ab" | ||
| 97 | SRC_URI += "git://github.com/shibumi/go-pathspec;protocol=https;nobranch=1;rev=30eddf187f62305a5b34f662049d077211abaacd;name=git_48c6ab61_0;destsuffix=vcs_cache/7d6286b09783f24f2ba2db51c2fd61c197637cee9cd88b2e7576338aa579825f" | ||
| 98 | SRC_URI += "git://github.com/fvbommel/sortorder;protocol=https;nobranch=1;rev=a8d9302c17f9f46c6580b82b919672e58ef6e396;name=git_9bd73630_0;destsuffix=vcs_cache/f31f7baba1030efc67be0125d6ea3670572de4cf9ef4162f66c110baedf2fc25" | ||
| 99 | SRC_URI += "git://github.com/fsnotify/fsnotify;protocol=https;nobranch=1;shallow=1;rev=c2828203cd70a50dcccfb2761f8b1f8ceef9a8e9;name=git_3fa8b61c_0;destsuffix=vcs_cache/cc44f7bf337eee80812ff411465b4e87c78887003ae940c1b27adb151bbed7d2" | ||
| 100 | SRC_URI += "git://github.com/fsnotify/fsnotify;protocol=https;nobranch=1;rev=cfc9c4f277ea6ec18de92444b31983b183deb4fb;name=git_3fa8b61c_1;destsuffix=vcs_cache/611e6edb829e44642e664d56f4e7b3828ea1a4ca48f28bb89ca53c1c9010ecbb" | ||
| 101 | SRC_URI += "git://github.com/fsnotify/fsevents;protocol=https;nobranch=1;rev=f73112e4ef0540a922ff546752e95a70fb8f035d;name=git_584419c1_0;destsuffix=vcs_cache/fae61401b9b33d2f4bc3fb5a8898dd22623c392e69010b28dd2577454207e33b" | ||
| 102 | SRC_URI += "git://github.com/morikuni/aec;protocol=https;nobranch=1;shallow=1;rev=39771216ff4c63d11f5e604076f9c45e8be1067b;name=git_a24d8d91_0;destsuffix=vcs_cache/ed63d58cf112e0b59a076da22b09a7543de7421c2457060482db3ad8303454e1" | ||
| 103 | SRC_URI += "git://github.com/urfave/cli;protocol=https;nobranch=1;rev=77bdfaba349380095e742cb8aedbaf4e68d9f3b2;name=git_cd035cbf_0;destsuffix=vcs_cache/496cd8a1b24daac973dcb806ca432503824f1918d2978a8fc9dc8b241b3efe5f" | ||
| 104 | SRC_URI += "git://github.com/urfave/cli;protocol=https;nobranch=1;rev=f035ffaa3749afda2cd26fb824aa940747297ef1;name=git_cd035cbf_1;destsuffix=vcs_cache/3c3ec0c2b70de8c2c14c5dbc22066e299d3110898065435d9f3e1662fe72e90d" | ||
| 105 | SRC_URI += "git://github.com/pkg/profile;protocol=https;nobranch=1;rev=1ac3e9a1c69f55d2f3b5304bcc4e18a9525a92d6;name=git_c88da015_0;destsuffix=vcs_cache/514b8b4f0dcd1ab4c812208028d6ffbd8ac9873c6f9fa22227d0537fe9f6af87" | ||
| 106 | SRC_URI += "git://github.com/pkg/browser;protocol=https;branch=master;rev=5ac0b6a4141c771a0d3a081c36b87c977cf9c7db;name=git_82ac4e9c_0;destsuffix=vcs_cache/10a8ed3a78b0663b7f54101de61f0c1b24ac55185382242b62e593e0b344d42e" | ||
| 107 | SRC_URI += "git://github.com/pkg/errors;protocol=https;nobranch=1;shallow=1;rev=614d223910a179a466c1767a985424175c39b465;name=git_6d82bc63_0;destsuffix=vcs_cache/58e525151c02acebc6662bf19060e7ee1112335787f1ffb059ea8d46a3164e5e" | ||
| 108 | SRC_URI += "git://github.com/pkg/errors;protocol=https;nobranch=1;rev=645ef00459ed84a119197bfb8d8205042c6df63d;name=git_6d82bc63_1;destsuffix=vcs_cache/ea5c82f11a22b952cd732b93d2e8a599298017272296a9232e4a97e26b3f3f27" | ||
| 109 | SRC_URI += "git://github.com/pkg/errors;protocol=https;nobranch=1;rev=ba968bfe8b2f7e042a574c888954fccecfa385b4;name=git_6d82bc63_2;destsuffix=vcs_cache/05a9ae48ad2a27ee2ace909fb6dfe443196ef4ba6b92bd0e3d2f6a9460fc8fea" | ||
| 110 | SRC_URI += "git://github.com/hanwen/go-fuse;protocol=https;nobranch=1;rev=f662427b739821c774fa5c93340d3580c3e75fb0;name=git_4e8568a3_0;destsuffix=vcs_cache/93e9510ac26708545aafce1b6444107f503901cfe4934566520d53a63dad9de1" | ||
| 111 | SRC_URI += "git://github.com/xeipuuv/gojsonpointer;protocol=https;branch=master;rev=02993c407bfbf5f6dae44c4f4b1cf6a39b5fc5bb;name=git_bd44e658_0;destsuffix=vcs_cache/4b0abfc7aeea962cf44836059fabc8aebf20db8d2e9ce317db13d42ade75c19f" | ||
| 112 | SRC_URI += "git://github.com/xeipuuv/gojsonpointer;protocol=https;branch=master;rev=4e3ac2762d5f479393488629ee9370b50873b3a6;name=git_bd44e658_1;destsuffix=vcs_cache/f35df1afe406fbe96a9200b2fa5c736db1be1c70f292d9e69247d35fa318ec32" | ||
| 113 | SRC_URI += "git://github.com/xeipuuv/gojsonreference;protocol=https;branch=master;rev=bd5ef7bd5415a7ac448318e64f11a24cd21e594b;name=git_ca2a9119_0;destsuffix=vcs_cache/6cce19ebe3be9e8f13d8b3c5090971f010f3f3cda349fa51197c974450d133ee" | ||
| 114 | SRC_URI += "git://github.com/xeipuuv/gojsonschema;protocol=https;nobranch=1;shallow=1;rev=82fcdeb203eb6ab2a67d0a623d9c19e5e5a64927;name=git_6efae2af_0;destsuffix=vcs_cache/21478840c17d30281eb0f8b90406d132c72274e71f74dcbe3dfb4fa4236df77c" | ||
| 115 | SRC_URI += "git://github.com/xrash/smetrics;protocol=https;branch=master;rev=686a1a2994c11fac124829fadcb683a24ab8d25f;name=git_51ee97a4_0;destsuffix=vcs_cache/39f621debd197a5e0bcda4514cb54d787e4e443693f317363918ceb70d590944" | ||
| 116 | SRC_URI += "git://github.com/beorn7/perks;protocol=https;nobranch=1;rev=37c8de3658fcb183f997c4e13e8337516ab753e6;name=git_42750950_0;destsuffix=vcs_cache/c20c7a1c80a243f687008566bc9b8a9517bdf7e3a4f9db15e17160ad20568e9d" | ||
| 117 | SRC_URI += "git://github.com/beorn7/perks;protocol=https;branch=master;rev=3a771d992973f24aa725d07868b467d1ddfceafb;name=git_42750950_1;destsuffix=vcs_cache/b05d3659d70127d95ec0b6f7d3aa9b87a50009706e0919be0913fc61dc69e093" | ||
| 118 | SRC_URI += "git://github.com/beorn7/perks;protocol=https;nobranch=1;rev=4b2b341e8d7715fae06375aa633dbb6e91b3fb46;name=git_42750950_2;destsuffix=vcs_cache/8dd89f9e3fbe68a081d37f37c6deba6f0c099069502b162148d0ede72f822a95" | ||
| 119 | SRC_URI += "git://github.com/beorn7/perks;protocol=https;branch=master;rev=b965b613227fddccbfffe13eae360ed3fa822f8d;name=git_42750950_3;destsuffix=vcs_cache/bdca05a2672eea03731c25222db95561d1fad3ee6ccede612b305abb27b074ac" | ||
| 120 | SRC_URI += "git://github.com/kylelemons/godebug;protocol=https;nobranch=1;shallow=1;rev=9ff306d4fbead574800b66369df5b6144732d58e;name=git_463ad04b_0;destsuffix=vcs_cache/070cd2056d33748c34b60876b93e86d0f8bcfa86a4dee28d6da2a6f3aaea66ac" | ||
| 121 | SRC_URI += "git://github.com/mxk/go-flowrate;protocol=https;branch=master;rev=cca7078d478f8520f85629ad7c68962d31ed7682;name=git_a209a0d8_0;destsuffix=vcs_cache/12c25c020a66ecc07c7c90ff8a8793d5462f3f4e58338c9b36012b25b4ed81b8" | ||
| 122 | SRC_URI += "git://github.com/go-stack/stack;protocol=https;nobranch=1;rev=2fee6af1a9795aafbe0253a0cfbdf668e1fb8a9a;name=git_f91af9da_0;destsuffix=vcs_cache/b165c1e0ccf05d91f62b1ae66d83365c5d96f152e956573fb16040ab15370424" | ||
| 123 | SRC_URI += "git://github.com/creack/pty;protocol=https;nobranch=1;shallow=1;rev=3a6a957789163cacdfe0e291617a1c8e80612c11;name=git_86cb0bb0_0;destsuffix=vcs_cache/90ab694bdf1c87cb7742c9e23a91280fd693f673a912c6ed840ff28d25b2d46e" | ||
| 124 | SRC_URI += "git://github.com/creack/pty;protocol=https;nobranch=1;shallow=1;rev=b135084511330383e4d0adc4504cf407cab59bb0;name=git_86cb0bb0_1;destsuffix=vcs_cache/2ae6946e9609d4012331fdd2a2f73d351d9fb15432db00d88ab4c508585a6d96" | ||
| 125 | SRC_URI += "git://github.com/creack/pty;protocol=https;nobranch=1;shallow=1;rev=edfbf75025b0ba4ee17c19f52d9b600fad80a787;name=git_86cb0bb0_2;destsuffix=vcs_cache/a723ba2e04aa95258b42d73ca8ebfd0b4170ac8a314767e9e3f78318484bb93b" | ||
| 126 | SRC_URI += "git://github.com/erikstmartin/go-testdb;protocol=https;branch=master;rev=8d10e4a1bae52cd8b81ffdec3445890d6dccab3d;name=git_4bbc2975_0;destsuffix=vcs_cache/94bdb322899f10502ca21756a20886b09fe0f8e8c7389a50bb21c7a2deb2d047" | ||
| 127 | SRC_URI += "git://github.com/mattn/go-colorable;protocol=https;nobranch=1;shallow=1;rev=11a925cff3d38c293ddc8c05a16b504e3e2c63be;name=git_65d23631_0;destsuffix=vcs_cache/6a55366e9e60cc108e1e5a2ed7de5f7a45982abaf5a3d3a6b7acc8b4cfce973b" | ||
| 128 | SRC_URI += "git://github.com/mattn/go-colorable;protocol=https;nobranch=1;shallow=1;rev=8029fb3788e5a4a9c00e415f586a6d033f5d38b3;name=git_65d23631_1;destsuffix=vcs_cache/c71b6f3acd50d510992b046a557833b9b03a5c1f131137523bd7a638b59e233e" | ||
| 129 | SRC_URI += "git://github.com/mattn/go-sqlite3;protocol=https;nobranch=1;shallow=1;rev=6c771bb9887719704b210e87e934f08be014bdb1;name=git_e0a410bf_0;destsuffix=vcs_cache/0bc060447a84109d178e936cf0287c198c9a1bcbf25d74362b7df7427a44fdda" | ||
| 130 | SRC_URI += "git://github.com/mattn/go-isatty;protocol=https;nobranch=1;shallow=1;rev=1311e847b0cb909da63b5fecfb5370aa66236465;name=git_bdb8c628_0;destsuffix=vcs_cache/4963e35bcc64525b440c791c0eb22045df1ebb90bbcdf56256950a814d09f425" | ||
| 131 | SRC_URI += "git://github.com/mattn/go-isatty;protocol=https;nobranch=1;shallow=1;rev=13e91bf4058fb93d5629deb7b2e3763ec8f4fdf8;name=git_bdb8c628_1;destsuffix=vcs_cache/f79b0a50499696515d01ee34055f66e2f63d620014b0df96e0086e89846966e7" | ||
| 132 | SRC_URI += "git://github.com/mattn/go-isatty;protocol=https;nobranch=1;shallow=1;rev=ed75e619dc0f0489fd4062163a7d061eaa249b9c;name=git_bdb8c628_2;destsuffix=vcs_cache/0806649a7916051776caa365ddfead985a0e796c337935c6d4684980e07dcabe" | ||
| 133 | SRC_URI += "git://github.com/mattn/go-runewidth;protocol=https;nobranch=1;shallow=1;rev=44b7c5b4d67df8ca22917b6800c158a6d3be3560;name=git_54f38250_0;destsuffix=vcs_cache/06d33c3205d863c169e841e4b5af4ec9ccb16e6968fd491facb8c17ba56bb7b7" | ||
| 134 | SRC_URI += "git://github.com/mattn/go-shellwords;protocol=https;nobranch=1;shallow=1;rev=973b9d5391598d4ee601db46fa32f6e186a356ac;name=git_86631c51_0;destsuffix=vcs_cache/3e9de7967c04a07a314669e56b72110ac8eee96a9646f5b9863c709575abe8d1" | ||
| 135 | SRC_URI += "git://github.com/sirupsen/logrus;protocol=https;nobranch=1;shallow=1;rev=3e01752db0189b9157070a0e1668a620f9a85da2;name=git_02061634_0;destsuffix=vcs_cache/e2b60414d6cf051bc156482dc25c0e442f2dcbaf755db11f95b165196e3a417d" | ||
| 136 | SRC_URI += "git://github.com/sirupsen/logrus;protocol=https;nobranch=1;shallow=1;rev=8bdbc7bcc01dcbb8ec23dc8a28e332258d25251f;name=git_02061634_1;destsuffix=vcs_cache/e7dadc55f17d7e5dd646b8a1408f0d5dc551bfbbbb8de273a6b6ceb927a05353" | ||
| 137 | SRC_URI += "git://github.com/sirupsen/logrus;protocol=https;nobranch=1;rev=bcd833dfe83d3cebad139e4a29ed79cb2318bf95;name=git_02061634_2;destsuffix=vcs_cache/f662f3bd248d63f5671cbf660c0fd3e5c3fc5389fca023c018b7c8fa63d75263" | ||
| 138 | SRC_URI += "git://github.com/sirupsen/logrus;protocol=https;nobranch=1;shallow=1;rev=d40e25cd45ed9c6b2b66e6b97573a0413e4c23bd;name=git_02061634_3;destsuffix=vcs_cache/a1230aee5f8f1a866199cbec636d1525e00a9b13cf2fe0023dcf6b874c525014" | ||
| 139 | SRC_URI += "git://github.com/theupdateframework/notary;protocol=https;nobranch=1;rev=b0b6bfdd4933081e8d5ae026b24e8337311dd598;name=git_88169bba_0;destsuffix=vcs_cache/0e83ed3cbdbbbd63c9ab62dc40651621a386fcaf575326772f2912b1279bfb2b" | ||
| 140 | SRC_URI += "git://github.com/AzureAD/microsoft-authentication-library-for-go;protocol=https;nobranch=1;rev=4a4dafcbcbd7d57a69ed3bc59760381232c2be9c;name=git_b3899c58_0;destsuffix=vcs_cache/ee4456dd08dc4761e548cc44d4ebab6fe47b83b1a829a081c2437abd674498fc" | ||
| 141 | SRC_URI += "git://github.com/otiai10/copy;protocol=https;nobranch=1;shallow=1;rev=5ef5923d6ff098ea7a51792c1ec963d04fad9794;name=git_e0ff6709_0;destsuffix=vcs_cache/6f52336953491d169a014c4906e3f17a4c78b425ca26804ae779c6167516d7d0" | ||
| 142 | SRC_URI += "git://github.com/otiai10/mint;protocol=https;nobranch=1;shallow=1;rev=6dcf2e3a67310fd0fbd970199f187f5c575756c9;name=git_7127f064_0;destsuffix=vcs_cache/8e5429bf94b80c2f4aae87b33f4b4dd03b9d8a978004bf74b1fe4042dc0b5fad" | ||
| 143 | SRC_URI += "git://github.com/in-toto/in-toto-golang;protocol=https;nobranch=1;rev=ec599036d27ebaca3e8c03559d3f8fd5fe429dfe;name=git_bd024477_0;destsuffix=vcs_cache/7d544f7dc777f982bd6692662edefe8dc45ef1902fea4d1d8f2e3961898159f6" | ||
| 144 | SRC_URI += "git://github.com/Masterminds/semver;protocol=https;nobranch=1;rev=e06051f8fcc4c8b4a4990c337b9862a2448722e5;name=git_ff930dd9_0;destsuffix=vcs_cache/06a2e404550af8289dddf14a03f5ed0f2de99fa87c449e6aa486f068fcfca24e" | ||
| 145 | SRC_URI += "git://github.com/envoyproxy/go-control-plane;protocol=https;nobranch=1;shallow=1;rev=03ea0b291d20b8ab4962f34c94cd0d45223e86d3;name=git_f80b47a3_0;destsuffix=vcs_cache/8cb6f07cc6cc729c5452d8664e1688bbe0abee3015dd5d2d76804c7d50cd0660" | ||
| 146 | SRC_URI += "git://github.com/envoyproxy/protoc-gen-validate;protocol=https;nobranch=1;shallow=1;rev=be2520c8aa2105ea1cb7b89ff8e506c7e8141c26;name=git_ac4e3fea_0;destsuffix=vcs_cache/ecd89a579c798e2583479ead808e21e18beb78976348081588cdcfcf79ec8e8a" | ||
| 147 | SRC_URI += "git://github.com/armon/circbuf;protocol=https;branch=master;rev=5111143e8da2e98b4ea6a8f32b9065ea1821c191;name=git_95ffcffa_0;destsuffix=vcs_cache/f44b726eafbedd3c7d5723dfd9850375946a0b78000629a3558aacfbb013cecb" | ||
| 148 | SRC_URI += "git://github.com/armon/go-socks5;protocol=https;branch=master;rev=e75332964ef517daa070d7c38a9466a0d687e0a5;name=git_2b8f1887_0;destsuffix=vcs_cache/e611fb2e9fe86f2cb19c89c1dc37c0ad6b5656135015f1466fb20c934e3dc531" | ||
| 149 | SRC_URI += "git://github.com/coreos/go-systemd;protocol=https;nobranch=1;rev=d5623bf85e8e73ae6352f78ee6b55a287619dd4e;name=git_1f60ff15_0;destsuffix=vcs_cache/1240ab68de5778e9c43b2943db956bd157fab582cec5363f953cb5c72f2e445b" | ||
| 150 | SRC_URI += "git://github.com/mdlayher/socket;protocol=https;nobranch=1;rev=024cdfb30ba417ac6f1b27bb5189a8099787dcf7;name=git_4845c6c9_0;destsuffix=vcs_cache/9c6cb75836d53715b547a2b7260474a523540fec4e687f790069f58f7264c418" | ||
| 151 | SRC_URI += "git://github.com/mdlayher/vsock;protocol=https;nobranch=1;rev=8569e301791e164b669ff36b51035bb1d7c9b3a3;name=git_9e9130ba_0;destsuffix=vcs_cache/a7b2ec13026e78d41b91e1e452aab0a78ae155b70966624ec8e5e52ba56a0b08" | ||
| 152 | SRC_URI += "git://github.com/mailru/easyjson;protocol=https;nobranch=1;shallow=1;rev=c120ca7ced6051261161ce15e8f1542a4b2567fc;name=git_4620abf9_0;destsuffix=vcs_cache/5b802334c301c91bd13cee6264caa8c327300bfc16173c6074fc315244620dd8" | ||
| 153 | SRC_URI += "git://github.com/agext/levenshtein;protocol=https;nobranch=1;rev=52c14c47d03211d8ac1834e94601635e07c5a6ef;name=git_67b51d80_0;destsuffix=vcs_cache/f4186a1dba20fb3f51b9daaf116c010f10b94a0eb8114b084e25bb3b5649ecf6" | ||
| 154 | SRC_URI += "git://github.com/AdaLogics/go-fuzz-headers;protocol=https;branch=main;rev=e8a1dd7889d65b8a6f02175e0d79d7c0557db7f9;name=git_77272b21_0;destsuffix=vcs_cache/618ef3cd1ed01872674845eae25e7d6a50a3d70b49881ccd500327b0778fedb9" | ||
| 155 | SRC_URI += "git://github.com/dvsekhvalnov/jose2go;protocol=https;branch=master;rev=f21a8cedbbae609f623613ec8f81125c243212e6;name=git_a73ac418_0;destsuffix=vcs_cache/3bed371de2aaaf0cbb9c346c5f01b8240e14c9e194179639d31b29aef3704b71" | ||
| 156 | SRC_URI += "git://github.com/opencontainers/runtime-spec;protocol=https;nobranch=1;rev=36852b0d072a4b5da675300a9e73bc4b0853f5c6;name=git_502d0543_0;destsuffix=vcs_cache/5dd5e40a73eece5da452e07f7921fde1940d6b484a76b9c3203be7a9a0807cb0" | ||
| 157 | SRC_URI += "git://github.com/opencontainers/go-digest;protocol=https;branch=master;rev=a6d0ee40d4207ea02364bd3b9e8e77b9159ba1eb;name=git_552be1ee_0;destsuffix=vcs_cache/023b07658f561af4e33906504bb1dff6d66e7a4b8ef99fcf0927e6d101be98bd" | ||
| 158 | SRC_URI += "git://github.com/opencontainers/go-digest;protocol=https;nobranch=1;rev=ea51bea511f75cfa3ef6098cc253c5c3609b037a;name=git_552be1ee_1;destsuffix=vcs_cache/1a4d20c74c510ca00ecb86a3379c151579ed626508723e74a394480a71a0af24" | ||
| 159 | SRC_URI += "git://github.com/opencontainers/selinux;protocol=https;nobranch=1;shallow=1;rev=44b3337c67171896cf6f299ece82ec31abfe8c0d;name=git_49bf5caa_0;destsuffix=vcs_cache/7a79fab55a520abe1fd1c87ab4a52fb9e469ee25eb924c5bc3c3f151e045078d" | ||
| 160 | SRC_URI += "git://github.com/opencontainers/image-spec;protocol=https;nobranch=1;rev=147f9c13cedb47a0c4d9a11a222961073d585877;name=git_a9e099ef_0;destsuffix=vcs_cache/5bb7cbac46d5df774d087c364c00445553d3db253ca80dc7050c4e57832c118d" | ||
| 161 | SRC_URI += "git://github.com/opencontainers/image-spec;protocol=https;nobranch=1;rev=d60099175f88c47cd379c4738d158884749ed235;name=git_a9e099ef_1;destsuffix=vcs_cache/cc3b5f635a95bc8a8d17057e77e824e9203543710d27cab434eae6bda0ebd445" | ||
| 162 | SRC_URI += "git://github.com/opencontainers/runtime-tools;protocol=https;branch=master;rev=2e043c6bd62639199bdd0d5f0c5082797de4de2a;name=git_b055e1ee_0;destsuffix=vcs_cache/8b8cdfeb7bd96052c4ebea0b549284e395ebb9bac1a75605850eea9bc5202abf" | ||
| 163 | SRC_URI += "git://github.com/yuin/goldmark;protocol=https;nobranch=1;shallow=1;rev=12fc98ebcd751822bbd43314119e483472e6f55f;name=git_40d8a3db_0;destsuffix=vcs_cache/fb45f805a799ac2f897942f334c68fc215fa5bfc06f4b0277d583fe78f6c36ca" | ||
| 164 | SRC_URI += "git://github.com/yuin/goldmark;protocol=https;nobranch=1;shallow=1;rev=91e5269fb0f873f91c9a01e98f32de15ca49440f;name=git_40d8a3db_1;destsuffix=vcs_cache/4c58efe0c28d74a0131cf65fc06af9bf723f3852cb20f81dce6ce9ae50793119" | ||
| 165 | SRC_URI += "git://github.com/yuin/goldmark;protocol=https;nobranch=1;shallow=1;rev=c0856327b39b00b39b5d7e1f5ed0eed8bb1b6a23;name=git_40d8a3db_2;destsuffix=vcs_cache/fbec1a06cf7d810b36a87559756866f825159c4db030b543bd6359717d401035" | ||
| 166 | SRC_URI += "git://github.com/pelletier/go-toml;protocol=https;nobranch=1;shallow=1;rev=b730b2be5d3ab7283067ddf61188f41cdf42ce06;name=git_5fc8a683_0;destsuffix=vcs_cache/c292f215fe326412116cc710f5de461999e72fd140e4e646d33969f537def76b" | ||
| 167 | SRC_URI += "git://github.com/pelletier/go-toml;protocol=https;nobranch=1;shallow=1;rev=fed1464066413075eac02cd4dc368b5221845541;name=git_5fc8a683_1;destsuffix=vcs_cache/22bc2e212b193b23af04b0014dd6e6f15e66953913e88670099f8375927b48c7" | ||
| 168 | SRC_URI += "git://github.com/x448/float16;protocol=https;nobranch=1;shallow=1;rev=cb9afec31f2649663ebb64da5c6c32c3d365c3ca;name=git_b79b770f_0;destsuffix=vcs_cache/e395eca01f11e874b5b2b165e3dc2620faa30374fb308657449d3a3023ce5cbb" | ||
| 169 | SRC_URI += "git://github.com/go-viper/mapstructure;protocol=https;nobranch=1;rev=6abdb44d71d6ac11f79c11a30a9653c9e4986625;name=git_2ea12042_0;destsuffix=vcs_cache/cb0d283517ebc8a7669a3ae29fbdc0f774cb29e99c8f6d8dd96ee760e00aa565" | ||
| 170 | SRC_URI += "git://github.com/godbus/dbus;protocol=https;nobranch=1;shallow=1;rev=e523abc905595cf17fb0001a7d77eaaddfaa216d;name=git_d9e1e146_0;destsuffix=vcs_cache/64a1380eac8fb56f64570a9ee44f46ff49a8cfc74d31623d696b49699728d072" | ||
| 171 | SRC_URI += "git://github.com/acarl005/stripansi;protocol=https;branch=master;rev=5a71ef0e047df0427e87a79f27009029921f1f9b;name=git_b7e052ac_0;destsuffix=vcs_cache/337c48cf09adc53fe47bcae33dc8d5465a7dbf818b017054e53ee8ec11f2a73f" | ||
| 172 | SRC_URI += "git://github.com/go-logr/logr;protocol=https;nobranch=1;shallow=1;rev=1205f429d540b8b81c2b75a38943afb738dac223;name=git_e0ff909e_0;destsuffix=vcs_cache/9655eab28e005d39cc2bb4b149948f2765b6737fb833acda1ea9a8fa1c01f086" | ||
| 173 | SRC_URI += "git://github.com/go-logr/logr;protocol=https;nobranch=1;shallow=1;rev=99e02a994f50f904b6b201df394776cf687238a9;name=git_e0ff909e_1;destsuffix=vcs_cache/761d6b76e4ca57583edd8a7d6cf39d5a0c0dfd1fb4f82f099c044f754193f7d1" | ||
| 174 | SRC_URI += "git://github.com/go-logr/stdr;protocol=https;nobranch=1;shallow=1;rev=521af2addfa7c81c8a65d0e85ed34bb6bb6dc262;name=git_76834f06_0;destsuffix=vcs_cache/e69aa58ea5f2f28aa8623652f5e6643b2299d9fe8ba1e6c73a8e3d602290ac67" | ||
| 175 | SRC_URI += "git://github.com/petermattis/goid;protocol=https;branch=master;rev=4fcff4a6cae7cd8fdaeeaa8bb87443eda9dec107;name=git_8e87b253_0;destsuffix=vcs_cache/28fe23d2ffb5463ca74406309be8d07f56f5b77b8f151b1f3d5a8edf6d6ae9be" | ||
| 176 | SRC_URI += "git://github.com/danieljoos/wincred;protocol=https;nobranch=1;shallow=1;rev=e96a9fd23c812a17880f76ef6d6913eaa0e3199e;name=git_340c15e0_0;destsuffix=vcs_cache/3af90ab01dd5055f0f7304a3aab6d9153d9e4b7dadf15f1cce3c3f1a96a923c2" | ||
| 177 | SRC_URI += "git://github.com/grpc-ecosystem/go-grpc-middleware;protocol=https;nobranch=1;shallow=1;rev=3f5e2b31e36c931159a1b80287847840cd581e6e;name=git_e9f7c9ac_0;destsuffix=vcs_cache/4e15ad209f57f1610bea03c67dbeef9ef7792fafe9b2902ca1a141277719f091" | ||
| 178 | SRC_URI += "git://github.com/grpc-ecosystem/go-grpc-middleware;protocol=https;nobranch=1;shallow=1;rev=7da22cf3f3d3ae190467d9c7a3ea749b3d0e63b5;name=git_e9f7c9ac_1;destsuffix=vcs_cache/3e59bfc763822ab8a68a88fa3e9fac0f47783c9374d27ac65298f1f8d1b2571a" | ||
| 179 | SRC_URI += "git://github.com/grpc-ecosystem/grpc-gateway;protocol=https;nobranch=1;shallow=1;rev=0b14a81276e64dcbf611990bc211082b62a334e6;name=git_3fba78e5_0;destsuffix=vcs_cache/54aa69c409e35a26a6892d859ac1c260b7467abbebcf7533bac2d13284145cdc" | ||
| 180 | SRC_URI += "git://github.com/go-task/slim-sprig;protocol=https;nobranch=1;rev=b05cce61fffa5c6dea6ac8b9a1f12b6e3fb7c894;name=git_0442e1d1_0;destsuffix=vcs_cache/8dd5020cf322cc4f91014ac7828ac4826cba4ce7da08320ac497d655159088a5" | ||
| 181 | SRC_URI += "git://github.com/containernetworking/cni;protocol=https;nobranch=1;shallow=1;rev=309b6bbc17b2cd9eb9c26a46977ba1f1f5f032a4;name=git_4ce5ee0d_0;destsuffix=vcs_cache/207079ebc0e6f1af1497b081245d90f57acd17d56b5a7e8c5e02d50bb04653e1" | ||
| 182 | SRC_URI += "git://github.com/containernetworking/plugins;protocol=https;nobranch=1;shallow=1;rev=c29dc79f96cd50452a247a4591443d2aac033429;name=git_4541537c_0;destsuffix=vcs_cache/da85936fb221491063d7af963a2cea694c748a952f56b7c9b260477d72647200" | ||
| 183 | SRC_URI += "git://github.com/opentracing/opentracing-go;protocol=https;nobranch=1;shallow=1;rev=659c90643e714681897ec2521c60567dd21da733;name=git_198e2417_0;destsuffix=vcs_cache/ef2c56f0be025c9601f62c989b9bbcc2ccb4177a010b2d10139888b5762b9823" | ||
| 184 | SRC_URI += "git://github.com/go-kit/kit;protocol=https;nobranch=1;rev=12210fb6ace19e0496167bb3e667dcd91fa9f69b;name=git_b9f1d7d4_0;destsuffix=vcs_cache/164d4eaa2f8107f0ad2f6559aac743c96ecce3f6eb17905b0e878385ede67301" | ||
| 185 | SRC_URI += "git://github.com/go-kit/log;protocol=https;nobranch=1;rev=0b69c7049332e99c25d5fd0f4d08317cfe45e7d8;name=git_1d9f54c6_0;destsuffix=vcs_cache/ed7073de6ef2fea58a8fe12729a291d8a57b99673c02db9713b63e7bd9dae5d2" | ||
| 186 | SRC_URI += "git://github.com/BurntSushi/toml;protocol=https;nobranch=1;rev=3012a1dbe2e4bd1391d42b32f0577cb7bbc7f005;name=git_ec7059c7_0;destsuffix=vcs_cache/c7591feaba0db5f458f0e6745283c8246ea0f50af4eb4714a53ff88805ecd88a" | ||
| 187 | SRC_URI += "git://github.com/go-openapi/jsonreference;protocol=https;nobranch=1;rev=1f158e563669961b8e54817e3ea57978d439ffff;name=git_2d19bf8f_0;destsuffix=vcs_cache/2b1f5e4abef192d562993c04982e0222c673c03ef641b68a8e86ea31eae7b8e4" | ||
| 188 | SRC_URI += "git://github.com/go-openapi/swag;protocol=https;nobranch=1;rev=0579829e66fde26b27d401921afb73704c4d463d;name=git_8c33ed8b_0;destsuffix=vcs_cache/d421d27944361416d092faf841873e7e7e5bad53f26778f0f55b912c83749393" | ||
| 189 | SRC_URI += "git://github.com/go-openapi/swag;protocol=https;nobranch=1;rev=f28dd7aae5534e2e3681204c90019f1dda8a7393;name=git_8c33ed8b_1;destsuffix=vcs_cache/8f8d2571addcdca482f06070dbf229c1458c2580e2de6646584bfc5f88180320" | ||
| 190 | SRC_URI += "git://github.com/go-openapi/jsonpointer;protocol=https;nobranch=1;shallow=1;rev=5df0d69a6be189afff354877d332f9ede32afe12;name=git_a3358eda_0;destsuffix=vcs_cache/00cfe127584daa066683f2c66a1b89f3fc8e301a1bbe5bf9fa1e5af7785cf776" | ||
| 191 | SRC_URI += "git://github.com/r3labs/sse;protocol=https;branch=master;rev=26fe804710bc39ea7ea6636d36f27c438bd2c06f;name=git_7fa580fb_0;destsuffix=vcs_cache/ab0b92c9c29a7a73f8bd6dab95e19601499450551acc92cb339fff90be59f4cb" | ||
| 192 | SRC_URI += "git://github.com/emicklei/go-restful;protocol=https;nobranch=1;rev=30bec7807481e62e1e1e59ad57e7f22054806966;name=git_98baf7ea_0;destsuffix=vcs_cache/eeb71d093818e9ca5330b299be473b34d4e409659702a5b3608fe23fb85b1798" | ||
| 193 | SRC_URI += "git://github.com/gorilla/mux;protocol=https;nobranch=1;shallow=1;rev=a7962380ca08b5a188038c69871b8d3fbdf31e89;name=git_ebce69d6_0;destsuffix=vcs_cache/e9f6dcbb74dd04784ade5364ce0688a4247bdb04e0cc5ea8774218e7cf8a65c5" | ||
| 194 | SRC_URI += "git://github.com/gorilla/mux;protocol=https;nobranch=1;shallow=1;rev=b4617d0b9670ad14039b2739167fd35a60f557c5;name=git_ebce69d6_1;destsuffix=vcs_cache/489d4511710bd1a1fc80974aa65ee7c2b851f7c6354c34549b8cd131f4435f0f" | ||
| 195 | SRC_URI += "git://github.com/gorilla/websocket;protocol=https;nobranch=1;shallow=1;rev=9111bb834a68b893cebbbaed5060bdbc1d9ab7d2;name=git_05a135b6_0;destsuffix=vcs_cache/477b2601256923ac752e44d0be1d4864a37c42c87fcd9d9a143ea91a6714d9e4" | ||
| 196 | SRC_URI += "git://github.com/golang-sql/civil;protocol=https;branch=master;rev=cb61b32ac6fe84d34b81730175f91965e43d0f90;name=git_3d8b378b_0;destsuffix=vcs_cache/cf48a794754d9a9b29ff84011cf01764f8e4e9140292e83b4154b89a13f0eee9" | ||
| 197 | SRC_URI += "git://github.com/tilt-dev/fsnotify;protocol=https;branch=main;rev=fff9c274a375301ae46812f257aa68393790c45b;name=git_c15f6d9a_0;destsuffix=vcs_cache/7518a2b435d07d055cf9c9215e09d3f354425246b3aaec57d9906b3f344e061e" | ||
| 198 | SRC_URI += "git://github.com/matttproud/golang_protobuf_extensions;protocol=https;nobranch=1;shallow=1;rev=c12348ce28de40eed0136aa2b644d0ee0650e56c;name=git_2855aad4_0;destsuffix=vcs_cache/dd0fe058870feb088b8d2d88a7ff601f4c8c03aedeede7d837efcd311b5aea9b" | ||
| 199 | SRC_URI += "git://github.com/Netflix/go-expect;protocol=https;branch=master;rev=73e0943537d2ba88bdf3f6acec79ca2de1d059df;name=git_e89d3f31_0;destsuffix=vcs_cache/421789c64dd51281a459815573a00c171d61889f5324c1701c37f5f2e8caa8a3" | ||
| 200 | SRC_URI += "git://github.com/pmezard/go-difflib;protocol=https;branch=master;rev=5d4384ee4fb2527b0a1256a821ebfc92f91efefc;name=git_b66720d7_0;destsuffix=vcs_cache/542a02198867d48986449e0f3353a6afa6fd53ac0a9f07be5882207092512174" | ||
| 201 | SRC_URI += "git://github.com/pmezard/go-difflib;protocol=https;nobranch=1;rev=792786c7400a136282c1664665ae0a8db921c6c2;name=git_b66720d7_1;destsuffix=vcs_cache/c04ad296d2e3203fda8b7ca96feaca21b20b3b7441e33c7d67cda029ea61ab4c" | ||
| 202 | SRC_URI += "git://github.com/golang/groupcache;protocol=https;branch=master;rev=41bb18bfe9da5321badc438f91158cd790a33aa3;name=git_24e750eb_0;destsuffix=vcs_cache/9cb4fa70f6f35f54f74cdd67019238c735edf9b37265c9047d5be47d613fac53" | ||
| 203 | SRC_URI += "git://github.com/golang/glog;protocol=https;nobranch=1;shallow=1;rev=04dbec0df8d03d5c187beaf5ce8e6c58e9fc82b5;name=git_d14ca79d_0;destsuffix=vcs_cache/10238c556d1959fe7150392c62d47e4e08933e1d5d1656ee52804859fec96c6a" | ||
| 204 | SRC_URI += "git://github.com/golang/protobuf;protocol=https;nobranch=1;shallow=1;rev=5d5b4c10bd43f85e63bd9e4a3fa9b1ea2ef88af2;name=git_6e18cbff_0;destsuffix=vcs_cache/f83545c5d009af94276add9fdb970f0b4b5b6872f19d4b02b8111007ee5544b0" | ||
| 205 | SRC_URI += "git://github.com/golang/protobuf;protocol=https;nobranch=1;shallow=1;rev=6c65a5562fc06764971b7c5d05c76c75e84bdbf7;name=git_6e18cbff_1;destsuffix=vcs_cache/cbdb48339b27d250cd1655e4e658760981e0b526face5866f3cfac54fd21200c" | ||
| 206 | SRC_URI += "git://github.com/golang/protobuf;protocol=https;nobranch=1;shallow=1;rev=75de7c059e36b64f01d0dd234ff2fff404ec3374;name=git_6e18cbff_2;destsuffix=vcs_cache/ff75ecee442381e7c87bac5ec092ebaf50137bc693ba5c5c1edce6eb4bd3ce94" | ||
| 207 | SRC_URI += "git://github.com/golang/protobuf;protocol=https;nobranch=1;shallow=1;rev=aa810b61a9c79d51363740d207bb46cf8e620ed5;name=git_6e18cbff_3;destsuffix=vcs_cache/c620195ee748026eed07d7e16b36050b97c69cfe3f735e96aafd915e5397baa5" | ||
| 208 | SRC_URI += "git://github.com/golang/protobuf;protocol=https;nobranch=1;shallow=1;rev=b5d812f8a3706043e23a9cd5babf2e5423744d30;name=git_6e18cbff_4;destsuffix=vcs_cache/ac3a600ae77600dcd73c8d21a4cd18d0b220318ed349c8deda52af33b71c50c6" | ||
| 209 | SRC_URI += "git://github.com/go-jose/go-jose;protocol=https;nobranch=1;shallow=1;rev=15bc4c2ac4575ad865f078390db61d44530f985d;name=git_3c60bf8b_0;destsuffix=vcs_cache/19011aacdb618bd78f198fe7f98f5dd0d87658ba153cfe43f6dac19de23aace4" | ||
| 210 | SRC_URI += "git://github.com/golang-jwt/jwt;protocol=https;nobranch=1;rev=80dccb9209ebe7b503c067dc830fcbd4aa2e74eb;name=git_6a52582e_0;destsuffix=vcs_cache/145bc6b589338e18adbd25b7938cbbdeb333148620cb6268838b78897d3540c5" | ||
| 211 | SRC_URI += "git://github.com/felixge/httpsnoop;protocol=https;nobranch=1;shallow=1;rev=c5817c27ec125409c069052fdd171023c353501c;name=git_b48d732c_0;destsuffix=vcs_cache/4faaa0a5649a2ae9245609ad7ed739dbc2e39cfd27a3018400f3dad114269d26" | ||
| 212 | SRC_URI += "git://github.com/felixge/fgprof;protocol=https;nobranch=1;rev=b0f80df6b76f74ec0c611dc52f4e79d4a11bff81;name=git_6649ad42_0;destsuffix=vcs_cache/e4198b9fea19f930b494d86892d08c8dcf4d5828b2b7c19db44e432daeadbd37" | ||
| 213 | SRC_URI += "git://github.com/spdx/tools-golang;protocol=https;nobranch=1;rev=6a271aaa7370038495ab7acdd0eab38e72666c9c;name=git_c611268e_0;destsuffix=vcs_cache/da8df6a61f5097d88daf5e9b6c03c38b4b19ae6e6536edb864f75bf2bc30b151" | ||
| 214 | SRC_URI += "git://github.com/lib/pq;protocol=https;branch=master;rev=0dad96c0b94f8dee039aa40467f767467392a0af;name=git_6c68f1e9_0;destsuffix=vcs_cache/501779f1f37d5eedf7b5e73065f7d7847c6343baa947b47ab9335de358604a1c" | ||
| 215 | SRC_URI += "git://github.com/cloudflare/cfssl;protocol=https;branch=master;rev=4e2dcbde500472449917533851bf4bae9bdff562;name=git_00392491_0;destsuffix=vcs_cache/3c8104b7da9d2e18832889b5c6a3e835075611b12d6602487addb722a70feac5" | ||
| 216 | SRC_URI += "git://github.com/asaskevich/govalidator;protocol=https;branch=master;rev=f61b66f89f4a311bef65f13e575bcf1a2ffadda6;name=git_f9896ddf_0;destsuffix=vcs_cache/61c02063e287a5f7f9564f2b444919f4570e5c77b7fedf6b636132c1444406fd" | ||
| 217 | SRC_URI += "git://github.com/tonistiigi/go-actions-cache;protocol=https;branch=master;rev=1a5174abd0559b23ff2b1c2ded57c5f6a0d8669c;name=git_27df42ff_0;destsuffix=vcs_cache/7afb6e37fb41c654c85c7025c09e86eeb4cad6d13f273ae7fe4e12cb744895a8" | ||
| 218 | SRC_URI += "git://github.com/tonistiigi/dchapes-mode;protocol=https;branch=main;rev=ca0759fec205a36ac026b90f4cf90c04c56e1f8b;name=git_e1d53fb7_0;destsuffix=vcs_cache/4b37a45b573e46274999aeacb947e66b77af10f7bcf80d7765116f0f545ddb53" | ||
| 219 | SRC_URI += "git://github.com/tonistiigi/go-csvvalue;protocol=https;branch=master;rev=ddb21b71c0b45f8854f3bb72726ee898a99c2348;name=git_cd3fcea2_0;destsuffix=vcs_cache/9d2768221331347d1dcceca683175004436e98a7a509a80b315da4f2e94252fe" | ||
| 220 | SRC_URI += "git://github.com/tonistiigi/units;protocol=https;branch=master;rev=6950e57a87eaf136bbe44ef2ec8e75b9e3569de2;name=git_02686fd3_0;destsuffix=vcs_cache/a0528d63437c733bc9243aeb601d0f1175a8f8eaa01b2402d7b077f35f36fbcd" | ||
| 221 | SRC_URI += "git://github.com/tonistiigi/go-archvariant;protocol=https;nobranch=1;rev=ee27df245367183248db3391ccaaffce4bf25b3f;name=git_aa07a577_0;destsuffix=vcs_cache/07d631aebb630179eda0ac758a6a400523556e0df873aaaa8107c81569f5312d" | ||
| 222 | SRC_URI += "git://github.com/tonistiigi/jaeger-ui-rest;protocol=https;branch=master;rev=7d4944a45bb6ac09c1fdbeddac2b7f749cb23885;name=git_6e70a498_0;destsuffix=vcs_cache/7962db19081ce7b7826282db478ca2eaf3a8c7527f539dea5102801e6e99c614" | ||
| 223 | SRC_URI += "git://github.com/tonistiigi/fsutil;protocol=https;branch=master;rev=b14e27f4135ab262f0252f9f0e8749fd7ba3680f;name=git_e9a91661_0;destsuffix=vcs_cache/24136717ad11dd9402df48c0d2246006790ab9f69981c713ef2bdd9dd1feef96" | ||
| 224 | SRC_URI += "git://github.com/tonistiigi/vt100;protocol=https;branch=master;rev=90bafcd6abab5dc87970f00165ee2022806709fd;name=git_8eef3e28_0;destsuffix=vcs_cache/8c7e9f3cea5c616be7d8cb3b181a8ecf2d3b1ff0b881bb34abd9235b7680d2c9" | ||
| 225 | SRC_URI += "git://github.com/denisenkom/go-mssqldb;protocol=https;branch=master;rev=1d7a30a10f73a69b1adb731b0ab12be3da43a833;name=git_827fc7d8_0;destsuffix=vcs_cache/51d1448ae824a59e167bc4626cbed812ff98e24bad9ad0e55865452f35f4e32a" | ||
| 226 | SRC_URI += "git://github.com/containerd/stargz-snapshotter;protocol=https;nobranch=1;shallow=1;rev=c0389e084ae5731215c1251b04f3a8b49efb6d5a;name=git_0c473532_0;destsuffix=vcs_cache/5eb38cc9ca80caacbcdd1de8143458a6ee925f3d22dcf816abaa4c95692e1bed" | ||
| 227 | SRC_URI += "git://github.com/containerd/otelttrpc;protocol=https;nobranch=1;shallow=1;rev=fa91cafe17adf59a0edc10650135dfd1dfb761c2;name=git_69c055ed_0;destsuffix=vcs_cache/c27d4a7087a7f4624cdf40c161f9707dbb90cd2d71159840f7c7b610260e9f24" | ||
| 228 | SRC_URI += "git://github.com/containerd/platforms;protocol=https;nobranch=1;shallow=1;rev=e3566b8ff1994b8dc88bae5768d32830e0cd0cfd;name=git_96693f8e_0;destsuffix=vcs_cache/228b46280b8405c1f31e6357892b48ca503c9081ad55b4542dacec14a2cb0142" | ||
| 229 | SRC_URI += "git://github.com/containerd/go-runc;protocol=https;nobranch=1;rev=df3c22d088ca919d1943efa8ae0cfc0514da0542;name=git_84c96084_0;destsuffix=vcs_cache/9044e9e240020298712a51a4db4736afc66d70b1870cf11cac73c0661be06842" | ||
| 230 | SRC_URI += "git://github.com/containerd/errdefs;protocol=https;nobranch=1;shallow=1;rev=4817405e4a3caeb7aee9dac68ed55339c59cb635;name=git_070120f7_0;destsuffix=vcs_cache/d9d1c9949e837f39205605237b656e944c7d0cd69e48a906fabdb6bebe0edb66" | ||
| 231 | SRC_URI += "git://github.com/containerd/nri;protocol=https;nobranch=1;shallow=1;rev=6d486acd3f7190d39f3b22490b59f7b7bb937b22;name=git_523249c2_0;destsuffix=vcs_cache/ba74adc9d7b3b1cfa448d53477902136dcbbecec853952e1cf60100155fb0f11" | ||
| 232 | SRC_URI += "git://github.com/containerd/typeurl;protocol=https;nobranch=1;shallow=1;rev=5b047adad57d172afa9654c019fe65bf0540cc4d;name=git_94e812bb_0;destsuffix=vcs_cache/60bc9255cadbea28631b3293cd629cbe0b9a9cffb987712231cdc4f9dc75a2cb" | ||
| 233 | SRC_URI += "git://github.com/containerd/fuse-overlayfs-snapshotter;protocol=https;nobranch=1;rev=8a6b75266791b61947e08b17ed0cfbf62458cc46;name=git_923d9d3e_0;destsuffix=vcs_cache/904456d103fdf69a1715c0ea77bf08dce2fd0956746f1b7176edb3069d52c5e6" | ||
| 234 | SRC_URI += "git://github.com/containerd/cgroups;protocol=https;nobranch=1;shallow=1;rev=bce3c7e5fbf05852294998684293918fcb3f59dd;name=git_85a7d8f6_0;destsuffix=vcs_cache/5915036ca3b1a492afe8acd828fa11ac9556f8742822bb2a5b5c0050c65e4b9b" | ||
| 235 | SRC_URI += "git://github.com/containerd/plugin;protocol=https;nobranch=1;shallow=1;rev=19cedbf730bb9ae1c106c4d4df8492bb3d3fb8fd;name=git_0f1fd608_0;destsuffix=vcs_cache/f786b847c888d27ca5c517b566772c78216ed963d31d5119a32ebad7494855ea" | ||
| 236 | SRC_URI += "git://github.com/containerd/zfs;protocol=https;nobranch=1;rev=ac25940eac8d55a66eb07b5444da0bd98ab03f2b;name=git_62ef0568_0;destsuffix=vcs_cache/760d9b417b3649f7335a5437c1ddc3ce9a7d15632bcac73a7aabc3c145104a12" | ||
| 237 | SRC_URI += "git://github.com/containerd/continuity;protocol=https;nobranch=1;shallow=1;rev=44e2adf7e9cd87330f3ad656e7a006ef91ed8c1e;name=git_b4d76115_0;destsuffix=vcs_cache/ef286b146362aa5da58f9ef4e88323a32e1ea45eda78c6d484875972ce0a81e0" | ||
| 238 | SRC_URI += "git://github.com/containerd/imgcrypt;protocol=https;nobranch=1;rev=ed83e83c1052e779f45a8f09b92dcd617032fb87;name=git_3f4049aa_0;destsuffix=vcs_cache/b07abb487671181608270a83bbdba89c618a98614a7b5b7bf51d458da4777e82" | ||
| 239 | SRC_URI += "git://github.com/containerd/console;protocol=https;nobranch=1;shallow=1;rev=8f6c4e4faef5a326d2cd907097d04c0239ee5e2f;name=git_7dc259a2_0;destsuffix=vcs_cache/4456f224c4d8f02c6b42fad134de97f5c0635b3ac18e8c88a9d3e4768baaf76b" | ||
| 240 | SRC_URI += "git://github.com/containerd/ttrpc;protocol=https;nobranch=1;shallow=1;rev=3b8c8b75577584e412043afb7b561193a4a47d2e;name=git_1deba031_0;destsuffix=vcs_cache/89e0e59ec2637becf69ff869326d460e7b3aa5c251d58a6d42981bc9c12360fd" | ||
| 241 | SRC_URI += "git://github.com/containerd/fifo;protocol=https;nobranch=1;rev=151b205263c29d471e0d55c787d2ce9f5343fd46;name=git_6f3d1077_0;destsuffix=vcs_cache/e4b0152cde11b075ce8a8a9f0db77d54abb72ee1bab1036ab0c157b678aade47" | ||
| 242 | SRC_URI += "git://github.com/containerd/go-cni;protocol=https;nobranch=1;shallow=1;rev=f4736bb1d1b10293d9c484cbf79254a5efa1e020;name=git_cab8b449_0;destsuffix=vcs_cache/55070c8abada9a5bff1ca98847799f569e31b4d2f5e8f75fd9d55e51e55a9447" | ||
| 243 | SRC_URI += "git://github.com/containerd/containerd;protocol=https;nobranch=1;rev=c507a0257ea6462fbd6f5ba4f5c74facb04021f4;name=git_c2fd43eb_0;destsuffix=vcs_cache/8f09d2a9a40b1c32cb7517ac507d7888de95cacb76efdbdfbb4a5624d35ba57e" | ||
| 244 | SRC_URI += "git://github.com/containerd/containerd;protocol=https;nobranch=1;rev=cf36acf6b6dde383952f523e9b0b721b20dec88a;name=git_c2fd43eb_1;destsuffix=vcs_cache/bc8017d9dffb143b7124d71be2017fef2a6352076f6074797e640cb36b518d50" | ||
| 245 | SRC_URI += "git://github.com/containerd/log;protocol=https;nobranch=1;shallow=1;rev=0fc1e28871fdf2786e2cc51bbe4133db6547a199;name=git_b70b7359_0;destsuffix=vcs_cache/697be36d9b8a0eb34f8591d0f69b6d596e1e9341b5944ebf81ddd334b1907bc6" | ||
| 246 | SRC_URI += "git://github.com/containerd/nydus-snapshotter;protocol=https;nobranch=1;shallow=1;rev=aec799e1b5d61050f7df4a1fd79177f89635cffe;name=git_c4766add_0;destsuffix=vcs_cache/74f4a2b58f7a254bda83dc687342b8589fa804a1edfd1d986db99d951541eaf3" | ||
| 247 | SRC_URI += "git://github.com/containerd/btrfs;protocol=https;nobranch=1;rev=f611cf12b33f43269574b2ad82bcb55e4d6f9982;name=git_afc7f4f6_0;destsuffix=vcs_cache/8a2ee3ce7d871ae06962c07984197acdfd6035091884c9db0791378ac0229823" | ||
| 248 | SRC_URI += "git://github.com/codahale/rfc6979;protocol=https;branch=master;rev=6a90f24967ebb1aa57b22f74a13dbb3faad8cf3d;name=git_d13a0aee_0;destsuffix=vcs_cache/fd8285193cc7c3bc341773b0166d258b6baca2f6985aa666e14e22b19401aea7" | ||
| 249 | SRC_URI += "git://github.com/docker/distribution;protocol=https;nobranch=1;rev=2461543d988979529609e8cb6fca9ca190dc48da;name=git_3954c8b6_0;destsuffix=vcs_cache/26a3d4dc632c62414346d52deda2aedc133ba755ea9665e3aba4eba2cfe57bb0" | ||
| 250 | SRC_URI += "git://github.com/docker/distribution;protocol=https;nobranch=1;rev=4772604ae973031ab32dd9805a4bccf61d94909f;name=git_3954c8b6_1;destsuffix=vcs_cache/179a4ea80ae56a5b38e4349dac5aa88a7180045bd04943c05933125b8abc5d93" | ||
| 251 | SRC_URI += "git://github.com/docker/go-metrics;protocol=https;branch=master;rev=399ea8c73916000c64c2c76e8da00ca82f8387ab;name=git_08ad7bc8_0;destsuffix=vcs_cache/e46943e0ce240f96ccb15fabd2b6c91ee2105677005b8cff59822b6c952ea98e" | ||
| 252 | SRC_URI += "git://github.com/docker/go-metrics;protocol=https;nobranch=1;shallow=1;rev=b619b3592b65de4f087d9f16863a7e6ff905973c;name=git_08ad7bc8_1;destsuffix=vcs_cache/96ae8893e24907a70aef922af47d48651611460f2b982f7e1e27dacd5ad82b9f" | ||
| 253 | SRC_URI += "git://github.com/docker/docker-credential-helpers;protocol=https;nobranch=1;shallow=1;rev=6b9df3ebb5da5aa22f722b25506bba1414519c6a;name=git_46e68097_0;destsuffix=vcs_cache/9d19f9106dbe45ca19ac469a52047d35fd2c4f6889c78f5c8b54214c3353b519" | ||
| 254 | SRC_URI += "git://github.com/docker/libtrust;protocol=https;branch=master;rev=aabc10ec26b754e797f9028f4589c5b7bd90dc20;name=git_cce0256d_0;destsuffix=vcs_cache/30b9f1ca3a03878df88db7db5466a284cdc61ad2e0e647ef5d4611b4bc72f1b8" | ||
| 255 | SRC_URI += "git://github.com/docker/buildx;protocol=https;nobranch=1;rev=1360a9e8d25a2c3d03c2776d53ae62e6ff0a843d;name=git_730b03c2_0;destsuffix=vcs_cache/f3b4bcdb14cfbb9adceeede6a2a1d3b7ca4d562c5fdf4986a0821413a5472b4f" | ||
| 256 | SRC_URI += "git://github.com/docker/go-events;protocol=https;branch=main;rev=e31b211e4f1cd09aa76fe4ac244571fab96ae47f;name=git_2703dc86_0;destsuffix=vcs_cache/3e0bfea9682128db4b902dfb300a63020f2a4e0fd9e50a9a43529185ded21203" | ||
| 257 | SRC_URI += "git://github.com/docker/go-connections;protocol=https;nobranch=1;shallow=1;rev=7395e3f8aa162843a74ed6d48e79627d9792ac55;name=git_d4d85c75_0;destsuffix=vcs_cache/90a622b6d50d291d33dc478ac881c41bd809522c6c0c4e6928a6c544843d868f" | ||
| 258 | SRC_URI += "git://github.com/docker/go-connections;protocol=https;nobranch=1;rev=fa09c952e3eadbffaf8afc5b8a1667158ba38ace;name=git_d4d85c75_1;destsuffix=vcs_cache/537a652ffe4ade5b6ad2a464d46ac04ecd52e765db706829f721e228252e1310" | ||
| 259 | SRC_URI += "git://github.com/docker/docker;protocol=https;nobranch=1;rev=bbd0a17ccc67e48d4a69393287b7fcc4f0578683;name=git_248eb0d1_0;destsuffix=vcs_cache/97026e8bc301235a97e3834f4805d557b452d605272a29421c5ee5d9aaf6e52c" | ||
| 260 | SRC_URI += "git://github.com/docker/go-units;protocol=https;nobranch=1;rev=e682442797b36348f8e1f98defdbf32bac0b6c6f;name=git_35e0b052_0;destsuffix=vcs_cache/2f970538f28b36d4a39663fa90033ec5c742ddd7774a86d94cc6c179e63a1c49" | ||
| 261 | SRC_URI += "git://github.com/docker/cli;protocol=https;nobranch=1;rev=068a01ea9470df6494cc92d9e64e240805ae47a7;name=git_cad1045a_0;destsuffix=vcs_cache/397767543164f61dbe60fcb9896cad24b7efb6a0a3a327d84dd0140a9020f330" | ||
| 262 | SRC_URI += "git://github.com/docker/cli-docs-tool;protocol=https;nobranch=1;rev=b6c6689c907d2094d3d59b4b9446849bb6a3686f;name=git_1c37a457_0;destsuffix=vcs_cache/ca2b4e986a36ec73482468578377accca11c21670388897d0a2dad975a32bdc3" | ||
| 263 | SRC_URI += "git://github.com/docker/compose;protocol=https;branch=main;rev=eaf9800948e022573997649656c040a19d4b15c2;name=git_8d4a7825_0;destsuffix=vcs_cache/db2145cc8e57f3f21582af6c070571cbfcfa1c0cab2ba25cbf94f52385355015" | ||
| 264 | SRC_URI += "git://github.com/klauspost/compress;protocol=https;nobranch=1;shallow=1;rev=72cd4a92a8b13e722763e6b6a3467163c2028d3d;name=git_98939663_0;destsuffix=vcs_cache/1a818e5938f06e0c21b23becbe591b89626d41c0bc822cc43ff12a46f44c4700" | ||
| 265 | SRC_URI += "git://github.com/jpillora/backoff;protocol=https;nobranch=1;shallow=1;rev=d80867952dff4e2fbfb4280ded4ff94d67790457;name=git_59c0b9df_0;destsuffix=vcs_cache/f3877637b1b0b11053bd3f6485df13672bc371749f756a13048e72298849b276" | ||
| 266 | SRC_URI += "git://github.com/davecgh/go-spew;protocol=https;nobranch=1;rev=346938d642f2ec3594ed81d874461961cd0faa76;name=git_d9a489aa_0;destsuffix=vcs_cache/5ce38ad71c2d3bc390b87154a89c53fd5ead19aed2bf005419db5c0b28ea9dfd" | ||
| 267 | SRC_URI += "git://github.com/davecgh/go-spew;protocol=https;nobranch=1;rev=8991bc29aa16c548c550c7ff78260e27b9ab7c73;name=git_d9a489aa_1;destsuffix=vcs_cache/4c7d69cfe586f86079773ff48d94f76d327c2914d8dfeffca9e34fd1146e5d5e" | ||
| 268 | SRC_URI += "git://github.com/davecgh/go-spew;protocol=https;branch=master;rev=d8f796af33cc11cb798c1aaeb27a4ebc5099927d;name=git_d9a489aa_2;destsuffix=vcs_cache/0bbb25cc88e50a90d274f6ee02d66c1a618efd4ad460b7046fdd7f680cb60ffc" | ||
| 269 | SRC_URI += "git://github.com/munnerz/goautoneg;protocol=https;branch=master;rev=a7dc8b61c822528f973a5e4e7b272055c6fdb43e;name=git_09d50017_0;destsuffix=vcs_cache/0f68eeb31e17a8fc96eede1943fe26be5835b08f5cc4a9eee4ed1b8eee4887ee" | ||
| 270 | SRC_URI += "git://github.com/intel/goresctrl;protocol=https;nobranch=1;rev=f7cfa04536314eacecaa523f3b87d3978fbe28e3;name=git_dd750dae_0;destsuffix=vcs_cache/5d20d90ec5de5ded41d2af02d43b1894cd4847e927f36f70d656aaed8856fdf5" | ||
| 271 | SRC_URI += "git://github.com/gofrs/flock;protocol=https;nobranch=1;shallow=1;rev=9de625d921bf362f81e0760056fdff11c8542435;name=git_2d2b3139_0;destsuffix=vcs_cache/2eca9ade511bd007a13375faeeafb3f984450113cd6e7f26251dc5922d27f7a1" | ||
| 272 | SRC_URI += "git://github.com/moby/sys;protocol=https;nobranch=1;shallow=1;rev=50e999a770172a519119e1c4fd4b6153b7dac90d;name=git_66165bb7_0;destsuffix=vcs_cache/e67c1b1913863f71a44fb255bb4ceafcd322cbb0790a301c410f76acaf083f75" | ||
| 273 | SRC_URI += "git://github.com/moby/sys;protocol=https;nobranch=1;rev=54475191138bd297c627eb1a59e1e54b953957f1;name=git_66165bb7_1;destsuffix=vcs_cache/8ea1faceda9bb3618c7b96f0749fcc6b4672432eef27c1f25c4bf631513501f2" | ||
| 274 | SRC_URI += "git://github.com/moby/sys;protocol=https;nobranch=1;rev=7af2bbe457efeb8b84a57d35692694a50e3ee9cb;name=git_66165bb7_2;destsuffix=vcs_cache/bafd5119fc031ca52b9e52a119b6c3c57d48dea0d101fe2ad1a175fce54de6c7" | ||
| 275 | SRC_URI += "git://github.com/moby/sys;protocol=https;nobranch=1;rev=ca0444fed0e9557797cd00105eecf9db4c878b57;name=git_66165bb7_3;destsuffix=vcs_cache/4c6d72296668707abb39f73bf8ef79dbb131e20164c7c8897885dfa2b6dd000b" | ||
| 276 | SRC_URI += "git://github.com/moby/sys;protocol=https;nobranch=1;rev=cafbe42351600ca9b363e220722f66d96f6e71f4;name=git_66165bb7_4;destsuffix=vcs_cache/c5c70dcea521c7e4cc66d0ca1ccdc1721b1a865780c1a1b9274ced410fa0553f" | ||
| 277 | SRC_URI += "git://github.com/moby/patternmatcher;protocol=https;nobranch=1;rev=347bb8d8d557f90d1b75cd8bca3c0177f380a979;name=git_319ce9bf_0;destsuffix=vcs_cache/fde57a922ff865dfe02454fffbfcbb1e5f2ca06ac3390f3a9df16466bfda666b" | ||
| 278 | SRC_URI += "git://github.com/moby/term;protocol=https;nobranch=1;rev=6c1b69fecbac2753dcaf18718a7e9f9093c3760d;name=git_1bc89d26_0;destsuffix=vcs_cache/b7e959e4874fee596e5f3eaf06300410fe7cefde4fbece51042d17be137ef04e" | ||
| 279 | SRC_URI += "git://github.com/moby/docker-image-spec;protocol=https;nobranch=1;rev=f1d00ebd2d6d6805170d5543dbca4b850f35f9af;name=git_00e28400_0;destsuffix=vcs_cache/7e0006fc710e13d8f5d4dd052be9861a4fd4562e1330ab6bdf94303f885e80da" | ||
| 280 | SRC_URI += "git://github.com/moby/buildkit;protocol=https;nobranch=1;rev=121ecd5b9083b8eef32183cd404dd13e15b4a3df;name=git_caea0070_0;destsuffix=vcs_cache/d40bbb408c7127675b37910d85e8d47dd9198ffb26d427b8d50c54add6ae0627" | ||
| 281 | SRC_URI += "git://github.com/moby/locker;protocol=https;nobranch=1;rev=281af2d563954745bea9d1487c965f24d30742fe;name=git_a03ea75a_0;destsuffix=vcs_cache/5549df51df50be0334c0cca67abc7ed6c0bd4fceee3f7bb56eb917b56bfe8644" | ||
| 282 | SRC_URI += "git://github.com/moby/spdystream;protocol=https;nobranch=1;shallow=1;rev=258380da5f17ec2c26272bcb91a61d592fcb0105;name=git_30522a60_0;destsuffix=vcs_cache/4b1e1dce7955a489620ea75994f8d113e0c41f711b8826d760073dbf3e8a065f" | ||
| 283 | SRC_URI += "git://github.com/planetscale/vtprotobuf;protocol=https;branch=main;rev=0393e58bdf106fe0347e554d272a8f2c84d12461;name=git_d20372f0_0;destsuffix=vcs_cache/2a8f7a744764b6b7d0f6b17003fd8217cc861be946aee65fccc7d1491634942f" | ||
| 284 | SRC_URI += "git://github.com/miekg/pkcs11;protocol=https;nobranch=1;shallow=1;rev=cb39313ec884f2cd77f4762875fe96aecf68f8e3;name=git_cf5d6134_0;destsuffix=vcs_cache/eb5a56eb790cc3fc7850bf57682d3ac5831360a4496818de755c41ce63d505ba" | ||
| 285 | SRC_URI += "git://github.com/miekg/pkcs11;protocol=https;nobranch=1;shallow=1;rev=f3481918a208bd212aa995a41f92d786eb418a7d;name=git_cf5d6134_1;destsuffix=vcs_cache/cfc32d6973be9c203ec1d8480b59f61c59be67d146de9d920f82d4eb7c4d994a" | ||
| 286 | SRC_URI += "git://github.com/dimchansky/utfbom;protocol=https;nobranch=1;rev=6ae8f945ca96f30defc7e8ab12ec5d10cf86ded4;name=git_343da044_0;destsuffix=vcs_cache/04f39ab86cb6ab9bf2a2278357fae9932b31f6cb8b07bf8e6ca02581cbf46ecf" | ||
| 287 | SRC_URI += "git://github.com/kballard/go-shellquote;protocol=https;branch=master;rev=95032a82bc518f77982ea72343cc1ade730072f0;name=git_e33a00ee_0;destsuffix=vcs_cache/49fe182d1b759955b666e8ad12ff66052cc7e14ba9ccf9e8371ee85848f1f9ac" | ||
| 288 | SRC_URI += "git://github.com/cenkalti/backoff;protocol=https;nobranch=1;shallow=1;rev=720b78985a65c0452fd37bb155c7cac4157a7c45;name=git_67dac28e_0;destsuffix=vcs_cache/c644c1d0f5212c0210f056d6c7d45f3e482a1fca002b7c3e65edf8d3c060566f" | ||
| 289 | SRC_URI += "git://github.com/buger/goterm;protocol=https;nobranch=1;rev=a73545aae7d693f786ce4cc687460efca4845f31;name=git_19a54999_0;destsuffix=vcs_cache/caf1c06b7ea92c81a60195c5df6f46d1e4ceb75cfb096fb918e712dcc226fc04" | ||
| 290 | SRC_URI += "git://github.com/mitchellh/go-ps;protocol=https;nobranch=1;rev=147ff83818ae939913b2e20b91ae3cd6c391771c;name=git_85bf403a_0;destsuffix=vcs_cache/e2954bb45e8e4304338ab2532158d042745f3a239202953369cef281beed32cb" | ||
| 291 | SRC_URI += "git://github.com/mitchellh/mapstructure;protocol=https;branch=main;rev=2caf8efc93669b6c43e0441cdc6aed17546c96f3;name=git_3ac6d6a4_0;destsuffix=vcs_cache/5ad95eaf3fe770e7f704095dccb10123fc34e55570f7e163eb2e3e9a5c0586a6" | ||
| 292 | SRC_URI += "git://github.com/mitchellh/mapstructure;protocol=https;nobranch=1;shallow=1;rev=ab69d8d93410fce4361f4912bb1ff88110a81311;name=git_3ac6d6a4_1;destsuffix=vcs_cache/d9f5489d4515cf23689f7c9a7a71a85fdd52671cf92601ea8e8c59bf3644b6b5" | ||
| 293 | SRC_URI += "git://github.com/mitchellh/hashstructure;protocol=https;nobranch=1;rev=a045b665615f739329536a58c25ca6327abf1ec1;name=git_2d77412f_0;destsuffix=vcs_cache/7c1d661828ecf7a5daa9f90b02814e542e1ed4d474edc002d91d945df708a5be" | ||
| 294 | SRC_URI += "git://github.com/mitchellh/go-wordwrap;protocol=https;branch=master;rev=ad45545899c7b13c020ea92b2072220eefad42b8;name=git_bad0582b_0;destsuffix=vcs_cache/84dd581dbedfed4ad91418958b9953cb3b8c321481b44916212a3c9214911ce7" | ||
| 295 | SRC_URI += "git://github.com/hashicorp/hcl;protocol=https;nobranch=1;shallow=1;rev=56a9aee5207dbaed7f061cd926b96fc159d26ea0;name=git_e2b5d849_0;destsuffix=vcs_cache/6fa59ecdf57a9f38bb28028cc2edf5908ddcf947959456ffc92c2ce12d831971" | ||
| 296 | SRC_URI += "git://github.com/hashicorp/errwrap;protocol=https;nobranch=1;shallow=1;rev=7b00e5db719c64d14dd0caaacbd13e76254d02c0;name=git_28334120_0;destsuffix=vcs_cache/a0949020a0c14672f86d32cbf0d984b8d048a27e6f75aeac79f8ca3f7cc4ecae" | ||
| 297 | SRC_URI += "git://github.com/hashicorp/errwrap;protocol=https;nobranch=1;shallow=1;rev=8a6fb523712970c966eefc6b39ed2c5e74880354;name=git_28334120_1;destsuffix=vcs_cache/65db17b2a8abd8c2bde5a919d17f7abc0e891ae4037aa21f7aa2482f560cf21f" | ||
| 298 | SRC_URI += "git://github.com/hashicorp/go-version;protocol=https;nobranch=1;rev=fcaa53267960208632e9308c93aa89535526a018;name=git_55a07af7_0;destsuffix=vcs_cache/fd3860df5d492a5119c8c51b16a6aab4a06c5aa25b862415b5447aa36f240677" | ||
| 299 | SRC_URI += "git://github.com/hashicorp/go-multierror;protocol=https;nobranch=1;shallow=1;rev=9974e9ec57696378079ecc3accd3d6f29401b3a0;name=git_151ee577_0;destsuffix=vcs_cache/cec0f337a88725c16a86058204a5dd4ae667b8a92bbed995ab204ebcb62177a5" | ||
| 300 | SRC_URI += "git://github.com/hashicorp/go-cty-funcs;protocol=https;branch=main;rev=c51673e0b3ddd34917eb3f8aaf035db6434671c6;name=git_918c4c36_0;destsuffix=vcs_cache/1404e62b188bb9403807f3f5bcef614facdb25c37a249518983a0496b8d68c41" | ||
| 301 | SRC_URI += "git://github.com/hashicorp/go-retryablehttp;protocol=https;nobranch=1;shallow=1;rev=1542b31176d3973a6ecbc06c05a2d0df89b59afb;name=git_69ebb5f3_0;destsuffix=vcs_cache/1c161e79086905c04399aaec101924f22b95228d7f8380bbe1b73faba8fb6988" | ||
| 302 | SRC_URI += "git://github.com/hashicorp/golang-lru;protocol=https;nobranch=1;shallow=1;rev=d8515860cebc7b25ff2d29fada3f10a43611c28b;name=git_aa2934d2_0;destsuffix=vcs_cache/0a17d620bc2f7dd8c00efd79d0b78bb5f5c0bfaa2ec311417e9256a33b35db77" | ||
| 303 | SRC_URI += "git://github.com/hashicorp/go-immutable-radix;protocol=https;nobranch=1;rev=95618379cef103a15b38cc79cce1e8eb1eaf10f1;name=git_5eeabd90_0;destsuffix=vcs_cache/e7330a0d345fdfe0fc28bc95ffa515bf29b09fde15bff6885c08836ae16c3992" | ||
| 304 | SRC_URI += "git://github.com/hashicorp/go-cleanhttp;protocol=https;nobranch=1;shallow=1;rev=6d9e2ac5d828e5f8594b97f88c4bde14a67bb6d2;name=git_34cadc19_0;destsuffix=vcs_cache/da345fc970b7e579c1da9ec42edfbe1bf896f5e3274ce418f134b15952eb2494" | ||
| 305 | SRC_URI += "git://github.com/Azure/go-ansiterm;protocol=https;branch=master;rev=faa5f7b0171c46bb398a91b4a0c906324d3664cf;name=git_e113ad22_0;destsuffix=vcs_cache/d9abe4d330489bbcc2f3473a042a0886c4f556d7a3b9128c484c2fef3396e790" | ||
| 306 | SRC_URI += "git://github.com/Azure/azure-sdk-for-go;protocol=https;nobranch=1;rev=15c65ced02ca0b4875e8463146d7bd4a68a0fbb1;name=git_d31d6145_0;destsuffix=vcs_cache/69ba1366ff498c1f6625ee95464ad8462e9596296890fc801954d6d94c815ead" | ||
| 307 | SRC_URI += "git://github.com/Azure/azure-sdk-for-go;protocol=https;nobranch=1;rev=32f5e82d395b9bdcb1dd7bf1728551c06bd9c335;name=git_d31d6145_1;destsuffix=vcs_cache/245b8f5795c8d96405232e1a2e8c72f59cba7bdc372087fac7104dcb5da15324" | ||
| 308 | SRC_URI += "git://github.com/Azure/azure-sdk-for-go;protocol=https;nobranch=1;rev=62f7a3d0e97610a8303e313f25ab4502766b8886;name=git_d31d6145_2;destsuffix=vcs_cache/ec0071ebcd0aed0d5d8b5075798b7a1655618184bfbc041225117314cd8e7b6f" | ||
| 309 | SRC_URI += "git://github.com/Azure/azure-sdk-for-go;protocol=https;nobranch=1;rev=e15752b96b1cd695369fe56874f9b6e3c49821ab;name=git_d31d6145_3;destsuffix=vcs_cache/52041511e242e9a8316f8115e10be7a67dd2adc3ba13fd312c7d70f6b940c7b3" | ||
| 310 | SRC_URI += "git://github.com/cilium/ebpf;protocol=https;nobranch=1;shallow=1;rev=270c859894bd38cdd0c7783317b16343409e4df8;name=git_1e891de1_0;destsuffix=vcs_cache/97c993719bbaecd5e3098a8f78f8fc31685066f8e93a9b0363fe9924048beb14" | ||
| 311 | SRC_URI += "git://github.com/NYTimes/gziphandler;protocol=https;branch=master;rev=56545f4a5d46df9a6648819d1664c3a03a13ffdb;name=git_749e556e_0;destsuffix=vcs_cache/8a7f0144b147a12bb29a2d86a514ce50f52a04d967d93788d850075bf4e43a36" | ||
| 312 | SRC_URI += "git://github.com/skratchdot/open-golang;protocol=https;branch=master;rev=eef8423979666925a58eb77f9db583e54320d5a4;name=git_2106ca54_0;destsuffix=vcs_cache/2049e06101e5abb574af5068dfb1255087c23cd963db0e1f0c82585b42e02bf4" | ||
| 313 | SRC_URI += "git://github.com/magiconair/properties;protocol=https;nobranch=1;rev=624009598839a9432bd97bb75552389422357723;name=git_fa8300c1_0;destsuffix=vcs_cache/d96b4b0c7ecc137249800d1b95fece0b9fca1b6978650bd2a8be72d541a097fd" | ||
| 314 | SRC_URI += "git://github.com/jonboulle/clockwork;protocol=https;nobranch=1;rev=6d8d032a18422c2e3ef651170a8a55012d1f704c;name=git_c61652e2_0;destsuffix=vcs_cache/8a9b3a40ae13b2679138bcbfbe409f1586f92c23e873f4e219066c6596debc26" | ||
| 315 | SRC_URI += "git://github.com/checkpoint-restore/go-criu;protocol=https;nobranch=1;shallow=1;rev=39135d0112fa0fb12e80ba04ef843eea097add46;name=git_400f7838_0;destsuffix=vcs_cache/cd3a96bfb455f01e0ad41b83fe0a2ba40c017e12b43cf536dd72401c0a9efa9b" | ||
| 316 | SRC_URI += "git://github.com/checkpoint-restore/checkpointctl;protocol=https;nobranch=1;shallow=1;rev=9a448d52c31a1d571b774d3cf812a5e93f2f747b;name=git_3c5c2d9d_0;destsuffix=vcs_cache/2c7723c5a9ee119e95480471084db495771076bc7a1f870bc1cba6832e279438" | ||
| 317 | SRC_URI += "git://github.com/kisielk/errcheck;protocol=https;nobranch=1;shallow=1;rev=ee08a456fc430219ad80ce5af98415bcc027a219;name=git_19b8b0b3_0;destsuffix=vcs_cache/2ae681313b6ac49c6c60836f406eed1f7f4db5b86a3027f0ec720f5984386390" | ||
| 318 | SRC_URI += "git://github.com/kisielk/gotool;protocol=https;nobranch=1;shallow=1;rev=80517062f582ea3340cd4baf70e86d539ae7d84d;name=git_e251e12c_0;destsuffix=vcs_cache/5f448e8a93894c89c55e73478ef6dc8a0a1a6a3fd3fe3a2b5cd5e03e65915fb1" | ||
| 319 | SRC_URI += "git://github.com/Shopify/logrus-bugsnag;protocol=https;branch=master;rev=577dee27f20dd8f1a529f82210094af593be12bd;name=git_7b455409_0;destsuffix=vcs_cache/60f0c216a86b2a3136ecc6c76cf68c4fd064e2bfaf1e61e6d3393fec9102f03d" | ||
| 320 | SRC_URI += "git://github.com/Shopify/logrus-bugsnag;protocol=https;branch=master;rev=6dbc35f2c30d1e37549f9673dd07912452ab28a5;name=git_7b455409_1;destsuffix=vcs_cache/32b9430ae515731f656e10a931bd6ca61d5ea940c15245ea2c8bb98990560cfd" | ||
| 321 | SRC_URI += "git://github.com/imdario/mergo;protocol=https;nobranch=1;shallow=1;rev=14fe2b165b83359196f820886a2b24f2771729e9;name=git_c84ab7ed_0;destsuffix=vcs_cache/290fb19f9a5f9073db90468b4dc0e8fe8311dc6cedba860d5135f4d0e7fd7ecc" | ||
| 322 | SRC_URI += "git://github.com/imdario/mergo;protocol=https;nobranch=1;shallow=1;rev=59ea6a9cd9f9c60cb6b1c58476f76cd3172ccebf;name=git_c84ab7ed_1;destsuffix=vcs_cache/ec93951cf02739e6e999cf0902a7970a4983432145559425fd7600b4d7fd553b" | ||
| 323 | SRC_URI += "git://github.com/gregjones/httpcache;protocol=https;branch=master;rev=9cad4c3443a7200dd6400aef47183728de563a38;name=git_9c1961af_0;destsuffix=vcs_cache/1a426dcf2bd73bb01f3e2a33b6dda0049c74e6ae66ae07236e3326ff6ce2b6fc" | ||
| 324 | SRC_URI += "git://github.com/onsi/gomega;protocol=https;nobranch=1;shallow=1;rev=3143ff4a92ce52253b4b256cc4c1e8f026c260d5;name=git_4f2954a0_0;destsuffix=vcs_cache/28dcd87c5118c456f54d669a43808a7357ca11e54faeb05c921b4d75a1a5f1b4" | ||
| 325 | SRC_URI += "git://github.com/onsi/gomega;protocol=https;nobranch=1;shallow=1;rev=6be6c439588487cd908a3a700795660c2a16dfec;name=git_4f2954a0_1;destsuffix=vcs_cache/728f44b7af3fd5cab91499df1e92a9d2c3e67004ea59ac1e4a549fb2ca6763a8" | ||
| 326 | SRC_URI += "git://github.com/onsi/gomega;protocol=https;nobranch=1;shallow=1;rev=f9a52764bd5a0fd2d201bcca584351d03b72f8da;name=git_4f2954a0_2;destsuffix=vcs_cache/eca01df4f63425b54410888126f5e562e7f2c689d9483249110a2f793909648b" | ||
| 327 | SRC_URI += "git://github.com/onsi/ginkgo;protocol=https;nobranch=1;shallow=1;rev=28fb5d613e96c8f11ca813e1d467117b50662215;name=git_209602b3_0;destsuffix=vcs_cache/8e5a756c057f3a6e0e02b0cd368f60ee45b7e8f9b97731510611270f4a9e1770" | ||
| 328 | SRC_URI += "git://github.com/onsi/ginkgo;protocol=https;nobranch=1;shallow=1;rev=3774a09d95489ccaa16032e0770d08ea77ba6184;name=git_209602b3_1;destsuffix=vcs_cache/084961c940c1064ad8f72342797a7f84ceb5184e0f4f98076f0ac0a75a0a376f" | ||
| 329 | SRC_URI += "git://github.com/onsi/ginkgo;protocol=https;nobranch=1;shallow=1;rev=40598150331533e3cd497f21dcce387dae84b561;name=git_209602b3_2;destsuffix=vcs_cache/1fa773d747594333c67867f9bdc536ee1286d76aa754e875bec3818f99d1318b" | ||
| 330 | SRC_URI += "git://github.com/anchore/go-struct-converter;protocol=https;branch=main;rev=c68fdcfa20922cc80b266f13a7986e632bafacca;name=git_5862d91c_0;destsuffix=vcs_cache/4be54006369c9c3bb6a42a67721ee3e3e0f1aab0f71192fdc85f8dc980af1bd6" | ||
| 331 | SRC_URI += "git://github.com/apparentlymart/go-textseg;protocol=https;nobranch=1;rev=72b78f42484ddc3f58858f794da1771fb9559ad0;name=git_81a61598_0;destsuffix=vcs_cache/2ad90a9579325698fb8eedc37a5bb5c32c0df927e2e2029b3cfa6369b0aad683" | ||
| 332 | SRC_URI += "git://github.com/apparentlymart/go-cidr;protocol=https;nobranch=1;rev=c0fb5fbe0acb592411e2db59add389a43260ad44;name=git_75732a95_0;destsuffix=vcs_cache/78882067332ee02e3c72ccc9d03c697f04b24132ddd74da1593a953f0b833469" | ||
| 333 | SRC_URI += "git://github.com/Microsoft/go-winio;protocol=https;nobranch=1;shallow=1;rev=3c9576c9346a1892dee136329e7e15309e82fb4f;name=git_6d816430_0;destsuffix=vcs_cache/963154633520174004b7a508de4bfa23c0374f9312f6db845c29aa3cb751d708" | ||
| 334 | SRC_URI += "git://github.com/Microsoft/hcsshim;protocol=https;nobranch=1;shallow=1;rev=7392335b540ccd5edc26ca1e0dce0da393c17eff;name=git_d1a645ee_0;destsuffix=vcs_cache/05dc4d58e83373d88f474ae8e70744afab6cb5a48243bd4618d3a0e36276f49a" | ||
| 335 | SRC_URI += "git://github.com/russross/blackfriday;protocol=https;nobranch=1;shallow=1;rev=4c9bf9512682b995722660a4196c0013228e2049;name=git_fb978822_0;destsuffix=vcs_cache/6dd1604eceba1790dbf7f827f1e22a5866a5348a2ab616daed7363a6e16e081d" | ||
| 336 | SRC_URI += "git://github.com/russross/blackfriday;protocol=https;nobranch=1;shallow=1;rev=e96880f42b9343aea6cbfd99693adae0e5fe2b2a;name=git_fb978822_1;destsuffix=vcs_cache/45882c51d4da17f32775abbdabd353753e5115f6ec6282c3bf028fe3471fc743" | ||
| 337 | SRC_URI += "git://github.com/josharian/intern;protocol=https;nobranch=1;shallow=1;rev=8e6ff32b3e7c0b018c43953085fe2ac330fe9acd;name=git_eb6bc1bf_0;destsuffix=vcs_cache/273d42676826fc8f106c11c2800d01690a09463878fa115700b2e26df24a2440" | ||
| 338 | SRC_URI += "git://github.com/kr/pretty;protocol=https;nobranch=1;rev=3cd153a126da607b78d1762779b1e1054f9889fc;name=git_cd673b00_0;destsuffix=vcs_cache/487dccea2d19da29e6f873ffd57f7f4d33720781a3f60bb9f852176acb476435" | ||
| 339 | SRC_URI += "git://github.com/kr/pretty;protocol=https;nobranch=1;rev=73f6ac0b30a98e433b289500d779f50c1a6f0712;name=git_cd673b00_1;destsuffix=vcs_cache/0f21d99b403d8e61d556bfa775400b5cd3eeb5d2fb19e978a43ff5e77dae75ee" | ||
| 340 | SRC_URI += "git://github.com/kr/pretty;protocol=https;nobranch=1;rev=ead452280cd055b2ae8a7f0db5eb37a878d902f7;name=git_cd673b00_2;destsuffix=vcs_cache/910eaae1a45b64a385e9b5cf589986cb7c9441f3e51dafccad658a47f2b9d937" | ||
| 341 | SRC_URI += "git://github.com/kr/logfmt;protocol=https;branch=main;rev=b84e30acd515aadc4b783ad4ff83aff3299bdfe0;name=git_2782f244_0;destsuffix=vcs_cache/e035982996fb3352cf0880f1bb882f434fcb4adc3e775981b88072f2a379ec80" | ||
| 342 | SRC_URI += "git://github.com/kr/text;protocol=https;nobranch=1;rev=702c74938df48b97370179f33ce2107bd7ff3b3e;name=git_2770e00e_0;destsuffix=vcs_cache/62674ecb33f72b9ab66dd856fe2e651dbf7344dea40ba5132203c7b4b32cfd61" | ||
| 343 | SRC_URI += "git://github.com/kr/text;protocol=https;nobranch=1;rev=e2ffdb16a802fe2bb95e2e35ff34f0e53aeef34f;name=git_2770e00e_1;destsuffix=vcs_cache/d47a4a089998b1398264c79fffcb25588459baa28396ff9e275fff9f4995519a" | ||
| 344 | SRC_URI += "git://github.com/kr/pty;protocol=https;nobranch=1;shallow=1;rev=282ce0e5322c82529687d609ee670fac7c7d917c;name=git_00cb36cf_0;destsuffix=vcs_cache/1bac58bd1947d8ae4f18469faf2550b830a1ff3614f2644b00e44b1dc16e13ec" | ||
| 345 | SRC_URI += "git://github.com/xhit/go-str2duration;protocol=https;nobranch=1;shallow=1;rev=017325bfda0895fe02177e4ebb07962e58735bbf;name=git_c7386ea5_0;destsuffix=vcs_cache/395a3ddd7e351b7b882dc20af4936a00bd11a84147f83ac7a7c25f8093a51cb3" | ||
| 346 | SRC_URI += "git://github.com/containers/ocicrypt;protocol=https;nobranch=1;rev=e26515dd4d77b4d8adbbccb0afb1208bcde8843f;name=git_1f55eed4_0;destsuffix=vcs_cache/f270df24d55b7b03c3e1339dbc127d2143f8e542d2f64535619b351cae148e99" | ||
| 347 | SRC_URI += "git://github.com/juju/loggo;protocol=https;branch=master;rev=6e530bcce5d8e1b51b8e5ee7f08a455cd0a8c2e5;name=git_b83624e7_0;destsuffix=vcs_cache/eaf37a5284a67e209a1c088360157366cb7f05d143b944db7660e83c541adf4c" | ||
| 348 | SRC_URI += "git://github.com/aws/smithy-go;protocol=https;nobranch=1;shallow=1;rev=07bbd001753f9633a614f6c0949d3d73142433d0;name=git_0adf6e3e_0;destsuffix=vcs_cache/c1f9fc4ebee11068a7c704ab9d4d1dbf1f08118e5d144a287927a03613bf5c94" | ||
| 349 | SRC_URI += "git://github.com/aws/aws-sdk-go-v2;protocol=https;nobranch=1;rev=0599931efcf551dc63f84ec669d7fb5cfe14f64c;name=git_0a897d51_0;destsuffix=vcs_cache/922a4404b83a60bff9878846e9559afd00a4e40117c850bf4090f652793ad5fe" | ||
| 350 | SRC_URI += "git://github.com/aws/aws-sdk-go-v2;protocol=https;nobranch=1;rev=4509a600408280c8dcdbc6825ba750cf1628423d;name=git_0a897d51_1;destsuffix=vcs_cache/955a184cf2a0f33544045aa04663746a0ac0b9af6f2b103a53c7e0971c83f741" | ||
| 351 | SRC_URI += "git://github.com/aws/aws-sdk-go-v2;protocol=https;nobranch=1;rev=4fd9126607b61a0fe22af3a6a31b4e4792a66d83;name=git_0a897d51_2;destsuffix=vcs_cache/1019db3148ced92df014f3223b25aa98b2ba2efdbeabf15f6118d4ee009ddf00" | ||
| 352 | SRC_URI += "git://github.com/aws/aws-sdk-go-v2;protocol=https;nobranch=1;rev=b8a0918056d0ae923f811f525c17066bbb45f050;name=git_0a897d51_3;destsuffix=vcs_cache/3eb1a185525c0b37eabb3bd79e0df48bca3470a8e8c1592d9ae44b14c981245b" | ||
| 353 | SRC_URI += "git://github.com/rogpeppe/fastuuid;protocol=https;nobranch=1;shallow=1;rev=10c3923834d38e951ae8f627bfec2dc632c5b6cb;name=git_8a779c11_0;destsuffix=vcs_cache/20ca2e2cf2990cc136cad7958992d06abd356dc16a58362afd2bd51be48ae0ac" | ||
| 354 | SRC_URI += "git://github.com/rogpeppe/go-internal;protocol=https;nobranch=1;rev=e67a4aa07a58fd7f4cc884153739cb77b34f0edb;name=git_2748cdc3_0;destsuffix=vcs_cache/6a8cf885e1574a3d34afe5d7b0a7b4272403e5d756cae287c06d90a7e9eb2d09" | ||
| 355 | SRC_URI += "git://github.com/zeebo/errs;protocol=https;nobranch=1;shallow=1;rev=06a113fed680d3c6d79cc6ec16916b5c227ec2b6;name=git_1cced855_0;destsuffix=vcs_cache/ab1d23bd1ffcc30e5c5298fa86862646b17d8fcee82bc359c85bbe4ff14f3d35" | ||
| 356 | SRC_URI += "git://github.com/cncf/xds;protocol=https;branch=main;rev=b4127c9b8d78b77423fd25169f05b7476b6ea932;name=git_02e4abb9_0;destsuffix=vcs_cache/59411b899b4de9b9df58397f83b829e20e5646fece957765821dd0b69c8f9611" | ||
| 357 | SRC_URI += "git://github.com/niemeyer/pretty;protocol=https;branch=master;rev=a10e7caefd8e0d600cea437f5c3613aeb1553d56;name=git_2ab93bd0_0;destsuffix=vcs_cache/7b69594221f05faea56a0d177d0ca9efaac2b2e4ba4f7539c68b87cfe214c6ef" | ||
| 358 | SRC_URI += "git://github.com/AdamKorcz/go-118-fuzz-build;protocol=https;branch=main;rev=2b5cbb29f3e2e08ef2032ac4dc88a40a3a1e9e5f;name=git_c772bd47_0;destsuffix=vcs_cache/7b745e973a8111f30e1e95d1a88ce98b403177bbe2a1b34d1eb16d90d5352448" | ||
| 359 | SRC_URI += "git://github.com/vbatts/tar-split;protocol=https;nobranch=1;rev=1f44cc4dc32346347cefbfe34c40166075385157;name=git_b8e88960_0;destsuffix=vcs_cache/c62fb2ec8c4c547dd85124481813fc68c8e55cb36aa228f3c9b1a6d7d2e583d4" | ||
| 360 | SRC_URI += "git://github.com/stretchr/testify;protocol=https;nobranch=1;shallow=1;rev=083ff1c0449867d0d8d456483ee5fab8e0c0e1e6;name=git_aa93f7ee_0;destsuffix=vcs_cache/719be8c83742fcd5ea6c60cce03388f5367bceeb8522379d83d0110c884426a5" | ||
| 361 | SRC_URI += "git://github.com/stretchr/testify;protocol=https;nobranch=1;shallow=1;rev=181cea6eab8b2de7071383eca4be32a424db38dd;name=git_aa93f7ee_1;destsuffix=vcs_cache/39798af0c50431f2d4ce305d1aea9c6d13ad19d1ab6af227d59ebb3580e7a7f0" | ||
| 362 | SRC_URI += "git://github.com/stretchr/testify;protocol=https;nobranch=1;shallow=1;rev=221dbe5ed46703ee255b1da0dec05086f5035f62;name=git_aa93f7ee_2;destsuffix=vcs_cache/9e52b2f6204cf4daab20f41d30029448e95ae1a472c112e86dbdd68a16e14a2e" | ||
| 363 | SRC_URI += "git://github.com/stretchr/testify;protocol=https;nobranch=1;shallow=1;rev=3ebf1ddaeb260c4b1ae502a01c7844fa8c1fa0e9;name=git_aa93f7ee_3;destsuffix=vcs_cache/725790d9265526f327bc846ba6025be038cd5cdf6367be0f622409ad58ac9aa0" | ||
| 364 | SRC_URI += "git://github.com/stretchr/testify;protocol=https;nobranch=1;shallow=1;rev=89cbdd9e7b39eb58896d316a7495597d3aba4371;name=git_aa93f7ee_4;destsuffix=vcs_cache/9f66a27582a9e6eca9bf419e24508c10315317c311c9f2dd15c7944badd99385" | ||
| 365 | SRC_URI += "git://github.com/stretchr/testify;protocol=https;nobranch=1;shallow=1;rev=acba37e5db06f0093b465a7d47822bf13644b66c;name=git_aa93f7ee_5;destsuffix=vcs_cache/f87883f9ef1ad6bd6ecb844fe9108ae126c4dfab49080e5fb37bd27ca64417be" | ||
| 366 | SRC_URI += "git://github.com/stretchr/testify;protocol=https;nobranch=1;shallow=1;rev=b747d7c5f853d017ddbc5e623d026d7fc2770a58;name=git_aa93f7ee_6;destsuffix=vcs_cache/d45ab2961914a9a432c9fbbee6a5e2e51a7c04a9c7b64b567c83074a7152bb5f" | ||
| 367 | SRC_URI += "git://github.com/stretchr/testify;protocol=https;nobranch=1;rev=f35b8ab0b5a2cef36673838d662e249dd9c94686;name=git_aa93f7ee_7;destsuffix=vcs_cache/2bb8c4aae39dd3460bd5d8094b70444e65cec7f2390b1c2a41ffb7d431d41317" | ||
| 368 | SRC_URI += "git://github.com/stretchr/testify;protocol=https;nobranch=1;shallow=1;rev=f654a9112bbeac49ca2cd45bfbe11533c4666cf8;name=git_aa93f7ee_8;destsuffix=vcs_cache/782e156612c5b8f52bb9daab64be055460c9e50ce18305034fc5c8954a4e6b4a" | ||
| 369 | SRC_URI += "git://github.com/stretchr/testify;protocol=https;nobranch=1;shallow=1;rev=ffdc059bfe9ce6a4e144ba849dbedead332c6053;name=git_aa93f7ee_9;destsuffix=vcs_cache/15f4be955793ecb9ef81031cf64191211271265868a72e4bf25c409e978a8ce8" | ||
| 370 | SRC_URI += "git://github.com/stretchr/objx;protocol=https;nobranch=1;shallow=1;rev=307d0db21292676ac9d469826525c3630f47f63a;name=git_7987da5d_0;destsuffix=vcs_cache/fe4a57d26379977ebf461da8c71a20095b9f973a91d55076b67fa0de48206a1e" | ||
| 371 | SRC_URI += "git://github.com/stretchr/objx;protocol=https;nobranch=1;shallow=1;rev=477a77ecc69700c7cdeb1fa9e129548e1c1c393c;name=git_7987da5d_1;destsuffix=vcs_cache/324a79f9170fef44f826e43999370c6ec3bc3be6044c9a4c2e3eb97cdf5ac743" | ||
| 372 | SRC_URI += "git://github.com/stretchr/objx;protocol=https;nobranch=1;shallow=1;rev=50a2c064be99303c5dddf725da60e30fbc4f6ede;name=git_7987da5d_2;destsuffix=vcs_cache/956998068f3cc530e52afae6bcb80d92158cdaee2b707bdfdaf132ff05de3b4f" | ||
| 373 | SRC_URI += "git://github.com/stretchr/objx;protocol=https;nobranch=1;shallow=1;rev=5dbb4e6c708f7eb56fc184f7c5dd5e482b555f69;name=git_7987da5d_3;destsuffix=vcs_cache/4ca532f3c50e5c7c19e3dc9316d05026ba007fe253a359de8b2a8492d16f1faa" | ||
| 374 | SRC_URI += "git://github.com/stretchr/objx;protocol=https;nobranch=1;shallow=1;rev=ea4fe68685ee0d3cee7032121851b57e7494e8ea;name=git_7987da5d_4;destsuffix=vcs_cache/982a1df420b1f34eee71122e02865aa89e1ea251dc09362265917bd0e0ca3995" | ||
| 375 | SRC_URI += "git://github.com/stretchr/objx;protocol=https;nobranch=1;shallow=1;rev=facf9a85c22f48d2f52f2380e4efce1768749a89;name=git_7987da5d_5;destsuffix=vcs_cache/39828321881a0709a36a2d1edde8fc9928ddd471ebd0bbdf7012076e7214bb02" | ||
| 376 | SRC_URI += "git://github.com/mgutz/ansi;protocol=https;branch=master;rev=9520e82c474b0a04dd04f8a40959027271bab992;name=git_ab1ea218_0;destsuffix=vcs_cache/f38805371ceca34945d620f33580bc80b8d8946d490670358956c3579639e7ad" | ||
| 377 | SRC_URI += "git://github.com/inconshreveable/mousetrap;protocol=https;nobranch=1;shallow=1;rev=4e8053ee7ef85a6bd26368364a6d27f1641c1d21;name=git_b31cc6ad_0;destsuffix=vcs_cache/a9f0ac4cf05240ceb9790811cbd8ab3cbdcd404501a9ca5a402a28033e7235d8" | ||
| 378 | SRC_URI += "git://github.com/inconshreveable/mousetrap;protocol=https;nobranch=1;shallow=1;rev=76626ae9c91c4f2a10f34cad8ce83ea42c93bb75;name=git_b31cc6ad_1;destsuffix=vcs_cache/bdd1bbf309f6078c2e930609779f6207bad79817ed60bcb7a66df8a5735580f3" | ||
| 379 | SRC_URI += "git://github.com/cpuguy83/go-md2man;protocol=https;nobranch=1;shallow=1;rev=441631534462b74c098953dbd8d5f6210994b0bf;name=git_af686cb3_0;destsuffix=vcs_cache/0b9036af46cc50aa9433a461266e6ef3b3645807c3d1fa49cc53eb201e011781" | ||
| 380 | SRC_URI += "git://github.com/secure-systems-lab/go-securesystemslib;protocol=https;nobranch=1;rev=abcd7c95c952df38eb237fab3764ef1b8d2b15c9;name=git_09ca63ed_0;destsuffix=vcs_cache/5083dc847d3360adddd82d9406c0a48660073abdf4b4466695690b2bb8758be2" | ||
| 381 | SRC_URI += "git://github.com/hpcloud/tail;protocol=https;nobranch=1;shallow=1;rev=a30252cb686a21eb2d0b98132633053ec2f7f1e5;name=git_eb7f53a1_0;destsuffix=vcs_cache/9dfd08c5a4f07a465c8fe6fd4e5e96ac82ccaeba87143831c1a6290e944a3c84" | ||
| 382 | SRC_URI += "git://github.com/peterbourgon/diskv;protocol=https;nobranch=1;shallow=1;rev=5f041e8faa004a95c88a202771f4cc3e991971e6;name=git_de2c9c21_0;destsuffix=vcs_cache/8625edde317f1f22cc2818a98d9abcbe70bd7594027c378d1af3b3b0354ac6fe" | ||
| 383 | SRC_URI += "git://github.com/cespare/xxhash;protocol=https;nobranch=1;rev=998dce232f17418a7a5721ecf87ca714025a3243;name=git_9d94b3ef_0;destsuffix=vcs_cache/4cf9134295bfe252b2146507759140e7050e00021c322cfd0d38a231ef3c0b20" | ||
| 384 | SRC_URI += "git://github.com/santhosh-tekuri/jsonschema;protocol=https;nobranch=1;shallow=1;rev=16bce71af51f6a4a775f11e649a347a8803940d3;name=git_3ace93c7_0;destsuffix=vcs_cache/9964fa94eb99b405ebcfa3af19e0e16d07aef590c7af497cdfc6743aa4544776" | ||
| 385 | SRC_URI += "git://github.com/mistifyio/go-zfs;protocol=https;nobranch=1;rev=f6d5c373cf63ae2477370aa9bda9fa49804c2d72;name=git_9ca91730_0;destsuffix=vcs_cache/14a067948c9001a8443e88278679f597430282136bcd53894095ccfed51182ca" | ||
| 386 | SRC_URI += "git://github.com/uber/mock;protocol=https;nobranch=1;rev=a9c44d91ce00ef09603d3822452a4f9c8fefd278;name=git_d59a22ac_0;destsuffix=vcs_cache/84690e1069b4ad70e2d5fec3d8f934623d7d299829df8ba8c5fcaeec38806c67" | ||
| 387 | SRC_URI += "git://github.com/uber-go/goleak;protocol=https;nobranch=1;shallow=1;rev=31095c657c34bba405a8d480db27989aa5f60b9c;name=git_aa00c2c2_0;destsuffix=vcs_cache/358840d6c8d4d8a268b95a505fd6f93da14af34041c0824fe51920b4cd523ae2" | ||
| 388 | SRC_URI += "git://github.com/kubernetes-sigs/structured-merge-diff;protocol=https;nobranch=1;shallow=1;rev=cf09e71f4508bfc416135048e392a8a4990bf4e3;name=git_68ce0dfe_0;destsuffix=vcs_cache/4a63ad967da7904ce5fc3bb9f38fa10e528be9f375ff26c2f8dfbf8691298928" | ||
| 389 | SRC_URI += "git://github.com/kubernetes-sigs/json;protocol=https;branch=main;rev=bc3834ca7abd3a90f03ef00a27ad80cb892f9c21;name=git_5671cdf3_0;destsuffix=vcs_cache/75caa32e3677fcec80221cbc877ff77fe39daae57f9bb7addb78b26f595031fe" | ||
| 390 | SRC_URI += "git://github.com/kubernetes-sigs/yaml;protocol=https;nobranch=1;shallow=1;rev=c3772b51db126345efe2dfe4ff8dac83b8141684;name=git_a731a2aa_0;destsuffix=vcs_cache/1a5189a2f11994a0ed72dcd69d5046be49f0ac8890830fc52ddb333e63e84cd5" | ||
| 391 | SRC_URI += "git://git.kernel.org/pub/scm/libs/libcap/libcap.git;protocol=https;nobranch=1;rev=6ef6a9d1e415c0b75e5acbcbcbfbda86d4ba6b91;name=git_101689eb_0;destsuffix=vcs_cache/260c81b23c2692359fafdd3e143836fde2f8faa8ed59eadf56141d3d2c898d98" | ||
| 392 | SRC_URI += "git://github.com/mozilla-services/pkcs7;protocol=https;nobranch=1;rev=690b05eb2deea0456847d4790fae75c023a87b01;name=git_39152d8d_0;destsuffix=vcs_cache/1222396cde93c85d8db5f16a7e20ad86a4b44eb93169f41bad5eb019aa182aac" | ||
| 393 | SRC_URI += "git://github.com/google/cel-spec;protocol=https;nobranch=1;shallow=1;rev=afa18f9bd5a83f5960ca06c1f9faea406ab34ccc;name=git_9b911644_0;destsuffix=vcs_cache/cbea25bc9fe77d358c0c7105ec4d3387a645e2879918aef6945299fd172a69c8" | ||
| 394 | SRC_URI += "git://github.com/census-instrumentation/opencensus-go;protocol=https;nobranch=1;shallow=1;rev=b1a01ee95db0e690d91d7193d037447816fae4c5;name=git_aae3ac7b_0;destsuffix=vcs_cache/8607148e6fbec2ab3d0020ea3ffb8bdce7bc15dae97ebec60385afa6ddb97c29" | ||
| 395 | SRC_URI += "git://go.googlesource.com/sys;protocol=https;nobranch=1;rev=33540a1f603772f9d4b761f416f5c10dade23e96;name=git_da0444fc_0;destsuffix=vcs_cache/74df1e05ff5bf1317fe42883ce7a496c0ad3800044d955163fd3f3acca0a0166" | ||
| 396 | SRC_URI += "git://go.googlesource.com/sys;protocol=https;nobranch=1;rev=33da011f77ade50ff5b6a6fb4a9a1e6d6b285809;name=git_da0444fc_1;destsuffix=vcs_cache/144d2f77c6aa06af51d5820df4e7506c5ecad01c86e770e0027b682ff0d3f9a9" | ||
| 397 | SRC_URI += "git://go.googlesource.com/sys;protocol=https;nobranch=1;rev=43e1dd70ce54ee5b1711930029ae5b4926f78f72;name=git_da0444fc_2;destsuffix=vcs_cache/61395547cb668a679b4d7508a904d02fd50ffe1630e5ffd6f4ef293a97c2d3ba" | ||
| 398 | SRC_URI += "git://go.googlesource.com/sys;protocol=https;nobranch=1;rev=59db8d763f22395595c26ee1cae0886b57141b3a;name=git_da0444fc_3;destsuffix=vcs_cache/34a6c6ff0efd234ebc0cc2a5cfdad07405fca7403da460f8d25bfb69091bc0c5" | ||
| 399 | SRC_URI += "git://go.googlesource.com/sys;protocol=https;nobranch=1;rev=5ac8a444bdc56cee774f8f2b3382156bd27c63c3;name=git_da0444fc_4;destsuffix=vcs_cache/fefde8e557c698aecc8d48f3c3d82b7fea1eb55451adbc71dbed3a8871ed8e13" | ||
| 400 | SRC_URI += "git://go.googlesource.com/sys;protocol=https;nobranch=1;rev=665e8c7367d1ecf644cea2d163019ef59c13d554;name=git_da0444fc_5;destsuffix=vcs_cache/7389e79775019a8b50e34efbdfd1a6f9ee910ef3822e04963ba444b3d04db399" | ||
| 401 | SRC_URI += "git://go.googlesource.com/sys;protocol=https;nobranch=1;shallow=1;rev=863b3c4ac4975ff758815fa8d01acb6771f37177;name=git_da0444fc_6;destsuffix=vcs_cache/cef0b94e63cc5f5b9e0a30e26b3a4b3cbfcf2356d9ce5285e78900231b8efdd8" | ||
| 402 | SRC_URI += "git://go.googlesource.com/sys;protocol=https;nobranch=1;rev=8c9f86f7a55f5af45a9080f6ed3ac915382d369c;name=git_da0444fc_7;destsuffix=vcs_cache/2b23297aec08f23623501029a20a4eee604e87ce090001ef6ad0a5930d799dd5" | ||
| 403 | SRC_URI += "git://go.googlesource.com/sys;protocol=https;nobranch=1;shallow=1;rev=95e765b1cc43ac521bd4fd501e00774e34401449;name=git_da0444fc_8;destsuffix=vcs_cache/b1e9a27b98fa2dd77074f2947aa9586de17609eb0bdd77672fccab342a0f1a77" | ||
| 404 | SRC_URI += "git://go.googlesource.com/sys;protocol=https;nobranch=1;rev=97732733099d6a942a73b889770774366de963ed;name=git_da0444fc_9;destsuffix=vcs_cache/aa620878a9f9f2576616d28b01af853869a5a014c70f6b2966e79beae63baeae" | ||
| 405 | SRC_URI += "git://go.googlesource.com/sys;protocol=https;nobranch=1;rev=a9d3bda3a223baa6bba6ef412cb273f0fd163c05;name=git_da0444fc_10;destsuffix=vcs_cache/b39bbf1e5c63baf8bb27abab5aa581c65e0d2a22893ed2ccbcc8fa2f7dcb1f04" | ||
| 406 | SRC_URI += "git://go.googlesource.com/sys;protocol=https;nobranch=1;rev=bc2c85ada10aa9b6aa9607e9ac9ad0761b95cf1d;name=git_da0444fc_11;destsuffix=vcs_cache/f1ca944a9f749f11954489cf91646b40418e0abb15fdadc5040f1dbba7b6ee33" | ||
| 407 | SRC_URI += "git://go.googlesource.com/sys;protocol=https;nobranch=1;rev=bd437916bb0eb726b873ee8e9b2dcf212d32e2fd;name=git_da0444fc_12;destsuffix=vcs_cache/253eeaed31139dc6c6092c9677b29b309c54686acef6519ba8e7423b19d0c65e" | ||
| 408 | SRC_URI += "git://go.googlesource.com/sys;protocol=https;nobranch=1;rev=c0bba94af5f85fbad9f6dc2e04ed5b8fac9696cf;name=git_da0444fc_13;destsuffix=vcs_cache/e4718f232872f03637fc197e3ccf66bc067874db09f67e7567cae86e8cee6732" | ||
| 409 | SRC_URI += "git://go.googlesource.com/sys;protocol=https;nobranch=1;rev=cbf593c0f2f39034e9104bbf77e2ec7c48c98fc5;name=git_da0444fc_14;destsuffix=vcs_cache/4caa6bf3877ea4a9088acc64f20cf170854590c47a2251c747b075d57989606f" | ||
| 410 | SRC_URI += "git://go.googlesource.com/sys;protocol=https;nobranch=1;rev=d0b11bdaac8adb652bff00e49bcacf992835621a;name=git_da0444fc_15;destsuffix=vcs_cache/f12e98c7124bdf27aa44290b851a1ac08039087a76b23733d63312bc784b1556" | ||
| 411 | SRC_URI += "git://go.googlesource.com/sys;protocol=https;nobranch=1;rev=d0be0721c37eeb5299f245a996a483160fc36940;name=git_da0444fc_16;destsuffix=vcs_cache/e23d421c76c78ddc7b91228f72ce5f09a2820d7648b887aa27f4e1b7ffe9f8a4" | ||
| 412 | SRC_URI += "git://go.googlesource.com/sys;protocol=https;nobranch=1;rev=ebe1bf3edb3325c393447059974de898d5133eb8;name=git_da0444fc_17;destsuffix=vcs_cache/d3bdb2e23f146b5636bca4252db35273bff745f37dece252f87edb601338f1fa" | ||
| 413 | SRC_URI += "git://go.googlesource.com/sys;protocol=https;nobranch=1;rev=f84b799fce68db3cb46a8f6f819c1e56377181df;name=git_da0444fc_18;destsuffix=vcs_cache/5e73009c1afca32127ea1cb27ff11e49ac3eab70df61f2738a4e4d8f95e48511" | ||
| 414 | SRC_URI += "git://go.googlesource.com/sys;protocol=https;branch=master;rev=fbc7d0a398ab184f5d1050e8035f3b19a3b9003f;name=git_da0444fc_19;destsuffix=vcs_cache/938106f0f34e86c11ae1decb53e24d7293c5a446a646dc74c77598fa32066959" | ||
| 415 | SRC_URI += "git://go.googlesource.com/sys;protocol=https;nobranch=1;rev=fdedc70b468f679c263a3ccaefc1faeed3239939;name=git_da0444fc_20;destsuffix=vcs_cache/782e11bb6bc760c1f6beebcc00039d583f0f5dce996fff1adc7a3eac70c2c65b" | ||
| 416 | SRC_URI += "git://go.googlesource.com/mod;protocol=https;nobranch=1;shallow=1;rev=859b3ef565e237f9f1a0fb6b55385c497545680d;name=git_13df7481_0;destsuffix=vcs_cache/c7adf8bcca55c1652cddd18c7e949788e387f878482d2553dd5f0a8b63dae8ba" | ||
| 417 | SRC_URI += "git://go.googlesource.com/mod;protocol=https;nobranch=1;rev=86c51ed26bb44749b7d60a57bab0e7524656fe8a;name=git_13df7481_1;destsuffix=vcs_cache/8d01fb415e3ecdf7c1c57243ebaa9b07a2cecd87ea1574f747bbc2ab686be373" | ||
| 418 | SRC_URI += "git://go.googlesource.com/mod;protocol=https;nobranch=1;shallow=1;rev=dec0365065b75edd0e98b0306f6f9b0051710ed2;name=git_13df7481_2;destsuffix=vcs_cache/5b9ae50077b1fa1d7a79f7e69a15458269de8ead3c36f56e23d2121771ae40cc" | ||
| 419 | SRC_URI += "git://go.googlesource.com/mod;protocol=https;nobranch=1;shallow=1;rev=ed3ec21bb8e252814c380df79a80f366440ddb2d;name=git_13df7481_3;destsuffix=vcs_cache/d8ce3a26ef11a4e81bfc12391c4d0bf865766bcb2812acb31931c12ee0d326f8" | ||
| 420 | SRC_URI += "git://go.googlesource.com/oauth2;protocol=https;nobranch=1;shallow=1;rev=22134a41033e44c2cd074106770ab5b7ca910d15;name=git_d7a72cb8_0;destsuffix=vcs_cache/be89d63080feffbcbe6644bcea46d6fc18206e67876ec876ed0f9049c6538349" | ||
| 421 | SRC_URI += "git://go.googlesource.com/term;protocol=https;nobranch=1;rev=03fcf44c2211dcd5eb77510b5f7c1fb02d6ded50;name=git_2e975dd2_0;destsuffix=vcs_cache/39b5e1daf17afc894da71452dbc3a21bfd60c2a69143fd621e2f4c38e90360ea" | ||
| 422 | SRC_URI += "git://go.googlesource.com/term;protocol=https;nobranch=1;shallow=1;rev=442846aa8d80ebae61e0c2c58e041b92b9b33dc4;name=git_2e975dd2_1;destsuffix=vcs_cache/6e80986253586c744eeb9301c1f4d73cf3fda43e353aa2aeca103d7589f19176" | ||
| 423 | SRC_URI += "git://go.googlesource.com/term;protocol=https;nobranch=1;rev=7de9c90e9dd184706b838f536a1cbf40a296ddb7;name=git_2e975dd2_2;destsuffix=vcs_cache/ead0d27eba7bab1501c9338f4e8f06fcaeada49e20ae7ea11b3242a3e7e99835" | ||
| 424 | SRC_URI += "git://go.googlesource.com/term;protocol=https;nobranch=1;rev=f5c789dd3221ff39d752ac54467d762de7cfbec6;name=git_2e975dd2_3;destsuffix=vcs_cache/c88580cdc620bf60d25b76e2063471e63eb3d1d7e2637b2d2fee2fa29c5eef30" | ||
| 425 | SRC_URI += "git://go.googlesource.com/sync;protocol=https;nobranch=1;rev=112230192c580c3556b8cee6403af37a4fc5f28c;name=git_d7307bee_0;destsuffix=vcs_cache/b68e56943c8c12324ce0414e7075fd80f016eafe879c0c69e6b25893ebb49bce" | ||
| 426 | SRC_URI += "git://go.googlesource.com/sync;protocol=https;nobranch=1;rev=1d60e4601c6fd243af51cc01ddf169918a5407ca;name=git_d7307bee_1;destsuffix=vcs_cache/a474d88ee14fcd89b314b779d02a4628461aebbfc6613a6ba90e583c35e15b02" | ||
| 427 | SRC_URI += "git://go.googlesource.com/sync;protocol=https;nobranch=1;rev=37e7f081c4d4c64e13b10787722085407fe5d15f;name=git_d7307bee_2;destsuffix=vcs_cache/901f082ea4e1c94dfbaef54bd883432751214951b6b2d5885765a306b1c60d1f" | ||
| 428 | SRC_URI += "git://go.googlesource.com/sync;protocol=https;nobranch=1;rev=42b317875d0fa942474b76e1b46a6060d720ae6e;name=git_d7307bee_3;destsuffix=vcs_cache/19d48188f5a03164bde06d13dc555c6a2ebc78aafd3dabc7439ec4c9dcca3519" | ||
| 429 | SRC_URI += "git://go.googlesource.com/sync;protocol=https;nobranch=1;rev=67f06af15bc961c363a7260195bcd53487529a21;name=git_d7307bee_4;destsuffix=vcs_cache/63c5dce6fecd17ec0193ec4ee4221b61ccd0834c745a066128df4000c7ec583e" | ||
| 430 | SRC_URI += "git://go.googlesource.com/sync;protocol=https;nobranch=1;rev=886fb9371eb4b47af10bff9c8025a8c9e1554b92;name=git_d7307bee_5;destsuffix=vcs_cache/ca22f14e147dd49170157c4d70861fe830bc43b62113fa8da7da7806f515979b" | ||
| 431 | SRC_URI += "git://go.googlesource.com/sync;protocol=https;nobranch=1;rev=cd5d95a43a6e21273425c7ae415d3df9ea832eeb;name=git_d7307bee_6;destsuffix=vcs_cache/eaa2921285a7524f3154ea98a551847767b259c18f901ed97668900b204aa7a6" | ||
| 432 | SRC_URI += "git://go.googlesource.com/sync;protocol=https;nobranch=1;shallow=1;rev=fe3591bd8a96873abc98bb9d2d5c62f27efca3e9;name=git_d7307bee_7;destsuffix=vcs_cache/a1ea9c5d66cb424c251553fb8c78853cf27fd86db554b15dc8e4ca40ed88f6f2" | ||
| 433 | SRC_URI += "git://go.googlesource.com/crypto;protocol=https;nobranch=1;shallow=1;rev=b4f1988a35dee11ec3e05d6bf3e90b695fbd8909;name=git_f72f7a6f_0;destsuffix=vcs_cache/a38aa53b73d0a33a443bb08947f8372e080f4dbcf765ddbe93db05515afa3ed6" | ||
| 434 | SRC_URI += "git://go.googlesource.com/net;protocol=https;nobranch=1;rev=0de0cce0169b09b364e001f108dc0399ea8630b3;name=git_ed42bd05_0;destsuffix=vcs_cache/4a83ce2ea03f8d39736df96f33e3c12c6f2736e4e2d7c83f96b043f96b097451" | ||
| 435 | SRC_URI += "git://go.googlesource.com/net;protocol=https;nobranch=1;rev=161cd47e91fd58ac17490ef4d742dc98bb4cf60e;name=git_ed42bd05_1;destsuffix=vcs_cache/babc11e479dde015dda8f2983ff3d34baeca8fc3c8f903c8cdb86bbe5bd33276" | ||
| 436 | SRC_URI += "git://go.googlesource.com/net;protocol=https;nobranch=1;rev=3b0461eec859c4b73bb64fdc8285971fd33e3938;name=git_ed42bd05_2;destsuffix=vcs_cache/3c84774e4b117bf9ca7f463a9106bc672447617fbfdf58b268e7a74cb79b8882" | ||
| 437 | SRC_URI += "git://go.googlesource.com/net;protocol=https;nobranch=1;rev=a158d28d115bfbcc1583374c5ae12ba6415bb93e;name=git_ed42bd05_3;destsuffix=vcs_cache/2de939cb01f6e50973e8ce809ddfa5b8ceec4f7d5e7a3aef65caea692eb1f5b5" | ||
| 438 | SRC_URI += "git://go.googlesource.com/net;protocol=https;nobranch=1;rev=adae6a3d119ae4890b46832a2e88a95adc62b8e7;name=git_ed42bd05_4;destsuffix=vcs_cache/b8c1e7047b6e4851ac069daf32f49810a275ba804ac8e291088dc3153c2e9244" | ||
| 439 | SRC_URI += "git://go.googlesource.com/net;protocol=https;nobranch=1;rev=d28f0bde5980168871434b95cfc858db9f2a7a99;name=git_ed42bd05_5;destsuffix=vcs_cache/757dd4c6e25318b13686cfb89c72e097891b4100c7969a22acf412f56e47896d" | ||
| 440 | SRC_URI += "git://go.googlesource.com/net;protocol=https;nobranch=1;shallow=1;rev=dfc720dfe0cfc125116068c20efcdcb5e4eab464;name=git_ed42bd05_6;destsuffix=vcs_cache/efb49d6c533f0c4edb5aaa1328290d633a3c9d6b88a92eed26a023d8ff604d7a" | ||
| 441 | SRC_URI += "git://go.googlesource.com/net;protocol=https;nobranch=1;rev=e18ecbb051101a46fc263334b127c89bc7bff7ea;name=git_ed42bd05_7;destsuffix=vcs_cache/376d3afffd1f62bc65b76e58fc724fe033367b5c6b239fa6c7d0367687a2bfbd" | ||
| 442 | SRC_URI += "git://go.googlesource.com/net;protocol=https;nobranch=1;rev=eb5bcb51f2a31c7d5141d810b70815c05d9c9146;name=git_ed42bd05_8;destsuffix=vcs_cache/ae86d4593bf8e0a0514f77d1f3831f0f2f4214c3d1e77cc50661343ba4fcdebe" | ||
| 443 | SRC_URI += "git://go.googlesource.com/net;protocol=https;nobranch=1;rev=f5854403a9740e74b2e9e725e6cd7c8a57711905;name=git_ed42bd05_9;destsuffix=vcs_cache/fc8ecf11eddaf279509465d2c0dde9c76fb90ea7c097356e83c6ed4c375e1c16" | ||
| 444 | SRC_URI += "git://go.googlesource.com/net;protocol=https;nobranch=1;rev=f9c8255933865a6f8452ccf0cc47ac980da5ac56;name=git_ed42bd05_10;destsuffix=vcs_cache/0add53dcd932ca2db356b748f561e32f186413019044a765b2b1adfe195f8550" | ||
| 445 | SRC_URI += "git://go.googlesource.com/exp;protocol=https;branch=master;rev=2d47ceb2692f22136c9ff680c192d3d19c5dd9e2;name=git_879ce674_0;destsuffix=vcs_cache/fa78cf25fa01c74cefb0336713724c43d794cf309539a0b58c51aa1c413b6612" | ||
| 446 | SRC_URI += "git://go.googlesource.com/text;protocol=https;nobranch=1;shallow=1;rev=1bdb400fb39a45cc788ffe7e5d7a2a9719afc7e9;name=git_38515699_0;destsuffix=vcs_cache/5ad35cfebebfa5b556ca6d44b5026673bb71ab874271a0fc395ab751275779ae" | ||
| 447 | SRC_URI += "git://go.googlesource.com/text;protocol=https;nobranch=1;shallow=1;rev=23ae387dee1f90d29a23c0e87ee0b46038fbed0e;name=git_38515699_1;destsuffix=vcs_cache/cb54f76ec6181ed72414cbac7c1d4de145545dbe7cf920063654dab541ce2dc1" | ||
| 448 | SRC_URI += "git://go.googlesource.com/text;protocol=https;nobranch=1;shallow=1;rev=383b2e75a7a4198c42f8f87833eefb772868a56f;name=git_38515699_2;destsuffix=vcs_cache/62c926369bbefb0babf3ce89762737f7c9e16aefa43a75d7b49d544bdf87dd3e" | ||
| 449 | SRC_URI += "git://go.googlesource.com/text;protocol=https;nobranch=1;shallow=1;rev=d42948e5579eb996bedb7df76c7ad57fae4e83c7;name=git_38515699_3;destsuffix=vcs_cache/7fcb78a8fd04f8a91f109513bdf93dd6c6681a83c61c24ba5d330cc070dad0a6" | ||
| 450 | SRC_URI += "git://go.googlesource.com/text;protocol=https;nobranch=1;shallow=1;rev=f21a4dfb5e38f5895301dc265a8def02365cc3d0;name=git_38515699_4;destsuffix=vcs_cache/d39e4750b0b2d1a0bd2ed4dc2dbe3b1b701235f69c66ba7085791fbf117c3528" | ||
| 451 | SRC_URI += "git://go.googlesource.com/time;protocol=https;nobranch=1;shallow=1;rev=5d9ef583af632a0fcf95276fb38326f695c4fd5f;name=git_e2f6844a_0;destsuffix=vcs_cache/ab204931a58ec8ccf1316657eae3e35ee90a15fe2e4a0eca5017a69b34aa48b9" | ||
| 452 | SRC_URI += "git://go.googlesource.com/xerrors;protocol=https;branch=master;rev=04be3eba64a22a838cdb17b8dca15a52871c08b4;name=git_e8cbb9fc_0;destsuffix=vcs_cache/eebbc7ff1ce54422705a4e11c1a375ce3ad751ff9c853e7948e423942bb5e416" | ||
| 453 | SRC_URI += "git://go.googlesource.com/xerrors;protocol=https;nobranch=1;rev=1b5146add8981d58be77b16229c0ff0f8bebd8c1;name=git_e8cbb9fc_1;destsuffix=vcs_cache/8c142112d3bf2046dde4cb3dda11db03c95a8ab51bfb424b4d31be45594f7e6a" | ||
| 454 | SRC_URI += "git://go.googlesource.com/xerrors;protocol=https;nobranch=1;rev=5ec99f83aff198f5fbd629d6c8d8eb38a04218ca;name=git_e8cbb9fc_2;destsuffix=vcs_cache/1a7eef0babb47828059471e537bef1e9023bf22cd1c23e5fcaf7523b68332e82" | ||
| 455 | SRC_URI += "git://go.googlesource.com/xerrors;protocol=https;nobranch=1;rev=9bdfabe68543c54f90421aeb9a60ef8061b5b544;name=git_e8cbb9fc_3;destsuffix=vcs_cache/a190c0bd506167cc1631eefeb81697d88fd666066c0d35abb4f058915f9881cd" | ||
| 456 | SRC_URI += "git://go.googlesource.com/xerrors;protocol=https;nobranch=1;rev=a985d3407aa71f30cf86696ee0a2f409709f22e1;name=git_e8cbb9fc_4;destsuffix=vcs_cache/19bf66358270f1db6b287805895c6fc8385236e01234a96b3da1d15fe70245f7" | ||
| 457 | SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;rev=113979e3529a77b99c4f3e5f3c8a22802a39cc95;name=git_7d9b3b49_0;destsuffix=vcs_cache/74532c68be1c7f64a0eee926ba2b0b7d4552a8c11bae36838bf170186db4264d" | ||
| 458 | SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;rev=298f0cb1881e71e68bc5bc17757fabe78a426460;name=git_7d9b3b49_1;destsuffix=vcs_cache/4bdade122172b6644bff0ea433cdb68d5460d8b894432e030ced235888ac6fdc" | ||
| 459 | SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;shallow=1;rev=4d2b19f26de18fb5fcfe5fa93e63cc44a98f1fcf;name=git_7d9b3b49_2;destsuffix=vcs_cache/02f11548c916b8e79c22811551166007244b987085c97a7f2e796447c493e3d8" | ||
| 460 | SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;rev=7c47624df98f421302ad5a380f58fd5ed0ecb734;name=git_7d9b3b49_3;destsuffix=vcs_cache/a7efe20c5bee119c7e0018be6d57820b9b6a182d1818d3ec344c022fad6b7114" | ||
| 461 | SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;rev=90fa682c2a6e6a37b3a1364ce2fe1d5e41af9d6d;name=git_7d9b3b49_4;destsuffix=vcs_cache/e396d41e128acc62cbad331ee090a99e470d23a3611d8b07d3c2cc41a1cc0b49" | ||
| 462 | SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;shallow=1;rev=b3b5c13b291f9653da6f31b95db100a2e26bd186;name=git_7d9b3b49_5;destsuffix=vcs_cache/caef14ab3734fcbf0d05c7a9aab8ffc3dee6066c109316257d37ec9c806f1482" | ||
| 463 | SRC_URI += "git://github.com/kubernetes/apiserver;protocol=https;nobranch=1;rev=bf59812efd06772456a56fa750bf3f0c30786325;name=git_3c2e4918_0;destsuffix=vcs_cache/afc1d12b75ddb6271d393061a91219c5ec4abed2b3bc79abf007ff5010bd153e" | ||
| 464 | SRC_URI += "git://github.com/kubernetes/apimachinery;protocol=https;nobranch=1;rev=a8f449e276fe566efddb149992049c78f0088492;name=git_d6490ebc_0;destsuffix=vcs_cache/26170b50e37f07cc31ef36c1a32f4ba52613fb968ad57ea9c68d51d25490eb11" | ||
| 465 | SRC_URI += "git://github.com/kubernetes/api;protocol=https;nobranch=1;rev=bc73ef70e18b6e2f1146ca60c99df5955bec647e;name=git_91745483_0;destsuffix=vcs_cache/0881aba7d7840bd304655ebf83e9beabd459b55c392b44fbac1662b3a77741b4" | ||
| 466 | SRC_URI += "git://github.com/kubernetes/klog;protocol=https;nobranch=1;shallow=1;rev=75663bb798999a49e3e4c0f2375ed5cca8164194;name=git_9d03197d_0;destsuffix=vcs_cache/eaab5e8e1958570d9bced9a912298fdaa9472cecec794161f58aebf8c4d1e963" | ||
| 467 | SRC_URI += "git://github.com/kubernetes/component-base;protocol=https;nobranch=1;rev=0c667d6aae7e61a94a82661f7bd730889b50f82d;name=git_4755c6fe_0;destsuffix=vcs_cache/0a0444d5607879352c647e14046b4453a89c85d0519f317078c2ad3cf49856da" | ||
| 468 | SRC_URI += "git://github.com/kubernetes/kube-openapi;protocol=https;branch=master;rev=70dd3763d340b13ccc008be05cb1f59ff245dbfd;name=git_dbee483c_0;destsuffix=vcs_cache/2634a027d7ac5f2c1c672a4521e633effb71cc8ea765af44381ee81e019f012f" | ||
| 469 | SRC_URI += "git://github.com/kubernetes/cri-api;protocol=https;nobranch=1;rev=3e7bd20f8b96ea88255a40232b9af850398b8526;name=git_31e69ce5_0;destsuffix=vcs_cache/891e2f4aaa1d1ad61a2021f914c621afafb5c6117c4ed588cae65178dc2b15a4" | ||
| 470 | SRC_URI += "git://github.com/kubernetes/kubelet;protocol=https;nobranch=1;rev=04bbd9b7e20fbd76c5a563746d5f94aa32829a0e;name=git_d9d9e7ca_0;destsuffix=vcs_cache/b828a6d5f9885d79ec9d82e6704c572f1817848c3d0d613b751e2129f9cb406a" | ||
| 471 | SRC_URI += "git://github.com/kubernetes/gengo;protocol=https;branch=master;rev=51d4e06bde7070d095fd4c266e51dbe135511a97;name=git_c68f8a69_0;destsuffix=vcs_cache/e988896d3ab1864ce970af359d84b602c96051a77e8fdb330c86abb79a1a76a6" | ||
| 472 | SRC_URI += "git://github.com/kubernetes/utils;protocol=https;branch=master;rev=18e509b52bc851d6169db17631e99453021dea21;name=git_9da930f9_0;destsuffix=vcs_cache/97853f3a1c8c98c8da2a9a88dfe3f6c95380fbf82c6261cc711f1c7df391ff62" | ||
| 473 | SRC_URI += "git://github.com/kubernetes/client-go;protocol=https;nobranch=1;rev=270e5ab1714527c455865953da8ceba2810dbb50;name=git_0356f569_0;destsuffix=vcs_cache/9389426d4052ef158ae65f764f943d4ec3f435c06d553772e40bbd7789392ea6" | ||
| 474 | SRC_URI += "git://github.com/open-telemetry/opentelemetry-go-contrib;protocol=https;nobranch=1;rev=519f10d5d0e764ed063351ab2c34be74d7ad4780;name=git_9cecf883_0;destsuffix=vcs_cache/5b1d0351329581396ef0beb0319314b5e0bb243738ffd3fac3d1fe9ee9f029a9" | ||
| 475 | SRC_URI += "git://github.com/open-telemetry/opentelemetry-go-contrib;protocol=https;nobranch=1;rev=9cf5701e6b6611b2c406639039a1bccd883db080;name=git_9cecf883_1;destsuffix=vcs_cache/48c3168b81321d95e77298c427895735ed62dcca9c4c8b4f797f78d60f2ee89c" | ||
| 476 | SRC_URI += "git://github.com/open-telemetry/opentelemetry-proto-go;protocol=https;nobranch=1;rev=a300cca6ca2b6c700b1c0409003751b762e30dea;name=git_430aa893_0;destsuffix=vcs_cache/aaf93de1b99f2caad8d2248ab8d78b4919ad81f9cb07935ba861f3d6619f2525" | ||
| 477 | SRC_URI += "git://github.com/open-telemetry/opentelemetry-go;protocol=https;nobranch=1;rev=3c476ce1816ae6f38758e90cc36d8b77ebcc223b;name=git_120ed83a_0;destsuffix=vcs_cache/7257a93ca31d121ae8fee06e2ce5824c46e65e351d7b2daf9b1a27a10d8bb60d" | ||
| 478 | SRC_URI += "git://github.com/open-telemetry/opentelemetry-go;protocol=https;nobranch=1;rev=60666c554065ac4da502fe28943eea4b938ab479;name=git_120ed83a_1;destsuffix=vcs_cache/5781e823bcdbe01100cd1dc8d89e81f073e0a26cb157df3e236c81af5d21f7e4" | ||
| 479 | SRC_URI += "git://github.com/open-telemetry/opentelemetry-go;protocol=https;nobranch=1;rev=7cfbd86a605c85e598eca9a899f6176b17076f4f;name=git_120ed83a_2;destsuffix=vcs_cache/a88bcf462be50b5ec9893d845737cdb0869a6945d49c699596a1c973d2ca76d0" | ||
| 480 | SRC_URI += "git://github.com/open-telemetry/opentelemetry-go;protocol=https;branch=main;rev=bc2fe88756962b76eb43ea2fd92ed3f5b6491cc0;name=git_120ed83a_3;destsuffix=vcs_cache/32a87864cfa3320f417f47862642c312d2c19908839bd781f0f1073a0a9b899e" | ||
| 481 | SRC_URI += "git://github.com/etcd-io/bbolt;protocol=https;nobranch=1;rev=d128a10000a9d394686cf45be262a4fe966b03c4;name=git_bd7d6031_0;destsuffix=vcs_cache/c5dfa2d8cb348dd268f3f0ef5e744fc736f4d2570eef6e7cb6273eae40dea832" | ||
| 482 | SRC_URI += "git://github.com/go-check/check;protocol=https;branch=v1;rev=10cb98267c6cb43ea9cd6793f29ff4089c306974;name=git_fc1e328f_0;destsuffix=vcs_cache/b8ed7c01feb15e76511fd0dcf4b7d5e0ab535f96b5fe0e22cd9854a758a6c38d" | ||
| 483 | SRC_URI += "git://github.com/go-check/check;protocol=https;branch=v1;rev=20d25e2804050c1cd24a7eea1e7a6447dd0e74ec;name=git_fc1e328f_1;destsuffix=vcs_cache/f6f7125ac7ef086ca6395a14a9a28c8c11cd6f8790a8be7cfd6475d1acd0f40b" | ||
| 484 | SRC_URI += "git://github.com/go-check/check;protocol=https;branch=v1;rev=8fa46927fb4f5b54d48bde78c6c08db205b2298c;name=git_fc1e328f_2;destsuffix=vcs_cache/23da246e09df0cfb88f7874f3e8ab42f1563033c51f59b8fd9f88f708ab87083" | ||
| 485 | SRC_URI += "git://github.com/go-inf/inf;protocol=https;nobranch=1;shallow=1;rev=d2d2541c53f18d2a059457998ce2876cc8e67cbf;name=git_989ffae9_0;destsuffix=vcs_cache/61185ca91404d2e09a193aede807b4a9ededd43199f58cd49ec4cef480d7bc7f" | ||
| 486 | SRC_URI += "git://github.com/go-tomb/tomb;protocol=https;branch=v1;rev=dd632973f1e7218eb1089048e0798ec9ae7dceb8;name=git_40f32ad0_0;destsuffix=vcs_cache/3eb09c53457860b46e591b55bd3d381c6c4ceb426eeef3c43e3b3eac38964c0d" | ||
| 487 | SRC_URI += "git://github.com/go-yaml/yaml;protocol=https;nobranch=1;shallow=1;rev=51d6538a90f86fe93ac480b35f37b2be17fef232;name=git_b0089ab1_0;destsuffix=vcs_cache/8a100ce674e65e72daf096e45d53f5beec9f9123c742acb89993de84b6414834" | ||
| 488 | SRC_URI += "git://github.com/go-yaml/yaml;protocol=https;nobranch=1;shallow=1;rev=53403b58ad1b561927d19068c655246f2db79d48;name=git_b0089ab1_1;destsuffix=vcs_cache/400816c86851106c70bff651cdce4df77403b9659ec70d1d1bbe2d3211dfa942" | ||
| 489 | SRC_URI += "git://github.com/go-yaml/yaml;protocol=https;nobranch=1;shallow=1;rev=5420a8b6744d3b0345ab293f6fcba19c978f1183;name=git_b0089ab1_2;destsuffix=vcs_cache/0fa3b98a4c1a3d9bd017c1d1c94874fecbc693d1400e5f002f53d4444a42664c" | ||
| 490 | SRC_URI += "git://github.com/go-yaml/yaml;protocol=https;nobranch=1;shallow=1;rev=7649d4548cb53a614db133b2a8ac1f31859dda8c;name=git_b0089ab1_3;destsuffix=vcs_cache/84e688efadb8602ec1990d3cd251d5818e95c14682a169266ac9a1edadfe5424" | ||
| 491 | SRC_URI += "git://github.com/go-yaml/yaml;protocol=https;branch=v3;rev=9f266ea9e77c4c7aab4cf02650570e7c7b3031a5;name=git_b0089ab1_4;destsuffix=vcs_cache/ae6e6119974a43d5668501b6efe7e743408319dee4094d1929d3e75a4f5dac98" | ||
| 492 | SRC_URI += "git://github.com/go-yaml/yaml;protocol=https;nobranch=1;shallow=1;rev=f221b8435cfb71e54062f6c6e99e9ade30b124d5;name=git_b0089ab1_5;destsuffix=vcs_cache/16ad1bc1035b50f99a688a97524eadf6fc6a8b09612f99dd2ef19e0889b7935a" | ||
| 493 | SRC_URI += "git://github.com/go-yaml/yaml;protocol=https;nobranch=1;shallow=1;rev=f6f7691b1fdeb513f56608cd2c32c51f8194bf51;name=git_b0089ab1_6;destsuffix=vcs_cache/8d340fff421a1861f196061b40e49b2f9e802647204935d08e1062b8ecd90b0d" | ||
| 494 | SRC_URI += "git://github.com/grpc/grpc-go;protocol=https;nobranch=1;rev=708a7f9f3283aa2d4f6132d287d78683babe55c8;name=git_6bc32f05_0;destsuffix=vcs_cache/a8f63cb0b9589a8734365d4e15d54811da5f80c7314224f78f912146fcb9e1d8" | ||
| 495 | SRC_URI += "git://github.com/grpc/grpc-go;protocol=https;nobranch=1;shallow=1;rev=98a0092952dd4d8443229c3a335ec592d9c40c9b;name=git_6bc32f05_1;destsuffix=vcs_cache/e58c14dd349857769c94ca9778f4cd2a4f5928530a1881f2c1074ca1cbb2d10e" | ||
| 496 | SRC_URI += "git://github.com/grpc/grpc-go;protocol=https;nobranch=1;shallow=1;rev=ec9dff77b186d5308955fe0fc50e3e4cbe187e2c;name=git_6bc32f05_2;destsuffix=vcs_cache/ce5a862c22ded840bff7b7ec1016804cb0af284075ea09fb5fe73b9866532a3a" | ||
| 497 | SRC_URI += "git://github.com/googleapis/go-genproto;protocol=https;branch=main;rev=19429a94021accaa4bb60cbed61190248f4ef066;name=git_461a63b9_0;destsuffix=vcs_cache/2f5bb31a0a8f937de324b23ab84e814e504046e93133c7326bf700b0882dc384" | ||
| 498 | SRC_URI += "git://github.com/googleapis/go-genproto;protocol=https;branch=main;rev=86f49bd18e984e9ce639b0a694e02acdbc753c39;name=git_461a63b9_1;destsuffix=vcs_cache/60d429fbf7c05db4fa9c255ebe6a537c9d7310b32a3ae1ae4050b4e38a3b3232" | ||
| 499 | SRC_URI += "git://go.googlesource.com/protobuf;protocol=https;nobranch=1;shallow=1;rev=c72053a9062dd4bc86a75c21f5d8134136ccbf2e;name=git_a6c5d6b8_0;destsuffix=vcs_cache/0c67444ea9910e060a9eecff1756801f86c29e8b3b530800a00304736b7b2996" | ||
| 500 | SRC_URI += "git://github.com/cncf-tags/container-device-interface;protocol=https;nobranch=1;rev=d1a2c366833ff17c1b12db9637314e035871b1ef;name=git_c2439148_0;destsuffix=vcs_cache/4f5352b6f77f4f121f95a0b3e9a76e55d772a4a180f172a124639c29e71fc9b8" | ||
| 501 | SRC_URI += "git://github.com/cncf-tags/container-device-interface;protocol=https;nobranch=1;shallow=1;rev=e66544063aa7760c4ea6330ce9e6c757f8e61df2;name=git_c2439148_1;destsuffix=vcs_cache/f812ffada8aed322606ad148d39d72f0d5f13ee7311973a217d387e352ac9800" | ||
| 502 | SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;shallow=1;rev=35d1f813f755c88d6869d993796c5ddf8ac3eea3;name=git_8ce8c847_0;destsuffix=vcs_cache/545512f9060ccdd4a5f961c7872003895f14afd8d660e406e141363d3cbedd5a" | ||
| 503 | SRC_URI += "git://github.com/gotestyourself/gotest.tools;protocol=https;nobranch=1;shallow=1;rev=0b81523ff268a1f1b0baf4a5da67e42fbb86880b;name=git_6a558ec9_0;destsuffix=vcs_cache/0059a65e8d8f001755ae605517342ab3e098223b600f512103941850dfee7cc5" | ||
| 504 | SRC_URI += "git://github.com/docker/go;protocol=https;branch=master;rev=d30aec9fd63c35133f8f79c3412ad91a3b08be06;name=git_48fbd2df_0;destsuffix=vcs_cache/adbf3e69f7023041c90d95475b29404cfcd9bbc165416530ac397daf92713d9f" | ||
| 505 | SRC_URI += "git://gopkg.in/airbrake/gobrake.v2;protocol=https;branch=master;rev=668876711219e8b0206e2994bf0a59d889c775aa;name=git_ac7dd998_0;destsuffix=vcs_cache/077965e9dddf4afe778a53c5657b15d425b2922ce1bb4473b48a092882d1c86c" | ||
| 506 | SRC_URI += "git://gopkg.in/alecthomas/kingpin.v2;protocol=https;branch=master;rev=947dcec5ba9c011838740e680966fd7087a71d0d;name=git_c2c1b071_0;destsuffix=vcs_cache/2735cac9b4a3cdb15215106fb8250a3cf703ade538238379c02b2e4630006774" | ||
| 507 | SRC_URI += "git://gopkg.in/cenkalti/backoff.v1;protocol=https;branch=master;rev=61153c768f31ee5f130071d08fc82b85208528de;name=git_43f92ce8_0;destsuffix=vcs_cache/8210864debb0dafc5139d41233d2068be3e9a91acfd85c53a3cb338654ce2424" | ||
| 508 | SRC_URI += "git://gopkg.in/cenkalti/backoff.v2;protocol=https;branch=master;rev=5267b6dd4d2666b980a911bf235efa276222cbe2;name=git_585aa1be_0;destsuffix=vcs_cache/71c3d72ed297486ed0a5ea367107475dd5a2f63506f13752eff8697b952feb2b" | ||
| 509 | SRC_URI += "git://gopkg.in/evanphx/json-patch.v4;protocol=https;branch=master;rev=50fdc0b4c9ab36933e6a0c9288fef3ac5df2b907;name=git_6e26e914_0;destsuffix=vcs_cache/4b7afc94ca313174a1c06213eff6268514e8df200fe8280a69535c2f7d458ab8" | ||
| 510 | SRC_URI += "git://gopkg.in/gemnasium/logrus-airbrake-hook.v2;protocol=https;branch=master;rev=e928b033a891c0175fb643d5aa0779e86325eb12;name=git_b4c61f4c_0;destsuffix=vcs_cache/d0726cab486cec911bd01a228103871bd0013c064acd93acf6ec283371126c72" | ||
| 511 | SRC_URI += "git://gopkg.in/rethinkdb/rethinkdb-go.v6;protocol=https;branch=master;rev=fcfe1f12e1c9fb834ac0e68e7771dbfc0e773e4f;name=git_5a855390_0;destsuffix=vcs_cache/217dbcd1c8416832ce026dc8bc5191884d1b45525c1a9e2c2e6980ae4fa4b11e" | ||
| 512 | SRC_URI += "git://gopkg.in/square/go-jose.v2;protocol=https;branch=master;rev=4ef0f1b175ccd65472d154e1207c4d7b8102545f;name=git_8f533168_0;destsuffix=vcs_cache/cc31f909ae479bddf63deb361914cc721f11905fbdd9cf582e47e4768c148336" | ||
| 513 | |||
| 514 | # Tag references for shallow cloning | ||
| 515 | # Ensures shallow clones include all necessary tags | ||
| 516 | BB_GIT_SHALLOW_EXTRA_REFS = "\ | ||
| 517 | refs/tags/api/v1.8.0 \ | ||
| 518 | refs/tags/aws/protocol/eventstream/v1.6.3 \ | ||
| 519 | refs/tags/cap/v1.2.73 \ | ||
| 520 | refs/tags/capability/v0.4.0 \ | ||
| 521 | refs/tags/cmd/protoc-gen-go-grpc/v1.5.1 \ | ||
| 522 | refs/tags/compute/metadata/v0.5.2 \ | ||
| 523 | refs/tags/config/v1.27.27 \ | ||
| 524 | refs/tags/credentials/v1.17.27 \ | ||
| 525 | refs/tags/detectors/gcp/v1.25.0 \ | ||
| 526 | refs/tags/detectors/gcp/v1.32.0 \ | ||
| 527 | refs/tags/estargz/v0.16.3 \ | ||
| 528 | refs/tags/exporters/jaeger/v1.17.0 \ | ||
| 529 | refs/tags/exporters/otlp/otlptrace/otlptracegrpc/v1.31.0 \ | ||
| 530 | refs/tags/exporters/otlp/otlptrace/otlptracehttp/v1.31.0 \ | ||
| 531 | refs/tags/exporters/otlp/otlptrace/v1.31.0 \ | ||
| 532 | refs/tags/exporters/prometheus/v0.42.0 \ | ||
| 533 | refs/tags/feature/ec2/imds/v1.16.11 \ | ||
| 534 | refs/tags/feature/s3/manager/v1.17.8 \ | ||
| 535 | refs/tags/instrumentation/google.golang.org/grpc/otelgrpc/v0.56.0 \ | ||
| 536 | refs/tags/instrumentation/net/http/httptrace/otelhttptrace/v0.56.0 \ | ||
| 537 | refs/tags/instrumentation/net/http/otelhttp/v0.56.0 \ | ||
| 538 | refs/tags/internal/configsources/v1.3.15 \ | ||
| 539 | refs/tags/internal/endpoints/v2.6.15 \ | ||
| 540 | refs/tags/internal/ini/v1.8.0 \ | ||
| 541 | refs/tags/internal/v4a/v1.3.15 \ | ||
| 542 | refs/tags/metric/v1.32.0 \ | ||
| 543 | refs/tags/mount/v0.3.4 \ | ||
| 544 | refs/tags/mountinfo/v0.7.2 \ | ||
| 545 | refs/tags/otlp/v1.3.1 \ | ||
| 546 | refs/tags/pkg/v0.3.0 \ | ||
| 547 | refs/tags/providers/prometheus/v1.0.1 \ | ||
| 548 | refs/tags/psx/v1.2.73 \ | ||
| 549 | refs/tags/reexec/v0.1.0 \ | ||
| 550 | refs/tags/sdk/azcore/v1.16.0 \ | ||
| 551 | refs/tags/sdk/azidentity/v1.8.0 \ | ||
| 552 | refs/tags/sdk/internal/v1.10.0 \ | ||
| 553 | refs/tags/sdk/metric/v1.32.0 \ | ||
| 554 | refs/tags/sdk/storage/azblob/v1.5.0 \ | ||
| 555 | refs/tags/sdk/v1.32.0 \ | ||
| 556 | refs/tags/sequential/v0.6.0 \ | ||
| 557 | refs/tags/service/internal/accept-encoding/v1.11.3 \ | ||
| 558 | refs/tags/service/internal/checksum/v1.3.17 \ | ||
| 559 | refs/tags/service/internal/presigned-url/v1.11.17 \ | ||
| 560 | refs/tags/service/internal/s3shared/v1.17.15 \ | ||
| 561 | refs/tags/service/s3/v1.58.2 \ | ||
| 562 | refs/tags/service/sso/v1.22.4 \ | ||
| 563 | refs/tags/service/ssooidc/v1.26.4 \ | ||
| 564 | refs/tags/service/sts/v1.30.3 \ | ||
| 565 | refs/tags/signal/v0.7.1 \ | ||
| 566 | refs/tags/specs-go/v0.8.0 \ | ||
| 567 | refs/tags/symlink/v0.3.0 \ | ||
| 568 | refs/tags/trace/v1.32.0 \ | ||
| 569 | refs/tags/user/v0.3.0 \ | ||
| 570 | refs/tags/userns/v0.1.0 \ | ||
| 571 | refs/tags/v0.0.1 \ | ||
| 572 | refs/tags/v0.0.15 \ | ||
| 573 | refs/tags/v0.0.16 \ | ||
| 574 | refs/tags/v0.0.17 \ | ||
| 575 | refs/tags/v0.0.2 \ | ||
| 576 | refs/tags/v0.0.3 \ | ||
| 577 | refs/tags/v0.0.5 \ | ||
| 578 | refs/tags/v0.0.8 \ | ||
| 579 | refs/tags/v0.1.0 \ | ||
| 580 | refs/tags/v0.1.1 \ | ||
| 581 | refs/tags/v0.1.12 \ | ||
| 582 | refs/tags/v0.1.13 \ | ||
| 583 | refs/tags/v0.1.2 \ | ||
| 584 | refs/tags/v0.11.0 \ | ||
| 585 | refs/tags/v0.11.6 \ | ||
| 586 | refs/tags/v0.12.1 \ | ||
| 587 | refs/tags/v0.12.9 \ | ||
| 588 | refs/tags/v0.13.1 \ | ||
| 589 | refs/tags/v0.15.0 \ | ||
| 590 | refs/tags/v0.15.1 \ | ||
| 591 | refs/tags/v0.16.3 \ | ||
| 592 | refs/tags/v0.19.0 \ | ||
| 593 | refs/tags/v0.19.6 \ | ||
| 594 | refs/tags/v0.2.0 \ | ||
| 595 | refs/tags/v0.2.1 \ | ||
| 596 | refs/tags/v0.20.0 \ | ||
| 597 | refs/tags/v0.20.2 \ | ||
| 598 | refs/tags/v0.21.0 \ | ||
| 599 | refs/tags/v0.21.2 \ | ||
| 600 | refs/tags/v0.22.0 \ | ||
| 601 | refs/tags/v0.22.3 \ | ||
| 602 | refs/tags/v0.22.4 \ | ||
| 603 | refs/tags/v0.24.0 \ | ||
| 604 | refs/tags/v0.27.0 \ | ||
| 605 | refs/tags/v0.3.0 \ | ||
| 606 | refs/tags/v0.3.1 \ | ||
| 607 | refs/tags/v0.3.16 \ | ||
| 608 | refs/tags/v0.3.3 \ | ||
| 609 | refs/tags/v0.3.5 \ | ||
| 610 | refs/tags/v0.3.7 \ | ||
| 611 | refs/tags/v0.30.0 \ | ||
| 612 | refs/tags/v0.31.0 \ | ||
| 613 | refs/tags/v0.31.2 \ | ||
| 614 | refs/tags/v0.33.0 \ | ||
| 615 | refs/tags/v0.4.0 \ | ||
| 616 | refs/tags/v0.4.1 \ | ||
| 617 | refs/tags/v0.4.5 \ | ||
| 618 | refs/tags/v0.5.0 \ | ||
| 619 | refs/tags/v0.5.1 \ | ||
| 620 | refs/tags/v0.5.2 \ | ||
| 621 | refs/tags/v0.5.3 \ | ||
| 622 | refs/tags/v0.5.9 \ | ||
| 623 | refs/tags/v0.55.0 \ | ||
| 624 | refs/tags/v0.6.0 \ | ||
| 625 | refs/tags/v0.6.1 \ | ||
| 626 | refs/tags/v0.6.2 \ | ||
| 627 | refs/tags/v0.6.8 \ | ||
| 628 | refs/tags/v0.7.0 \ | ||
| 629 | refs/tags/v0.7.7 \ | ||
| 630 | refs/tags/v0.8.0 \ | ||
| 631 | refs/tags/v0.8.1 \ | ||
| 632 | refs/tags/v0.8.2 \ | ||
| 633 | refs/tags/v0.8.4 \ | ||
| 634 | refs/tags/v0.9.0 \ | ||
| 635 | refs/tags/v0.9.1 \ | ||
| 636 | refs/tags/v0.9.3 \ | ||
| 637 | refs/tags/v1.0.0 \ | ||
| 638 | refs/tags/v1.0.0-rc.1 \ | ||
| 639 | refs/tags/v1.0.1 \ | ||
| 640 | refs/tags/v1.0.12 \ | ||
| 641 | refs/tags/v1.0.2 \ | ||
| 642 | refs/tags/v1.0.4 \ | ||
| 643 | refs/tags/v1.0.5 \ | ||
| 644 | refs/tags/v1.0.6 \ | ||
| 645 | refs/tags/v1.1.0 \ | ||
| 646 | refs/tags/v1.1.1 \ | ||
| 647 | refs/tags/v1.1.12 \ | ||
| 648 | refs/tags/v1.1.17 \ | ||
| 649 | refs/tags/v1.1.24 \ | ||
| 650 | refs/tags/v1.1.27 \ | ||
| 651 | refs/tags/v1.1.6 \ | ||
| 652 | refs/tags/v1.1.7 \ | ||
| 653 | refs/tags/v1.1.9 \ | ||
| 654 | refs/tags/v1.10.0 \ | ||
| 655 | refs/tags/v1.11.1 \ | ||
| 656 | refs/tags/v1.12.0 \ | ||
| 657 | refs/tags/v1.13.1 \ | ||
| 658 | refs/tags/v1.14.1 \ | ||
| 659 | refs/tags/v1.16.0 \ | ||
| 660 | refs/tags/v1.17.11 \ | ||
| 661 | refs/tags/v1.19.0 \ | ||
| 662 | refs/tags/v1.2.0 \ | ||
| 663 | refs/tags/v1.2.1 \ | ||
| 664 | refs/tags/v1.2.2 \ | ||
| 665 | refs/tags/v1.2.3 \ | ||
| 666 | refs/tags/v1.2.7 \ | ||
| 667 | refs/tags/v1.20.3 \ | ||
| 668 | refs/tags/v1.20.5 \ | ||
| 669 | refs/tags/v1.22.16 \ | ||
| 670 | refs/tags/v1.3.0 \ | ||
| 671 | refs/tags/v1.3.1 \ | ||
| 672 | refs/tags/v1.3.11 \ | ||
| 673 | refs/tags/v1.3.2 \ | ||
| 674 | refs/tags/v1.3.4 \ | ||
| 675 | refs/tags/v1.30.3 \ | ||
| 676 | refs/tags/v1.32.0 \ | ||
| 677 | refs/tags/v1.35.2 \ | ||
| 678 | refs/tags/v1.4.0 \ | ||
| 679 | refs/tags/v1.4.1 \ | ||
| 680 | refs/tags/v1.4.13 \ | ||
| 681 | refs/tags/v1.4.2 \ | ||
| 682 | refs/tags/v1.4.7 \ | ||
| 683 | refs/tags/v1.5.0 \ | ||
| 684 | refs/tags/v1.5.1 \ | ||
| 685 | refs/tags/v1.5.3 \ | ||
| 686 | refs/tags/v1.5.4 \ | ||
| 687 | refs/tags/v1.6.0 \ | ||
| 688 | refs/tags/v1.6.1 \ | ||
| 689 | refs/tags/v1.6.3 \ | ||
| 690 | refs/tags/v1.7.0 \ | ||
| 691 | refs/tags/v1.7.1 \ | ||
| 692 | refs/tags/v1.70.0 \ | ||
| 693 | refs/tags/v1.8.0 \ | ||
| 694 | refs/tags/v1.8.1 \ | ||
| 695 | refs/tags/v1.9.0 \ | ||
| 696 | refs/tags/v1.9.1 \ | ||
| 697 | refs/tags/v1.9.3 \ | ||
| 698 | refs/tags/v1.9.5 \ | ||
| 699 | refs/tags/v15.0.0 \ | ||
| 700 | refs/tags/v2.0.0 \ | ||
| 701 | refs/tags/v2.0.0-rc.0 \ | ||
| 702 | refs/tags/v2.0.0-rc.1 \ | ||
| 703 | refs/tags/v2.0.1 \ | ||
| 704 | refs/tags/v2.0.2 \ | ||
| 705 | refs/tags/v2.0.6 \ | ||
| 706 | refs/tags/v2.0.7 \ | ||
| 707 | refs/tags/v2.1.0 \ | ||
| 708 | refs/tags/v2.1.1 \ | ||
| 709 | refs/tags/v2.130.1 \ | ||
| 710 | refs/tags/v2.19.0 \ | ||
| 711 | refs/tags/v2.2.1 \ | ||
| 712 | refs/tags/v2.2.2 \ | ||
| 713 | refs/tags/v2.2.3 \ | ||
| 714 | refs/tags/v2.2.4 \ | ||
| 715 | refs/tags/v2.2.8 \ | ||
| 716 | refs/tags/v2.22.0 \ | ||
| 717 | refs/tags/v2.23.0 \ | ||
| 718 | refs/tags/v2.27.5 \ | ||
| 719 | refs/tags/v2.3.0 \ | ||
| 720 | refs/tags/v2.3.1 \ | ||
| 721 | refs/tags/v2.3.7 \ | ||
| 722 | refs/tags/v2.4.0 \ | ||
| 723 | refs/tags/v2.6.3 \ | ||
| 724 | refs/tags/v2.7.0 \ | ||
| 725 | refs/tags/v2.7.1 \ | ||
| 726 | refs/tags/v2.8.3 \ | ||
| 727 | refs/tags/v22.5.0 \ | ||
| 728 | refs/tags/v28.0.1 \ | ||
| 729 | refs/tags/v3.0.0 \ | ||
| 730 | refs/tags/v3.0.1 \ | ||
| 731 | refs/tags/v3.0.5 \ | ||
| 732 | refs/tags/v3.11.0 \ | ||
| 733 | refs/tags/v3.2.1 \ | ||
| 734 | refs/tags/v3.5.2 \ | ||
| 735 | refs/tags/v4.0.4 \ | ||
| 736 | refs/tags/v4.3.0 \ | ||
| 737 | refs/tags/v4.4.1 \ | ||
| 738 | refs/tags/v5.1.0 \ | ||
| 739 | refs/tags/v5.2.1 \ | ||
| 740 | refs/tags/v5.3.1 \ | ||
| 741 | refs/tags/v5.3.5 \ | ||
| 742 | refs/tags/v7.2.0 \ | ||
| 743 | " | ||
diff --git a/recipes-containers/docker-compose/relocation.inc b/recipes-containers/docker-compose/relocation.inc deleted file mode 100644 index bb3aa599..00000000 --- a/recipes-containers/docker-compose/relocation.inc +++ /dev/null | |||
| @@ -1,235 +0,0 @@ | |||
| 1 | export sites = "k8s.io/api:k8s.io/api:force \ | ||
| 2 | k8s.io/utils:k8s.io/utils:force \ | ||
| 3 | k8s.io/klog/v2:k8s.io/klog/v2:force \ | ||
| 4 | gotest.tools/v3:gotest.tools/v3:force \ | ||
| 5 | dario.cat/mergo:dario.cat/mergo:force \ | ||
| 6 | gopkg.in/inf.v0:gopkg.in/inf.v0:force \ | ||
| 7 | go.uber.org/mock:go.uber.org/mock:force \ | ||
| 8 | golang.org/x/exp:golang.org/x/exp:force \ | ||
| 9 | golang.org/x/sys:golang.org/x/sys:force \ | ||
| 10 | gopkg.in/yaml.v3:gopkg.in/yaml.v3:force \ | ||
| 11 | golang.org/x/net:golang.org/x/net:force \ | ||
| 12 | gopkg.in/yaml.v2:gopkg.in/yaml.v2:force \ | ||
| 13 | k8s.io/client-go:k8s.io/client-go:force \ | ||
| 14 | sigs.k8s.io/json:sigs.k8s.io/json:force \ | ||
| 15 | sigs.k8s.io/yaml:sigs.k8s.io/yaml:force \ | ||
| 16 | golang.org/x/sync:golang.org/x/sync:force \ | ||
| 17 | golang.org/x/term:golang.org/x/term:force \ | ||
| 18 | golang.org/x/text:golang.org/x/text:force \ | ||
| 19 | golang.org/x/time:golang.org/x/time:force \ | ||
| 20 | go.uber.org/goleak:go.uber.org/goleak:force \ | ||
| 21 | golang.org/x/crypto:golang.org/x/crypto:force \ | ||
| 22 | golang.org/x/oauth2:golang.org/x/oauth2:force \ | ||
| 23 | k8s.io/apimachinery:k8s.io/apimachinery:force \ | ||
| 24 | k8s.io/kube-openapi:k8s.io/kube-openapi:force \ | ||
| 25 | github.com/moby/term:github.com/moby/term:force \ | ||
| 26 | github.com/docker/go:github.com/docker/go:force \ | ||
| 27 | github.com/docker/cli:github.com/docker/cli:force \ | ||
| 28 | github.com/r3labs/sse:github.com/r3labs/sse:force \ | ||
| 29 | github.com/mgutz/ansi:github.com/mgutz/ansi:force \ | ||
| 30 | github.com/pkg/errors:github.com/pkg/errors:force \ | ||
| 31 | github.com/spf13/cobra:github.com/spf13/cobra:force \ | ||
| 32 | github.com/spf13/pflag:github.com/spf13/pflag:force \ | ||
| 33 | google.golang.org/grpc:google.golang.org/grpc:force \ | ||
| 34 | github.com/gofrs/flock:github.com/gofrs/flock:force \ | ||
| 35 | github.com/google/uuid:github.com/google/uuid:force \ | ||
| 36 | github.com/gorilla/mux:github.com/gorilla/mux:force \ | ||
| 37 | github.com/moby/locker:github.com/moby/locker:force \ | ||
| 38 | github.com/rivo/uniseg:github.com/rivo/uniseg:force \ | ||
| 39 | github.com/buger/goterm:github.com/buger/goterm:force \ | ||
| 40 | github.com/morikuni/aec:github.com/morikuni/aec:force \ | ||
| 41 | github.com/otiai10/copy:github.com/otiai10/copy:force \ | ||
| 42 | github.com/beorn7/perks:github.com/beorn7/perks:force \ | ||
| 43 | github.com/go-logr/logr:github.com/go-logr/logr:force \ | ||
| 44 | github.com/go-logr/stdr:github.com/go-logr/stdr:force \ | ||
| 45 | github.com/google/shlex:github.com/google/shlex:force \ | ||
| 46 | github.com/miekg/pkcs11:github.com/miekg/pkcs11:force \ | ||
| 47 | github.com/otiai10/mint:github.com/otiai10/mint:force \ | ||
| 48 | github.com/x448/float16:github.com/x448/float16:force \ | ||
| 49 | github.com/docker/buildx:github.com/docker/buildx:force \ | ||
| 50 | github.com/docker/docker:github.com/docker/docker:force \ | ||
| 51 | github.com/google/go-cmp:github.com/google/go-cmp:force \ | ||
| 52 | github.com/moby/buildkit:github.com/moby/buildkit:force \ | ||
| 53 | go.opentelemetry.io/otel:go.opentelemetry.io/otel:force \ | ||
| 54 | github.com/aws/smithy-go:github.com/aws/smithy-go:force \ | ||
| 55 | github.com/gogo/protobuf:github.com/gogo/protobuf:force \ | ||
| 56 | github.com/google/gofuzz:github.com/google/gofuzz:force \ | ||
| 57 | github.com/imdario/mergo:github.com/imdario/mergo:force \ | ||
| 58 | github.com/containerd/log:github.com/containerd/log:force \ | ||
| 59 | github.com/zclconf/go-cty:github.com/zclconf/go-cty:force \ | ||
| 60 | github.com/davecgh/go-spew:github.com/davecgh/go-spew:force \ | ||
| 61 | github.com/docker/go-units:github.com/docker/go-units:force \ | ||
| 62 | github.com/mitchellh/go-ps:github.com/mitchellh/go-ps:force \ | ||
| 63 | github.com/sirupsen/logrus:github.com/sirupsen/logrus:force \ | ||
| 64 | github.com/go-openapi/swag:github.com/go-openapi/swag:force \ | ||
| 65 | github.com/golang/protobuf:github.com/golang/protobuf:force \ | ||
| 66 | github.com/mailru/easyjson:github.com/mailru/easyjson:force \ | ||
| 67 | github.com/mattn/go-isatty:github.com/mattn/go-isatty:force \ | ||
| 68 | github.com/moby/spdystream:github.com/moby/spdystream:force \ | ||
| 69 | github.com/mxk/go-flowrate:github.com/mxk/go-flowrate:force \ | ||
| 70 | google.golang.org/protobuf:google.golang.org/protobuf:force \ | ||
| 71 | github.com/moby/sys/user:github.com/moby/sys/user/user:force \ | ||
| 72 | github.com/stretchr/testify:github.com/stretchr/testify:force \ | ||
| 73 | github.com/containerd/ttrpc:github.com/containerd/ttrpc:force \ | ||
| 74 | github.com/josharian/intern:github.com/josharian/intern:force \ | ||
| 75 | github.com/json-iterator/go:github.com/json-iterator/go:force \ | ||
| 76 | github.com/serialx/hashring:github.com/serialx/hashring:force \ | ||
| 77 | github.com/tonistiigi/units:github.com/tonistiigi/units:force \ | ||
| 78 | github.com/tonistiigi/vt100:github.com/tonistiigi/vt100:force \ | ||
| 79 | github.com/eiannone/keyboard:github.com/eiannone/keyboard:force \ | ||
| 80 | github.com/fsnotify/fsevents:github.com/fsnotify/fsevents:force \ | ||
| 81 | github.com/tilt-dev/fsnotify:github.com/tilt-dev/fsnotify:force \ | ||
| 82 | github.com/Azure/go-ansiterm:github.com/Azure/go-ansiterm:force \ | ||
| 83 | github.com/aws/aws-sdk-go-v2:github.com/aws/aws-sdk-go-v2:force \ | ||
| 84 | github.com/cespare/xxhash/v2:github.com/cespare/xxhash/v2:force \ | ||
| 85 | github.com/docker/go-metrics:github.com/docker/go-metrics:force \ | ||
| 86 | github.com/felixge/httpsnoop:github.com/felixge/httpsnoop:force \ | ||
| 87 | github.com/fxamacker/cbor/v2:github.com/fxamacker/cbor/v2:force \ | ||
| 88 | github.com/gorilla/websocket:github.com/gorilla/websocket:force \ | ||
| 89 | github.com/hashicorp/errwrap:github.com/hashicorp/errwrap:force \ | ||
| 90 | github.com/munnerz/goautoneg:github.com/munnerz/goautoneg:force \ | ||
| 91 | github.com/pelletier/go-toml:github.com/pelletier/go-toml:force \ | ||
| 92 | github.com/prometheus/common:github.com/prometheus/common:force \ | ||
| 93 | github.com/prometheus/procfs:github.com/prometheus/procfs:force \ | ||
| 94 | github.com/tonistiigi/fsutil:github.com/tonistiigi/fsutil:force \ | ||
| 95 | gopkg.in/cenkalti/backoff.v1:gopkg.in/cenkalti/backoff.v1:force \ | ||
| 96 | github.com/Microsoft/go-winio:github.com/Microsoft/go-winio:force \ | ||
| 97 | github.com/acarl005/stripansi:github.com/acarl005/stripansi:force \ | ||
| 98 | github.com/containerd/console:github.com/containerd/console:force \ | ||
| 99 | github.com/containerd/errdefs:github.com/containerd/errdefs:force \ | ||
| 100 | github.com/fvbommel/sortorder:github.com/fvbommel/sortorder:force \ | ||
| 101 | github.com/klauspost/compress:github.com/klauspost/compress:force \ | ||
| 102 | github.com/mattn/go-colorable:github.com/mattn/go-colorable:force \ | ||
| 103 | github.com/mattn/go-runewidth:github.com/mattn/go-runewidth:force \ | ||
| 104 | github.com/modern-go/reflect2:github.com/modern-go/reflect2:force \ | ||
| 105 | github.com/pmezard/go-difflib:github.com/pmezard/go-difflib:force \ | ||
| 106 | github.com/moby/sys/signal:github.com/moby/sys/signal/signal:force \ | ||
| 107 | github.com/moby/sys/userns:github.com/moby/sys/userns/userns:force \ | ||
| 108 | github.com/jonboulle/clockwork:github.com/jonboulle/clockwork:force \ | ||
| 109 | github.com/mattn/go-shellwords:github.com/mattn/go-shellwords:force \ | ||
| 110 | github.com/moby/patternmatcher:github.com/moby/patternmatcher:force \ | ||
| 111 | go.opentelemetry.io/otel/sdk:go.opentelemetry.io/otel/sdk/sdk:force \ | ||
| 112 | github.com/cenkalti/backoff/v4:github.com/cenkalti/backoff/v4:force \ | ||
| 113 | github.com/docker/distribution:github.com/docker/distribution:force \ | ||
| 114 | github.com/shibumi/go-pathspec:github.com/shibumi/go-pathspec:force \ | ||
| 115 | github.com/containerd/platforms:github.com/containerd/platforms:force \ | ||
| 116 | github.com/docker/cli-docs-tool:github.com/docker/cli-docs-tool:force \ | ||
| 117 | github.com/hashicorp/go-version:github.com/hashicorp/go-version:force \ | ||
| 118 | github.com/moby/sys/symlink:github.com/moby/sys/symlink/symlink:force \ | ||
| 119 | github.com/modern-go/concurrent:github.com/modern-go/concurrent:force \ | ||
| 120 | github.com/xeipuuv/gojsonschema:github.com/xeipuuv/gojsonschema:force \ | ||
| 121 | github.com/AlecAivazis/survey/v2:github.com/AlecAivazis/survey/v2:force \ | ||
| 122 | github.com/docker/go-connections:github.com/docker/go-connections:force \ | ||
| 123 | github.com/Masterminds/semver/v3:github.com/Masterminds/semver/v3:force \ | ||
| 124 | github.com/containerd/continuity:github.com/containerd/continuity:force \ | ||
| 125 | github.com/containerd/typeurl/v2:github.com/containerd/typeurl/v2:force \ | ||
| 126 | github.com/cpuguy83/go-md2man/v2:github.com/cpuguy83/go-md2man/v2:force \ | ||
| 127 | github.com/google/gnostic-models:github.com/google/gnostic-models:force \ | ||
| 128 | github.com/xeipuuv/gojsonpointer:github.com/xeipuuv/gojsonpointer:force \ | ||
| 129 | go.opentelemetry.io/proto/otlp:go.opentelemetry.io/proto/otlp/otlp:force \ | ||
| 130 | github.com/distribution/reference:github.com/distribution/reference:force \ | ||
| 131 | github.com/mitchellh/mapstructure:github.com/mitchellh/mapstructure:force \ | ||
| 132 | github.com/skratchdot/open-golang:github.com/skratchdot/open-golang:force \ | ||
| 133 | go.opentelemetry.io/otel/trace:go.opentelemetry.io/otel/trace/trace:force \ | ||
| 134 | github.com/emicklei/go-restful/v3:github.com/emicklei/go-restful/v3:force \ | ||
| 135 | github.com/go-openapi/jsonpointer:github.com/go-openapi/jsonpointer:force \ | ||
| 136 | github.com/hashicorp/go-cleanhttp:github.com/hashicorp/go-cleanhttp:force \ | ||
| 137 | github.com/in-toto/in-toto-golang:github.com/in-toto/in-toto-golang:force \ | ||
| 138 | github.com/kballard/go-shellquote:github.com/kballard/go-shellquote:force \ | ||
| 139 | github.com/moby/docker-image-spec:github.com/moby/docker-image-spec:force \ | ||
| 140 | github.com/planetscale/vtprotobuf:github.com/planetscale/vtprotobuf:force \ | ||
| 141 | github.com/tonistiigi/go-csvvalue:github.com/tonistiigi/go-csvvalue:force \ | ||
| 142 | github.com/hashicorp/go-multierror:github.com/hashicorp/go-multierror:force \ | ||
| 143 | github.com/moby/sys/mountinfo:github.com/moby/sys/mountinfo/mountinfo:force \ | ||
| 144 | github.com/prometheus/client_model:github.com/prometheus/client_model:force \ | ||
| 145 | github.com/russross/blackfriday/v2:github.com/russross/blackfriday/v2:force \ | ||
| 146 | github.com/tonistiigi/dchapes-mode:github.com/tonistiigi/dchapes-mode:force \ | ||
| 147 | github.com/xeipuuv/gojsonreference:github.com/xeipuuv/gojsonreference:force \ | ||
| 148 | github.com/xhit/go-str2duration/v2:github.com/xhit/go-str2duration/v2:force \ | ||
| 149 | go.opentelemetry.io/otel/metric:go.opentelemetry.io/otel/metric/metric:force \ | ||
| 150 | github.com/containerd/containerd/v2:github.com/containerd/containerd/v2:force \ | ||
| 151 | github.com/opencontainers/go-digest:github.com/opencontainers/go-digest:force \ | ||
| 152 | github.com/containerd/errdefs/pkg:github.com/containerd/errdefs/pkg/pkg:force \ | ||
| 153 | github.com/go-openapi/jsonreference:github.com/go-openapi/jsonreference:force \ | ||
| 154 | github.com/go-viper/mapstructure/v2:github.com/go-viper/mapstructure/v2:force \ | ||
| 155 | github.com/prometheus/client_golang:github.com/prometheus/client_golang:force \ | ||
| 156 | github.com/moby/sys/capability:github.com/moby/sys/capability/capability:force \ | ||
| 157 | github.com/moby/sys/sequential:github.com/moby/sys/sequential/sequential:force \ | ||
| 158 | github.com/opencontainers/image-spec:github.com/opencontainers/image-spec:force \ | ||
| 159 | github.com/theupdateframework/notary:github.com/theupdateframework/notary:force \ | ||
| 160 | github.com/AdaLogics/go-fuzz-headers:github.com/AdaLogics/go-fuzz-headers:force \ | ||
| 161 | github.com/inconshreveable/mousetrap:github.com/inconshreveable/mousetrap:force \ | ||
| 162 | sigs.k8s.io/structured-merge-diff/v4:sigs.k8s.io/structured-merge-diff/v4:force \ | ||
| 163 | github.com/compose-spec/compose-go/v2:github.com/compose-spec/compose-go/v2:force \ | ||
| 164 | github.com/mitchellh/hashstructure/v2:github.com/mitchellh/hashstructure/v2:force \ | ||
| 165 | github.com/containerd/containerd/api:github.com/containerd/containerd/api/api:force \ | ||
| 166 | github.com/aws/aws-sdk-go-v2/config:github.com/aws/aws-sdk-go-v2/config/config:force \ | ||
| 167 | tags.cncf.io/container-device-interface:tags.cncf.io/container-device-interface:force \ | ||
| 168 | github.com/apparentlymart/go-textseg/v15:github.com/apparentlymart/go-textseg/v15:force \ | ||
| 169 | go.opentelemetry.io/otel/sdk/metric:go.opentelemetry.io/otel/sdk/metric/sdk/metric:force \ | ||
| 170 | github.com/grpc-ecosystem/grpc-gateway/v2:github.com/grpc-ecosystem/grpc-gateway/v2:force \ | ||
| 171 | github.com/docker/docker-credential-helpers:github.com/docker/docker-credential-helpers:force \ | ||
| 172 | github.com/aws/aws-sdk-go-v2/credentials:github.com/aws/aws-sdk-go-v2/credentials/credentials:force \ | ||
| 173 | github.com/aws/aws-sdk-go-v2/service/sso:github.com/aws/aws-sdk-go-v2/service/sso/service/sso:force \ | ||
| 174 | github.com/aws/aws-sdk-go-v2/service/sts:github.com/aws/aws-sdk-go-v2/service/sts/service/sts:force \ | ||
| 175 | github.com/aws/aws-sdk-go-v2/internal/ini:github.com/aws/aws-sdk-go-v2/internal/ini/internal/ini:force \ | ||
| 176 | google.golang.org/genproto/googleapis/api:google.golang.org/genproto/googleapis/api/googleapis/api:force \ | ||
| 177 | google.golang.org/genproto/googleapis/rpc:google.golang.org/genproto/googleapis/rpc/googleapis/rpc:force \ | ||
| 178 | github.com/secure-systems-lab/go-securesystemslib:github.com/secure-systems-lab/go-securesystemslib:force \ | ||
| 179 | github.com/aws/aws-sdk-go-v2/service/ssooidc:github.com/aws/aws-sdk-go-v2/service/ssooidc/service/ssooidc:force \ | ||
| 180 | github.com/aws/aws-sdk-go-v2/feature/ec2/imds:github.com/aws/aws-sdk-go-v2/feature/ec2/imds/feature/ec2/imds:force \ | ||
| 181 | github.com/aws/aws-sdk-go-v2/internal/endpoints/v2:github.com/aws/aws-sdk-go-v2/internal/endpoints/v2/internal/endpoints/v2:force \ | ||
| 182 | go.opentelemetry.io/otel/exporters/otlp/otlptrace:go.opentelemetry.io/otel/exporters/otlp/otlptrace/exporters/otlp/otlptrace:force \ | ||
| 183 | github.com/aws/aws-sdk-go-v2/internal/configsources:github.com/aws/aws-sdk-go-v2/internal/configsources/internal/configsources:force \ | ||
| 184 | github.com/aws/aws-sdk-go-v2/service/internal/presigned-url:github.com/aws/aws-sdk-go-v2/service/internal/presigned-url/service/internal/presigned-url:force \ | ||
| 185 | github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding:github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding/service/internal/accept-encoding:force \ | ||
| 186 | go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp:go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp/instrumentation/net/http/otelhttp:force \ | ||
| 187 | go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc:go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc/exporters/otlp/otlptrace/otlptracegrpc:force \ | ||
| 188 | go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp:go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp/exporters/otlp/otlptrace/otlptracehttp:force \ | ||
| 189 | go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc:go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc/exporters/otlp/otlpmetric/otlpmetricgrpc:force \ | ||
| 190 | go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp:go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp/exporters/otlp/otlpmetric/otlpmetrichttp:force \ | ||
| 191 | go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc:go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc/instrumentation/google.golang.org/grpc/otelgrpc:force \ | ||
| 192 | go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace:go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace/instrumentation/net/http/httptrace/otelhttptrace:force" | ||
| 193 | |||
| 194 | do_compile:prepend() { | ||
| 195 | cd ${S}/src/import | ||
| 196 | for s in $sites; do | ||
| 197 | site_dest=$(echo $s | cut -d: -f1) | ||
| 198 | site_source=$(echo $s | cut -d: -f2) | ||
| 199 | force_flag=$(echo $s | cut -d: -f3) | ||
| 200 | |||
| 201 | mkdir -p vendor.copy/$site_dest | ||
| 202 | |||
| 203 | # create a temporary exclude file | ||
| 204 | exclude_file=$(mktemp) | ||
| 205 | |||
| 206 | find vendor.fetch/$site_source -type d -print0 | \ | ||
| 207 | xargs -0 du -sBM 2>/dev/null | \ | ||
| 208 | awk '{if ($1+0 > 500) print substr($0, index($0,$2))}' | \ | ||
| 209 | sed 's|^vendor.fetch/||' > "$exclude_file" | ||
| 210 | |||
| 211 | if [ -n "$force_flag" ]; then | ||
| 212 | echo "[INFO] $site_dest: force copying .go files" | ||
| 213 | rm -rf vendor.copy/$site_dest | ||
| 214 | rsync -a \ | ||
| 215 | --exclude='vendor/' \ | ||
| 216 | --exclude='.git/' \ | ||
| 217 | --exclude-from="$exclude_file" \ | ||
| 218 | vendor.fetch/$site_source/ vendor.copy/$site_dest | ||
| 219 | else | ||
| 220 | if [ -n "$(ls -A vendor.copy/$site_dest/*.go 2> /dev/null)" ]; then | ||
| 221 | echo "[INFO] vendor.fetch/$site_source -> $site_dest: go copy skipped (files present)" | ||
| 222 | true | ||
| 223 | else | ||
| 224 | echo "[INFO] $site_dest: copying .go files" | ||
| 225 | rsync -a \ | ||
| 226 | --exclude='vendor/' \ | ||
| 227 | --exclude='.git/' \ | ||
| 228 | --exclude-from="$exclude_file" \ | ||
| 229 | vendor.fetch/$site_source/ vendor.copy/$site_dest | ||
| 230 | fi | ||
| 231 | fi | ||
| 232 | |||
| 233 | rm -f "$exclude_file" | ||
| 234 | done | ||
| 235 | } | ||
diff --git a/recipes-containers/docker-compose/src_uri.inc b/recipes-containers/docker-compose/src_uri.inc deleted file mode 100644 index 7b692f4f..00000000 --- a/recipes-containers/docker-compose/src_uri.inc +++ /dev/null | |||
| @@ -1,960 +0,0 @@ | |||
| 1 | # k8s.io/api v0.31.2 | ||
| 2 | # [1] git ls-remote https://github.com/kubernetes/api bc73ef70e18b6e2f1146ca60c99df5955bec647e | ||
| 3 | SRCREV_k8s.io-api = "bc73ef70e18b6e2f1146ca60c99df5955bec647e" | ||
| 4 | SRC_URI += "git://github.com/kubernetes/api;name=k8s.io-api;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/k8s.io/api" | ||
| 5 | |||
| 6 | # k8s.io/utils v0.0.0-20240711033017-18e509b52bc8 | ||
| 7 | # [1] git ls-remote https://github.com/kubernetes/utils 18e509b52bc851d6169db17631e99453021dea21 | ||
| 8 | SRCREV_utils = "18e509b52bc851d6169db17631e99453021dea21" | ||
| 9 | SRC_URI += "git://github.com/kubernetes/utils;name=utils;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/k8s.io/utils" | ||
| 10 | |||
| 11 | # k8s.io/klog/v2 v2.130.1 | ||
| 12 | # [1] git ls-remote https://github.com/kubernetes/klog 75663bb798999a49e3e4c0f2375ed5cca8164194 | ||
| 13 | SRCREV_klog-v2 = "75663bb798999a49e3e4c0f2375ed5cca8164194" | ||
| 14 | SRC_URI += "git://github.com/kubernetes/klog;name=klog-v2;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/k8s.io/klog/v2" | ||
| 15 | |||
| 16 | # gotest.tools/v3 v3.5.2 | ||
| 17 | # [1] git ls-remote https://github.com/gotestyourself/gotest.tools 0b81523ff268a1f1b0baf4a5da67e42fbb86880b | ||
| 18 | SRCREV_v3 = "0b81523ff268a1f1b0baf4a5da67e42fbb86880b" | ||
| 19 | SRC_URI += "git://github.com/gotestyourself/gotest.tools;name=v3;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/gotest.tools/v3" | ||
| 20 | |||
| 21 | # dario.cat/mergo v1.0.1 | ||
| 22 | # [1] git ls-remote https://github.com/imdario/mergo 59ea6a9cd9f9c60cb6b1c58476f76cd3172ccebf | ||
| 23 | SRCREV_mergo = "59ea6a9cd9f9c60cb6b1c58476f76cd3172ccebf" | ||
| 24 | SRC_URI += "git://github.com/imdario/mergo;name=mergo;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/dario.cat/mergo" | ||
| 25 | |||
| 26 | # gopkg.in/inf.v0 v0.9.1 | ||
| 27 | # [1] git ls-remote https://github.com/go-inf/inf d2d2541c53f18d2a059457998ce2876cc8e67cbf | ||
| 28 | SRCREV_inf.v0 = "d2d2541c53f18d2a059457998ce2876cc8e67cbf" | ||
| 29 | SRC_URI += "git://github.com/go-inf/inf;name=inf.v0;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/gopkg.in/inf.v0" | ||
| 30 | |||
| 31 | # go.uber.org/mock v0.5.0 | ||
| 32 | # [1] git ls-remote https://github.com/uber/mock a9c44d91ce00ef09603d3822452a4f9c8fefd278 | ||
| 33 | SRCREV_mock = "a9c44d91ce00ef09603d3822452a4f9c8fefd278" | ||
| 34 | SRC_URI += "git://github.com/uber/mock;name=mock;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/go.uber.org/mock" | ||
| 35 | |||
| 36 | # golang.org/x/exp v0.0.0-20241108190413-2d47ceb2692f | ||
| 37 | # [1] git ls-remote https://go.googlesource.com/exp 2d47ceb2692f22136c9ff680c192d3d19c5dd9e2 | ||
| 38 | SRCREV_exp = "2d47ceb2692f22136c9ff680c192d3d19c5dd9e2" | ||
| 39 | SRC_URI += "git://go.googlesource.com/exp;name=exp;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/golang.org/x/exp" | ||
| 40 | |||
| 41 | # golang.org/x/sys v0.30.0 | ||
| 42 | # [1] git ls-remote https://github.com/golang/sys 863b3c4ac4975ff758815fa8d01acb6771f37177 | ||
| 43 | SRCREV_sys = "863b3c4ac4975ff758815fa8d01acb6771f37177" | ||
| 44 | SRC_URI += "git://github.com/golang/sys;name=sys;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/golang.org/x/sys" | ||
| 45 | |||
| 46 | # gopkg.in/yaml.v3 v3.0.1 | ||
| 47 | # [1] git ls-remote https://github.com/go-yaml/yaml f6f7691b1fdeb513f56608cd2c32c51f8194bf51 | ||
| 48 | SRCREV_yaml.v3 = "f6f7691b1fdeb513f56608cd2c32c51f8194bf51" | ||
| 49 | SRC_URI += "git://github.com/go-yaml/yaml;name=yaml.v3;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/gopkg.in/yaml.v3" | ||
| 50 | |||
| 51 | # golang.org/x/net v0.33.0 | ||
| 52 | # [1] git ls-remote https://go.googlesource.com/net dfc720dfe0cfc125116068c20efcdcb5e4eab464 | ||
| 53 | SRCREV_net = "dfc720dfe0cfc125116068c20efcdcb5e4eab464" | ||
| 54 | SRC_URI += "git://go.googlesource.com/net;name=net;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/golang.org/x/net" | ||
| 55 | |||
| 56 | # gopkg.in/yaml.v2 v2.4.0 | ||
| 57 | # [1] git ls-remote https://github.com/go-yaml/yaml 7649d4548cb53a614db133b2a8ac1f31859dda8c | ||
| 58 | SRCREV_yaml.v2 = "7649d4548cb53a614db133b2a8ac1f31859dda8c" | ||
| 59 | SRC_URI += "git://github.com/go-yaml/yaml;name=yaml.v2;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/gopkg.in/yaml.v2" | ||
| 60 | |||
| 61 | # k8s.io/client-go v0.31.2 | ||
| 62 | # [1] git ls-remote https://github.com/kubernetes/client-go 270e5ab1714527c455865953da8ceba2810dbb50 | ||
| 63 | SRCREV_client-go = "270e5ab1714527c455865953da8ceba2810dbb50" | ||
| 64 | SRC_URI += "git://github.com/kubernetes/client-go;name=client-go;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/k8s.io/client-go" | ||
| 65 | |||
| 66 | # sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd | ||
| 67 | # [1] git ls-remote https://github.com/kubernetes-sigs/json bc3834ca7abd3a90f03ef00a27ad80cb892f9c21 | ||
| 68 | SRCREV_json = "bc3834ca7abd3a90f03ef00a27ad80cb892f9c21" | ||
| 69 | SRC_URI += "git://github.com/kubernetes-sigs/json;name=json;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/sigs.k8s.io/json" | ||
| 70 | |||
| 71 | # sigs.k8s.io/yaml v1.4.0 | ||
| 72 | # [1] git ls-remote https://github.com/kubernetes-sigs/yaml c3772b51db126345efe2dfe4ff8dac83b8141684 | ||
| 73 | SRCREV_yaml = "c3772b51db126345efe2dfe4ff8dac83b8141684" | ||
| 74 | SRC_URI += "git://github.com/kubernetes-sigs/yaml;name=yaml;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/sigs.k8s.io/yaml" | ||
| 75 | |||
| 76 | # golang.org/x/sync v0.11.0 | ||
| 77 | # [1] git ls-remote https://go.googlesource.com/sync fe3591bd8a96873abc98bb9d2d5c62f27efca3e9 | ||
| 78 | SRCREV_sync = "fe3591bd8a96873abc98bb9d2d5c62f27efca3e9" | ||
| 79 | SRC_URI += "git://go.googlesource.com/sync;name=sync;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/golang.org/x/sync" | ||
| 80 | |||
| 81 | # golang.org/x/term v0.27.0 | ||
| 82 | # [1] git ls-remote https://go.googlesource.com/term 442846aa8d80ebae61e0c2c58e041b92b9b33dc4 | ||
| 83 | SRCREV_x-term = "442846aa8d80ebae61e0c2c58e041b92b9b33dc4" | ||
| 84 | SRC_URI += "git://go.googlesource.com/term;name=x-term;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/golang.org/x/term" | ||
| 85 | |||
| 86 | # golang.org/x/text v0.21.0 | ||
| 87 | # [1] git ls-remote https://go.googlesource.com/text d42948e5579eb996bedb7df76c7ad57fae4e83c7 | ||
| 88 | SRCREV_text = "d42948e5579eb996bedb7df76c7ad57fae4e83c7" | ||
| 89 | SRC_URI += "git://go.googlesource.com/text;name=text;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/golang.org/x/text" | ||
| 90 | |||
| 91 | # golang.org/x/time v0.6.0 | ||
| 92 | # [1] git ls-remote https://go.googlesource.com/time 5d9ef583af632a0fcf95276fb38326f695c4fd5f | ||
| 93 | SRCREV_time = "5d9ef583af632a0fcf95276fb38326f695c4fd5f" | ||
| 94 | SRC_URI += "git://go.googlesource.com/time;name=time;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/golang.org/x/time" | ||
| 95 | |||
| 96 | # go.uber.org/goleak v1.3.0 | ||
| 97 | # [1] git ls-remote https://github.com/uber-go/goleak 31095c657c34bba405a8d480db27989aa5f60b9c | ||
| 98 | SRCREV_goleak = "31095c657c34bba405a8d480db27989aa5f60b9c" | ||
| 99 | SRC_URI += "git://github.com/uber-go/goleak;name=goleak;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/go.uber.org/goleak" | ||
| 100 | |||
| 101 | # golang.org/x/crypto v0.31.0 | ||
| 102 | # [1] git ls-remote https://go.googlesource.com/crypto b4f1988a35dee11ec3e05d6bf3e90b695fbd8909 | ||
| 103 | SRCREV_crypto = "b4f1988a35dee11ec3e05d6bf3e90b695fbd8909" | ||
| 104 | SRC_URI += "git://go.googlesource.com/crypto;name=crypto;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/golang.org/x/crypto" | ||
| 105 | |||
| 106 | # golang.org/x/oauth2 v0.24.0 | ||
| 107 | # [1] git ls-remote https://go.googlesource.com/oauth2 22134a41033e44c2cd074106770ab5b7ca910d15 | ||
| 108 | SRCREV_oauth2 = "22134a41033e44c2cd074106770ab5b7ca910d15" | ||
| 109 | SRC_URI += "git://go.googlesource.com/oauth2;name=oauth2;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/golang.org/x/oauth2" | ||
| 110 | |||
| 111 | # k8s.io/apimachinery v0.31.2 | ||
| 112 | # [1] git ls-remote https://github.com/kubernetes/apimachinery a8f449e276fe566efddb149992049c78f0088492 | ||
| 113 | SRCREV_apimachinery = "a8f449e276fe566efddb149992049c78f0088492" | ||
| 114 | SRC_URI += "git://github.com/kubernetes/apimachinery;name=apimachinery;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/k8s.io/apimachinery" | ||
| 115 | |||
| 116 | # k8s.io/kube-openapi v0.0.0-20240228011516-70dd3763d340 | ||
| 117 | # [1] git ls-remote https://github.com/kubernetes/kube-openapi 70dd3763d340b13ccc008be05cb1f59ff245dbfd | ||
| 118 | SRCREV_kube-openapi = "70dd3763d340b13ccc008be05cb1f59ff245dbfd" | ||
| 119 | SRC_URI += "git://github.com/kubernetes/kube-openapi;name=kube-openapi;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/k8s.io/kube-openapi" | ||
| 120 | |||
| 121 | # github.com/moby/term v0.5.2 | ||
| 122 | # [1] git ls-remote https://github.com/moby/term 6c1b69fecbac2753dcaf18718a7e9f9093c3760d | ||
| 123 | SRCREV_term = "6c1b69fecbac2753dcaf18718a7e9f9093c3760d" | ||
| 124 | SRC_URI += "git://github.com/moby/term;name=term;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/moby/term" | ||
| 125 | |||
| 126 | # github.com/docker/go v1.5.1-1.0.20160303222718-d30aec9fd63c | ||
| 127 | # [1] git ls-remote https://github.com/docker/go d30aec9fd63c35133f8f79c3412ad91a3b08be06 | ||
| 128 | SRCREV_go = "d30aec9fd63c35133f8f79c3412ad91a3b08be06" | ||
| 129 | SRC_URI += "git://github.com/docker/go;name=go;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/docker/go" | ||
| 130 | |||
| 131 | # github.com/docker/cli v28.0.1+incompatible | ||
| 132 | # [1] git ls-remote https://github.com/docker/cli 068a01ea9470df6494cc92d9e64e240805ae47a7 | ||
| 133 | SRCREV_cli = "068a01ea9470df6494cc92d9e64e240805ae47a7" | ||
| 134 | SRC_URI += "git://github.com/docker/cli;name=cli;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/docker/cli" | ||
| 135 | |||
| 136 | # github.com/r3labs/sse v0.0.0-20210224172625-26fe804710bc | ||
| 137 | # [1] git ls-remote https://github.com/r3labs/sse 26fe804710bc39ea7ea6636d36f27c438bd2c06f | ||
| 138 | SRCREV_sse = "26fe804710bc39ea7ea6636d36f27c438bd2c06f" | ||
| 139 | SRC_URI += "git://github.com/r3labs/sse;name=sse;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/r3labs/sse" | ||
| 140 | |||
| 141 | # github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b | ||
| 142 | # [1] git ls-remote https://github.com/mgutz/ansi 9520e82c474b0a04dd04f8a40959027271bab992 | ||
| 143 | SRCREV_ansi = "9520e82c474b0a04dd04f8a40959027271bab992" | ||
| 144 | SRC_URI += "git://github.com/mgutz/ansi;name=ansi;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/mgutz/ansi" | ||
| 145 | |||
| 146 | # github.com/pkg/errors v0.9.1 | ||
| 147 | # [1] git ls-remote https://github.com/pkg/errors 614d223910a179a466c1767a985424175c39b465 | ||
| 148 | SRCREV_errors = "614d223910a179a466c1767a985424175c39b465" | ||
| 149 | SRC_URI += "git://github.com/pkg/errors;name=errors;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/pkg/errors" | ||
| 150 | |||
| 151 | # github.com/spf13/cobra v1.9.1 | ||
| 152 | # [1] git ls-remote https://github.com/spf13/cobra 40b5bc1437a564fc795d388b23835e84f54cd1d1 | ||
| 153 | SRCREV_cobra = "40b5bc1437a564fc795d388b23835e84f54cd1d1" | ||
| 154 | SRC_URI += "git://github.com/spf13/cobra;name=cobra;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/spf13/cobra" | ||
| 155 | |||
| 156 | # github.com/spf13/pflag v1.0.6 | ||
| 157 | # [1] git ls-remote https://github.com/spf13/pflag 5ca813443bd2a4d9f46a253ea0407d23b3790713 | ||
| 158 | SRCREV_pflag = "5ca813443bd2a4d9f46a253ea0407d23b3790713" | ||
| 159 | SRC_URI += "git://github.com/spf13/pflag;name=pflag;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/spf13/pflag" | ||
| 160 | |||
| 161 | # google.golang.org/grpc v1.70.0 | ||
| 162 | # [1] git ls-remote https://github.com/grpc/grpc-go 98a0092952dd4d8443229c3a335ec592d9c40c9b | ||
| 163 | SRCREV_grpc = "98a0092952dd4d8443229c3a335ec592d9c40c9b" | ||
| 164 | SRC_URI += "git://github.com/grpc/grpc-go;name=grpc;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/google.golang.org/grpc" | ||
| 165 | |||
| 166 | # github.com/gofrs/flock v0.12.1 | ||
| 167 | # [1] git ls-remote https://github.com/gofrs/flock 9de625d921bf362f81e0760056fdff11c8542435 | ||
| 168 | SRCREV_flock = "9de625d921bf362f81e0760056fdff11c8542435" | ||
| 169 | SRC_URI += "git://github.com/gofrs/flock;name=flock;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/gofrs/flock" | ||
| 170 | |||
| 171 | # github.com/google/uuid v1.6.0 | ||
| 172 | # [1] git ls-remote https://github.com/google/uuid 0f11ee6918f41a04c201eceeadf612a377bc7fbc | ||
| 173 | SRCREV_uuid = "0f11ee6918f41a04c201eceeadf612a377bc7fbc" | ||
| 174 | SRC_URI += "git://github.com/google/uuid;name=uuid;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/google/uuid" | ||
| 175 | |||
| 176 | # github.com/gorilla/mux v1.8.1 | ||
| 177 | # [1] git ls-remote https://github.com/gorilla/mux b4617d0b9670ad14039b2739167fd35a60f557c5 | ||
| 178 | SRCREV_mux = "b4617d0b9670ad14039b2739167fd35a60f557c5" | ||
| 179 | SRC_URI += "git://github.com/gorilla/mux;name=mux;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/gorilla/mux" | ||
| 180 | |||
| 181 | # github.com/moby/locker v1.0.1 | ||
| 182 | # [1] git ls-remote https://github.com/moby/locker 281af2d563954745bea9d1487c965f24d30742fe | ||
| 183 | SRCREV_locker = "281af2d563954745bea9d1487c965f24d30742fe" | ||
| 184 | SRC_URI += "git://github.com/moby/locker;name=locker;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/moby/locker" | ||
| 185 | |||
| 186 | # github.com/rivo/uniseg v0.2.0 | ||
| 187 | # [1] git ls-remote https://github.com/rivo/uniseg 75711fccf6a3e85bc74c241e2dddd06a9bc9e53d | ||
| 188 | SRCREV_uniseg = "75711fccf6a3e85bc74c241e2dddd06a9bc9e53d" | ||
| 189 | SRC_URI += "git://github.com/rivo/uniseg;name=uniseg;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/rivo/uniseg" | ||
| 190 | |||
| 191 | # github.com/buger/goterm v1.0.4 | ||
| 192 | # [1] git ls-remote https://github.com/buger/goterm a73545aae7d693f786ce4cc687460efca4845f31 | ||
| 193 | SRCREV_goterm = "a73545aae7d693f786ce4cc687460efca4845f31" | ||
| 194 | SRC_URI += "git://github.com/buger/goterm;name=goterm;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/buger/goterm" | ||
| 195 | |||
| 196 | # github.com/morikuni/aec v1.0.0 | ||
| 197 | # [1] git ls-remote https://github.com/morikuni/aec 39771216ff4c63d11f5e604076f9c45e8be1067b | ||
| 198 | SRCREV_aec = "39771216ff4c63d11f5e604076f9c45e8be1067b" | ||
| 199 | SRC_URI += "git://github.com/morikuni/aec;name=aec;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/morikuni/aec" | ||
| 200 | |||
| 201 | # github.com/otiai10/copy v1.14.1 | ||
| 202 | # [1] git ls-remote https://github.com/otiai10/copy 5ef5923d6ff098ea7a51792c1ec963d04fad9794 | ||
| 203 | SRCREV_copy = "5ef5923d6ff098ea7a51792c1ec963d04fad9794" | ||
| 204 | SRC_URI += "git://github.com/otiai10/copy;name=copy;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/otiai10/copy" | ||
| 205 | |||
| 206 | # github.com/beorn7/perks v1.0.1 | ||
| 207 | # [1] git ls-remote https://github.com/beorn7/perks 37c8de3658fcb183f997c4e13e8337516ab753e6 | ||
| 208 | SRCREV_perks = "37c8de3658fcb183f997c4e13e8337516ab753e6" | ||
| 209 | SRC_URI += "git://github.com/beorn7/perks;name=perks;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/beorn7/perks" | ||
| 210 | |||
| 211 | # github.com/go-logr/logr v1.4.2 | ||
| 212 | # [1] git ls-remote https://github.com/go-logr/logr 1205f429d540b8b81c2b75a38943afb738dac223 | ||
| 213 | SRCREV_logr = "1205f429d540b8b81c2b75a38943afb738dac223" | ||
| 214 | SRC_URI += "git://github.com/go-logr/logr;name=logr;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/go-logr/logr" | ||
| 215 | |||
| 216 | # github.com/go-logr/stdr v1.2.2 | ||
| 217 | # [1] git ls-remote https://github.com/go-logr/stdr 521af2addfa7c81c8a65d0e85ed34bb6bb6dc262 | ||
| 218 | SRCREV_stdr = "521af2addfa7c81c8a65d0e85ed34bb6bb6dc262" | ||
| 219 | SRC_URI += "git://github.com/go-logr/stdr;name=stdr;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/go-logr/stdr" | ||
| 220 | |||
| 221 | # github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 | ||
| 222 | # [1] git ls-remote https://github.com/google/shlex e7afc7fbc51079733e9468cdfd1efcd7d196cd1d | ||
| 223 | SRCREV_shlex = "e7afc7fbc51079733e9468cdfd1efcd7d196cd1d" | ||
| 224 | SRC_URI += "git://github.com/google/shlex;name=shlex;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/google/shlex" | ||
| 225 | |||
| 226 | # github.com/miekg/pkcs11 v1.1.1 | ||
| 227 | # [1] git ls-remote https://github.com/miekg/pkcs11 f3481918a208bd212aa995a41f92d786eb418a7d | ||
| 228 | SRCREV_pkcs11 = "f3481918a208bd212aa995a41f92d786eb418a7d" | ||
| 229 | SRC_URI += "git://github.com/miekg/pkcs11;name=pkcs11;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/miekg/pkcs11" | ||
| 230 | |||
| 231 | # github.com/otiai10/mint v1.6.3 | ||
| 232 | # [1] git ls-remote https://github.com/otiai10/mint 6dcf2e3a67310fd0fbd970199f187f5c575756c9 | ||
| 233 | SRCREV_mint = "6dcf2e3a67310fd0fbd970199f187f5c575756c9" | ||
| 234 | SRC_URI += "git://github.com/otiai10/mint;name=mint;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/otiai10/mint" | ||
| 235 | |||
| 236 | # github.com/x448/float16 v0.8.4 | ||
| 237 | # [1] git ls-remote https://github.com/x448/float16 cb9afec31f2649663ebb64da5c6c32c3d365c3ca | ||
| 238 | SRCREV_float16 = "cb9afec31f2649663ebb64da5c6c32c3d365c3ca" | ||
| 239 | SRC_URI += "git://github.com/x448/float16;name=float16;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/x448/float16" | ||
| 240 | |||
| 241 | # github.com/docker/buildx v0.21.2 | ||
| 242 | # [1] git ls-remote https://github.com/docker/buildx 1360a9e8d25a2c3d03c2776d53ae62e6ff0a843d | ||
| 243 | SRCREV_buildx = "1360a9e8d25a2c3d03c2776d53ae62e6ff0a843d" | ||
| 244 | SRC_URI += "git://github.com/docker/buildx;name=buildx;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/docker/buildx" | ||
| 245 | |||
| 246 | # github.com/docker/docker v28.0.1+incompatible | ||
| 247 | # [1] git ls-remote https://github.com/moby/moby bbd0a17ccc67e48d4a69393287b7fcc4f0578683 | ||
| 248 | SRCREV_docker = "bbd0a17ccc67e48d4a69393287b7fcc4f0578683" | ||
| 249 | SRC_URI += "git://github.com/moby/moby;name=docker;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/docker/docker" | ||
| 250 | |||
| 251 | # github.com/google/go-cmp v0.7.0 | ||
| 252 | # [1] git ls-remote https://github.com/google/go-cmp 9b12f366a942ebc7254abc7f32ca05068b455fb7 | ||
| 253 | SRCREV_go-cmp = "9b12f366a942ebc7254abc7f32ca05068b455fb7" | ||
| 254 | SRC_URI += "git://github.com/google/go-cmp;name=go-cmp;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/google/go-cmp" | ||
| 255 | |||
| 256 | # github.com/moby/buildkit v0.20.0 | ||
| 257 | # [1] git ls-remote https://github.com/moby/buildkit 121ecd5b9083b8eef32183cd404dd13e15b4a3df | ||
| 258 | SRCREV_buildkit = "121ecd5b9083b8eef32183cd404dd13e15b4a3df" | ||
| 259 | SRC_URI += "git://github.com/moby/buildkit;name=buildkit;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/moby/buildkit" | ||
| 260 | |||
| 261 | # go.opentelemetry.io/otel v1.32.0 | ||
| 262 | # [1] git ls-remote https://github.com/open-telemetry/opentelemetry-go 7cfbd86a605c85e598eca9a899f6176b17076f4f | ||
| 263 | SRCREV_otel = "7cfbd86a605c85e598eca9a899f6176b17076f4f" | ||
| 264 | SRC_URI += "git://github.com/open-telemetry/opentelemetry-go;name=otel;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/go.opentelemetry.io/otel" | ||
| 265 | |||
| 266 | # github.com/aws/smithy-go v1.20.3 | ||
| 267 | # [1] git ls-remote https://github.com/aws/smithy-go 07bbd001753f9633a614f6c0949d3d73142433d0 | ||
| 268 | SRCREV_smithy-go = "07bbd001753f9633a614f6c0949d3d73142433d0" | ||
| 269 | SRC_URI += "git://github.com/aws/smithy-go;name=smithy-go;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/aws/smithy-go" | ||
| 270 | |||
| 271 | # github.com/gogo/protobuf v1.3.2 | ||
| 272 | # [1] git ls-remote https://github.com/gogo/protobuf b03c65ea87cdc3521ede29f62fe3ce239267c1bc | ||
| 273 | SRCREV_protobuf = "b03c65ea87cdc3521ede29f62fe3ce239267c1bc" | ||
| 274 | SRC_URI += "git://github.com/gogo/protobuf;name=protobuf;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/gogo/protobuf" | ||
| 275 | |||
| 276 | # github.com/google/gofuzz v1.2.0 | ||
| 277 | # [1] git ls-remote https://github.com/google/gofuzz 379e164120fbc98885a8f494b5aa41ba94f64c56 | ||
| 278 | SRCREV_gofuzz = "379e164120fbc98885a8f494b5aa41ba94f64c56" | ||
| 279 | SRC_URI += "git://github.com/google/gofuzz;name=gofuzz;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/google/gofuzz" | ||
| 280 | |||
| 281 | # github.com/imdario/mergo v0.3.16 | ||
| 282 | # [1] git ls-remote https://github.com/darccio/mergo 14fe2b165b83359196f820886a2b24f2771729e9 | ||
| 283 | SRCREV_imdario-mergo = "14fe2b165b83359196f820886a2b24f2771729e9" | ||
| 284 | SRC_URI += "git://github.com/darccio/mergo;name=imdario-mergo;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/imdario/mergo" | ||
| 285 | |||
| 286 | # github.com/moby/sys/user v0.3.0 | ||
| 287 | # [1] git ls-remote https://github.com/moby/sys 54475191138bd297c627eb1a59e1e54b953957f1 | ||
| 288 | SRCREV_user = "54475191138bd297c627eb1a59e1e54b953957f1" | ||
| 289 | SRC_URI += "git://github.com/moby/sys;name=user;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/moby/sys/user" | ||
| 290 | |||
| 291 | # github.com/containerd/log v0.1.0 | ||
| 292 | # [1] git ls-remote https://github.com/containerd/log 0fc1e28871fdf2786e2cc51bbe4133db6547a199 | ||
| 293 | SRCREV_log = "0fc1e28871fdf2786e2cc51bbe4133db6547a199" | ||
| 294 | SRC_URI += "git://github.com/containerd/log;name=log;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/containerd/log" | ||
| 295 | |||
| 296 | # github.com/zclconf/go-cty v1.16.0 | ||
| 297 | # [1] git ls-remote https://github.com/zclconf/go-cty 6e06defc5f817971ab942989ad06752e13446c9c | ||
| 298 | SRCREV_go-cty = "6e06defc5f817971ab942989ad06752e13446c9c" | ||
| 299 | SRC_URI += "git://github.com/zclconf/go-cty;name=go-cty;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/zclconf/go-cty" | ||
| 300 | |||
| 301 | # github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc | ||
| 302 | # [1] git ls-remote https://github.com/davecgh/go-spew d8f796af33cc11cb798c1aaeb27a4ebc5099927d | ||
| 303 | SRCREV_go-spew = "d8f796af33cc11cb798c1aaeb27a4ebc5099927d" | ||
| 304 | SRC_URI += "git://github.com/davecgh/go-spew;name=go-spew;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/davecgh/go-spew" | ||
| 305 | |||
| 306 | # github.com/docker/go-units v0.5.0 | ||
| 307 | # [1] git ls-remote https://github.com/docker/go-units e682442797b36348f8e1f98defdbf32bac0b6c6f | ||
| 308 | SRCREV_go-units = "e682442797b36348f8e1f98defdbf32bac0b6c6f" | ||
| 309 | SRC_URI += "git://github.com/docker/go-units;name=go-units;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/docker/go-units" | ||
| 310 | |||
| 311 | # github.com/mitchellh/go-ps v1.0.0 | ||
| 312 | # [1] git ls-remote https://github.com/mitchellh/go-ps 147ff83818ae939913b2e20b91ae3cd6c391771c | ||
| 313 | SRCREV_go-ps = "147ff83818ae939913b2e20b91ae3cd6c391771c" | ||
| 314 | SRC_URI += "git://github.com/mitchellh/go-ps;name=go-ps;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/mitchellh/go-ps" | ||
| 315 | |||
| 316 | # github.com/sirupsen/logrus v1.9.3 | ||
| 317 | # [1] git ls-remote https://github.com/sirupsen/logrus d40e25cd45ed9c6b2b66e6b97573a0413e4c23bd | ||
| 318 | SRCREV_logrus = "d40e25cd45ed9c6b2b66e6b97573a0413e4c23bd" | ||
| 319 | SRC_URI += "git://github.com/sirupsen/logrus;name=logrus;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/sirupsen/logrus" | ||
| 320 | |||
| 321 | # github.com/go-openapi/swag v0.22.4 | ||
| 322 | # [1] git ls-remote https://github.com/go-openapi/swag f28dd7aae5534e2e3681204c90019f1dda8a7393 | ||
| 323 | SRCREV_swag = "f28dd7aae5534e2e3681204c90019f1dda8a7393" | ||
| 324 | SRC_URI += "git://github.com/go-openapi/swag;name=swag;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/go-openapi/swag" | ||
| 325 | |||
| 326 | # github.com/golang/protobuf v1.5.4 | ||
| 327 | # [1] git ls-remote https://github.com/golang/protobuf 75de7c059e36b64f01d0dd234ff2fff404ec3374 | ||
| 328 | SRCREV_golang-protobuf = "75de7c059e36b64f01d0dd234ff2fff404ec3374" | ||
| 329 | SRC_URI += "git://github.com/golang/protobuf;name=golang-protobuf;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/golang/protobuf" | ||
| 330 | |||
| 331 | # github.com/mailru/easyjson v0.7.7 | ||
| 332 | # [1] git ls-remote https://github.com/mailru/easyjson c120ca7ced6051261161ce15e8f1542a4b2567fc | ||
| 333 | SRCREV_easyjson = "c120ca7ced6051261161ce15e8f1542a4b2567fc" | ||
| 334 | SRC_URI += "git://github.com/mailru/easyjson;name=easyjson;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/mailru/easyjson" | ||
| 335 | |||
| 336 | # github.com/mattn/go-isatty v0.0.17 | ||
| 337 | # [1] git ls-remote https://github.com/mattn/go-isatty ed75e619dc0f0489fd4062163a7d061eaa249b9c | ||
| 338 | SRCREV_go-isatty = "ed75e619dc0f0489fd4062163a7d061eaa249b9c" | ||
| 339 | SRC_URI += "git://github.com/mattn/go-isatty;name=go-isatty;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/mattn/go-isatty" | ||
| 340 | |||
| 341 | # github.com/moby/spdystream v0.4.0 | ||
| 342 | # [1] git ls-remote https://github.com/moby/spdystream 258380da5f17ec2c26272bcb91a61d592fcb0105 | ||
| 343 | SRCREV_spdystream = "258380da5f17ec2c26272bcb91a61d592fcb0105" | ||
| 344 | SRC_URI += "git://github.com/moby/spdystream;name=spdystream;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/moby/spdystream" | ||
| 345 | |||
| 346 | # github.com/moby/sys/signal v0.7.1 | ||
| 347 | # [1] git ls-remote https://github.com/moby/sys cafbe42351600ca9b363e220722f66d96f6e71f4 | ||
| 348 | SRCREV_signal = "cafbe42351600ca9b363e220722f66d96f6e71f4" | ||
| 349 | SRC_URI += "git://github.com/moby/sys;name=signal;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/moby/sys/signal" | ||
| 350 | |||
| 351 | # github.com/moby/sys/userns v0.1.0 | ||
| 352 | # [1] git ls-remote https://github.com/moby/sys 54475191138bd297c627eb1a59e1e54b953957f1 | ||
| 353 | SRCREV_userns = "54475191138bd297c627eb1a59e1e54b953957f1" | ||
| 354 | SRC_URI += "git://github.com/moby/sys;name=userns;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/moby/sys/userns" | ||
| 355 | |||
| 356 | # github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f | ||
| 357 | # [1] git ls-remote https://github.com/mxk/go-flowrate cca7078d478f8520f85629ad7c68962d31ed7682 | ||
| 358 | SRCREV_go-flowrate = "cca7078d478f8520f85629ad7c68962d31ed7682" | ||
| 359 | SRC_URI += "git://github.com/mxk/go-flowrate;name=go-flowrate;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/mxk/go-flowrate" | ||
| 360 | |||
| 361 | # google.golang.org/protobuf v1.35.2 | ||
| 362 | # [1] git ls-remote https://github.com/protocolbuffers/protobuf-go c72053a9062dd4bc86a75c21f5d8134136ccbf2e | ||
| 363 | SRCREV_google.golang.org-protobuf = "c72053a9062dd4bc86a75c21f5d8134136ccbf2e" | ||
| 364 | SRC_URI += "git://github.com/protocolbuffers/protobuf-go;name=google.golang.org-protobuf;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/google.golang.org/protobuf" | ||
| 365 | |||
| 366 | # github.com/stretchr/testify v1.10.0 | ||
| 367 | # [1] git ls-remote https://github.com/stretchr/testify 89cbdd9e7b39eb58896d316a7495597d3aba4371 | ||
| 368 | SRCREV_testify = "89cbdd9e7b39eb58896d316a7495597d3aba4371" | ||
| 369 | SRC_URI += "git://github.com/stretchr/testify;name=testify;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/stretchr/testify" | ||
| 370 | |||
| 371 | # github.com/containerd/ttrpc v1.2.7 | ||
| 372 | # [1] git ls-remote https://github.com/containerd/ttrpc 3b8c8b75577584e412043afb7b561193a4a47d2e | ||
| 373 | SRCREV_ttrpc = "3b8c8b75577584e412043afb7b561193a4a47d2e" | ||
| 374 | SRC_URI += "git://github.com/containerd/ttrpc;name=ttrpc;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/containerd/ttrpc" | ||
| 375 | |||
| 376 | # github.com/josharian/intern v1.0.0 | ||
| 377 | # [1] git ls-remote https://github.com/josharian/intern 8e6ff32b3e7c0b018c43953085fe2ac330fe9acd | ||
| 378 | SRCREV_intern = "8e6ff32b3e7c0b018c43953085fe2ac330fe9acd" | ||
| 379 | SRC_URI += "git://github.com/josharian/intern;name=intern;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/josharian/intern" | ||
| 380 | |||
| 381 | # github.com/json-iterator/go v1.1.12 | ||
| 382 | # [1] git ls-remote https://github.com/json-iterator/go 024077e996b048517130b21ea6bf12aa23055d3d | ||
| 383 | SRCREV_json-iterator-go = "024077e996b048517130b21ea6bf12aa23055d3d" | ||
| 384 | SRC_URI += "git://github.com/json-iterator/go;name=json-iterator-go;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/json-iterator/go" | ||
| 385 | |||
| 386 | # github.com/moby/sys/symlink v0.3.0 | ||
| 387 | # [1] git ls-remote https://github.com/moby/sys cafbe42351600ca9b363e220722f66d96f6e71f4 | ||
| 388 | SRCREV_symlink = "cafbe42351600ca9b363e220722f66d96f6e71f4" | ||
| 389 | SRC_URI += "git://github.com/moby/sys;name=symlink;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/moby/sys/symlink" | ||
| 390 | |||
| 391 | # github.com/serialx/hashring v0.0.0-20200727003509-22c0c7ab6b1b | ||
| 392 | # [1] git ls-remote https://github.com/serialx/hashring 22c0c7ab6b1be4be7b950bae8b117767da7b18b6 | ||
| 393 | SRCREV_hashring = "22c0c7ab6b1be4be7b950bae8b117767da7b18b6" | ||
| 394 | SRC_URI += "git://github.com/serialx/hashring;name=hashring;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/serialx/hashring" | ||
| 395 | |||
| 396 | # github.com/tonistiigi/units v0.0.0-20180711220420-6950e57a87ea | ||
| 397 | # [1] git ls-remote https://github.com/tonistiigi/units 6950e57a87eaf136bbe44ef2ec8e75b9e3569de2 | ||
| 398 | SRCREV_units = "6950e57a87eaf136bbe44ef2ec8e75b9e3569de2" | ||
| 399 | SRC_URI += "git://github.com/tonistiigi/units;name=units;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/tonistiigi/units" | ||
| 400 | |||
| 401 | # github.com/tonistiigi/vt100 v0.0.0-20240514184818-90bafcd6abab | ||
| 402 | # [1] git ls-remote https://github.com/tonistiigi/vt100 90bafcd6abab5dc87970f00165ee2022806709fd | ||
| 403 | SRCREV_vt100 = "90bafcd6abab5dc87970f00165ee2022806709fd" | ||
| 404 | SRC_URI += "git://github.com/tonistiigi/vt100;name=vt100;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/tonistiigi/vt100" | ||
| 405 | |||
| 406 | # github.com/eiannone/keyboard v0.0.0-20220611211555-0d226195f203 | ||
| 407 | # [1] git ls-remote https://github.com/eiannone/keyboard 0d226195f2038e282bb90d2e24f7f29aa7c5b210 | ||
| 408 | SRCREV_keyboard = "0d226195f2038e282bb90d2e24f7f29aa7c5b210" | ||
| 409 | SRC_URI += "git://github.com/eiannone/keyboard;name=keyboard;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/eiannone/keyboard" | ||
| 410 | |||
| 411 | # github.com/fsnotify/fsevents v0.2.0 | ||
| 412 | # [1] git ls-remote https://github.com/fsnotify/fsevents f73112e4ef0540a922ff546752e95a70fb8f035d | ||
| 413 | SRCREV_fsevents = "f73112e4ef0540a922ff546752e95a70fb8f035d" | ||
| 414 | SRC_URI += "git://github.com/fsnotify/fsevents;name=fsevents;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/fsnotify/fsevents" | ||
| 415 | |||
| 416 | # github.com/tilt-dev/fsnotify v1.4.8-0.20220602155310-fff9c274a375 | ||
| 417 | # [1] git ls-remote https://github.com/tilt-dev/fsnotify fff9c274a375301ae46812f257aa68393790c45b | ||
| 418 | SRCREV_fsnotify = "fff9c274a375301ae46812f257aa68393790c45b" | ||
| 419 | SRC_URI += "git://github.com/tilt-dev/fsnotify;name=fsnotify;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/tilt-dev/fsnotify" | ||
| 420 | |||
| 421 | # go.opentelemetry.io/otel/sdk v1.32.0 | ||
| 422 | # [1] git ls-remote https://github.com/open-telemetry/opentelemetry-go 7cfbd86a605c85e598eca9a899f6176b17076f4f | ||
| 423 | SRCREV_sdk = "7cfbd86a605c85e598eca9a899f6176b17076f4f" | ||
| 424 | SRC_URI += "git://github.com/open-telemetry/opentelemetry-go;name=sdk;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/go.opentelemetry.io/otel/sdk" | ||
| 425 | |||
| 426 | # github.com/Azure/go-ansiterm v0.0.0-20250102033503-faa5f7b0171c | ||
| 427 | # [1] git ls-remote https://github.com/Azure/go-ansiterm faa5f7b0171c46bb398a91b4a0c906324d3664cf | ||
| 428 | SRCREV_go-ansiterm = "faa5f7b0171c46bb398a91b4a0c906324d3664cf" | ||
| 429 | SRC_URI += "git://github.com/Azure/go-ansiterm;name=go-ansiterm;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/Azure/go-ansiterm" | ||
| 430 | |||
| 431 | # github.com/aws/aws-sdk-go-v2 v1.30.3 | ||
| 432 | # [1] git ls-remote https://github.com/aws/aws-sdk-go-v2 0599931efcf551dc63f84ec669d7fb5cfe14f64c | ||
| 433 | SRCREV_aws-sdk-go-v2 = "0599931efcf551dc63f84ec669d7fb5cfe14f64c" | ||
| 434 | SRC_URI += "git://github.com/aws/aws-sdk-go-v2;name=aws-sdk-go-v2;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/aws/aws-sdk-go-v2" | ||
| 435 | |||
| 436 | # github.com/cespare/xxhash/v2 v2.3.0 | ||
| 437 | # [1] git ls-remote https://github.com/cespare/xxhash 998dce232f17418a7a5721ecf87ca714025a3243 | ||
| 438 | SRCREV_xxhash-v2 = "998dce232f17418a7a5721ecf87ca714025a3243" | ||
| 439 | SRC_URI += "git://github.com/cespare/xxhash;name=xxhash-v2;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/cespare/xxhash/v2" | ||
| 440 | |||
| 441 | # github.com/docker/go-metrics v0.0.1 | ||
| 442 | # [1] git ls-remote https://github.com/docker/go-metrics b619b3592b65de4f087d9f16863a7e6ff905973c | ||
| 443 | SRCREV_go-metrics = "b619b3592b65de4f087d9f16863a7e6ff905973c" | ||
| 444 | SRC_URI += "git://github.com/docker/go-metrics;name=go-metrics;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/docker/go-metrics" | ||
| 445 | |||
| 446 | # github.com/felixge/httpsnoop v1.0.4 | ||
| 447 | # [1] git ls-remote https://github.com/felixge/httpsnoop c5817c27ec125409c069052fdd171023c353501c | ||
| 448 | SRCREV_httpsnoop = "c5817c27ec125409c069052fdd171023c353501c" | ||
| 449 | SRC_URI += "git://github.com/felixge/httpsnoop;name=httpsnoop;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/felixge/httpsnoop" | ||
| 450 | |||
| 451 | # github.com/fxamacker/cbor/v2 v2.7.0 | ||
| 452 | # [1] git ls-remote https://github.com/fxamacker/cbor 02b69dbb52f4ecf450b3aa5e9a04b7a0b4bf409a | ||
| 453 | SRCREV_cbor-v2 = "02b69dbb52f4ecf450b3aa5e9a04b7a0b4bf409a" | ||
| 454 | SRC_URI += "git://github.com/fxamacker/cbor;name=cbor-v2;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/fxamacker/cbor/v2" | ||
| 455 | |||
| 456 | # github.com/gorilla/websocket v1.5.0 | ||
| 457 | # [1] git ls-remote https://github.com/gorilla/websocket 9111bb834a68b893cebbbaed5060bdbc1d9ab7d2 | ||
| 458 | SRCREV_websocket = "9111bb834a68b893cebbbaed5060bdbc1d9ab7d2" | ||
| 459 | SRC_URI += "git://github.com/gorilla/websocket;name=websocket;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/gorilla/websocket" | ||
| 460 | |||
| 461 | # github.com/hashicorp/errwrap v1.1.0 | ||
| 462 | # [1] git ls-remote https://github.com/hashicorp/errwrap 7b00e5db719c64d14dd0caaacbd13e76254d02c0 | ||
| 463 | SRCREV_errwrap = "7b00e5db719c64d14dd0caaacbd13e76254d02c0" | ||
| 464 | SRC_URI += "git://github.com/hashicorp/errwrap;name=errwrap;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/hashicorp/errwrap" | ||
| 465 | |||
| 466 | # github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 | ||
| 467 | # [1] git ls-remote https://github.com/munnerz/goautoneg a7dc8b61c822528f973a5e4e7b272055c6fdb43e | ||
| 468 | SRCREV_goautoneg = "a7dc8b61c822528f973a5e4e7b272055c6fdb43e" | ||
| 469 | SRC_URI += "git://github.com/munnerz/goautoneg;name=goautoneg;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/munnerz/goautoneg" | ||
| 470 | |||
| 471 | # github.com/pelletier/go-toml v1.9.5 | ||
| 472 | # [1] git ls-remote https://github.com/pelletier/go-toml fed1464066413075eac02cd4dc368b5221845541 | ||
| 473 | SRCREV_go-toml = "fed1464066413075eac02cd4dc368b5221845541" | ||
| 474 | SRC_URI += "git://github.com/pelletier/go-toml;name=go-toml;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/pelletier/go-toml" | ||
| 475 | |||
| 476 | # github.com/prometheus/common v0.55.0 | ||
| 477 | # [1] git ls-remote https://github.com/prometheus/common 0c7b585c7da330aae136aaa874cb4f89f5b3e5d9 | ||
| 478 | SRCREV_common = "0c7b585c7da330aae136aaa874cb4f89f5b3e5d9" | ||
| 479 | SRC_URI += "git://github.com/prometheus/common;name=common;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/prometheus/common" | ||
| 480 | |||
| 481 | # github.com/prometheus/procfs v0.15.1 | ||
| 482 | # [1] git ls-remote https://github.com/prometheus/procfs 51919fd4b9d0aaca69854ac81bdeda5f96dab366 | ||
| 483 | SRCREV_procfs = "51919fd4b9d0aaca69854ac81bdeda5f96dab366" | ||
| 484 | SRC_URI += "git://github.com/prometheus/procfs;name=procfs;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/prometheus/procfs" | ||
| 485 | |||
| 486 | # github.com/tonistiigi/fsutil v0.0.0-20250113203817-b14e27f4135a | ||
| 487 | # [1] git ls-remote https://github.com/tonistiigi/fsutil b14e27f4135ab262f0252f9f0e8749fd7ba3680f | ||
| 488 | SRCREV_fsutil = "b14e27f4135ab262f0252f9f0e8749fd7ba3680f" | ||
| 489 | SRC_URI += "git://github.com/tonistiigi/fsutil;name=fsutil;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/tonistiigi/fsutil" | ||
| 490 | |||
| 491 | # gopkg.in/cenkalti/backoff.v1 v1.1.0 | ||
| 492 | # [1] git ls-remote https://github.com/cenkalti/backoff 61153c768f31ee5f130071d08fc82b85208528de | ||
| 493 | SRCREV_backoff.v1 = "61153c768f31ee5f130071d08fc82b85208528de" | ||
| 494 | SRC_URI += "git://github.com/cenkalti/backoff;name=backoff.v1;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/gopkg.in/cenkalti/backoff.v1" | ||
| 495 | |||
| 496 | # github.com/Microsoft/go-winio v0.6.2 | ||
| 497 | # [1] git ls-remote https://github.com/microsoft/go-winio 3c9576c9346a1892dee136329e7e15309e82fb4f | ||
| 498 | SRCREV_go-winio = "3c9576c9346a1892dee136329e7e15309e82fb4f" | ||
| 499 | SRC_URI += "git://github.com/microsoft/go-winio;name=go-winio;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/Microsoft/go-winio" | ||
| 500 | |||
| 501 | # github.com/acarl005/stripansi v0.0.0-20180116102854-5a71ef0e047d | ||
| 502 | # [1] git ls-remote https://github.com/acarl005/stripansi 5a71ef0e047df0427e87a79f27009029921f1f9b | ||
| 503 | SRCREV_stripansi = "5a71ef0e047df0427e87a79f27009029921f1f9b" | ||
| 504 | SRC_URI += "git://github.com/acarl005/stripansi;name=stripansi;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/acarl005/stripansi" | ||
| 505 | |||
| 506 | # github.com/containerd/console v1.0.4 | ||
| 507 | # [1] git ls-remote https://github.com/containerd/console 8f6c4e4faef5a326d2cd907097d04c0239ee5e2f | ||
| 508 | SRCREV_console = "8f6c4e4faef5a326d2cd907097d04c0239ee5e2f" | ||
| 509 | SRC_URI += "git://github.com/containerd/console;name=console;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/containerd/console" | ||
| 510 | |||
| 511 | # github.com/containerd/errdefs v1.0.0 | ||
| 512 | # [1] git ls-remote https://github.com/containerd/errdefs 4817405e4a3caeb7aee9dac68ed55339c59cb635 | ||
| 513 | SRCREV_errdefs = "4817405e4a3caeb7aee9dac68ed55339c59cb635" | ||
| 514 | SRC_URI += "git://github.com/containerd/errdefs;name=errdefs;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/containerd/errdefs" | ||
| 515 | |||
| 516 | # github.com/fvbommel/sortorder v1.1.0 | ||
| 517 | # [1] git ls-remote https://github.com/fvbommel/sortorder a8d9302c17f9f46c6580b82b919672e58ef6e396 | ||
| 518 | SRCREV_sortorder = "a8d9302c17f9f46c6580b82b919672e58ef6e396" | ||
| 519 | SRC_URI += "git://github.com/fvbommel/sortorder;name=sortorder;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/fvbommel/sortorder" | ||
| 520 | |||
| 521 | # github.com/klauspost/compress v1.17.11 | ||
| 522 | # [1] git ls-remote https://github.com/klauspost/compress 72cd4a92a8b13e722763e6b6a3467163c2028d3d | ||
| 523 | SRCREV_compress = "72cd4a92a8b13e722763e6b6a3467163c2028d3d" | ||
| 524 | SRC_URI += "git://github.com/klauspost/compress;name=compress;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/klauspost/compress" | ||
| 525 | |||
| 526 | # github.com/mattn/go-colorable v0.1.13 | ||
| 527 | # [1] git ls-remote https://github.com/mattn/go-colorable 11a925cff3d38c293ddc8c05a16b504e3e2c63be | ||
| 528 | SRCREV_go-colorable = "11a925cff3d38c293ddc8c05a16b504e3e2c63be" | ||
| 529 | SRC_URI += "git://github.com/mattn/go-colorable;name=go-colorable;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/mattn/go-colorable" | ||
| 530 | |||
| 531 | # github.com/mattn/go-runewidth v0.0.15 | ||
| 532 | # [1] git ls-remote https://github.com/mattn/go-runewidth 44b7c5b4d67df8ca22917b6800c158a6d3be3560 | ||
| 533 | SRCREV_go-runewidth = "44b7c5b4d67df8ca22917b6800c158a6d3be3560" | ||
| 534 | SRC_URI += "git://github.com/mattn/go-runewidth;name=go-runewidth;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/mattn/go-runewidth" | ||
| 535 | |||
| 536 | # github.com/moby/sys/mountinfo v0.7.2 | ||
| 537 | # [1] git ls-remote https://github.com/moby/sys cafbe42351600ca9b363e220722f66d96f6e71f4 | ||
| 538 | SRCREV_mountinfo = "cafbe42351600ca9b363e220722f66d96f6e71f4" | ||
| 539 | SRC_URI += "git://github.com/moby/sys;name=mountinfo;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/moby/sys/mountinfo" | ||
| 540 | |||
| 541 | # github.com/modern-go/reflect2 v1.0.2 | ||
| 542 | # [1] git ls-remote https://github.com/modern-go/reflect2 2b33151c9bbc5231aea69b8861c540102b087070 | ||
| 543 | SRCREV_reflect2 = "2b33151c9bbc5231aea69b8861c540102b087070" | ||
| 544 | SRC_URI += "git://github.com/modern-go/reflect2;name=reflect2;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/modern-go/reflect2" | ||
| 545 | |||
| 546 | # github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 | ||
| 547 | # [1] git ls-remote https://github.com/pmezard/go-difflib 5d4384ee4fb2527b0a1256a821ebfc92f91efefc | ||
| 548 | SRCREV_go-difflib = "5d4384ee4fb2527b0a1256a821ebfc92f91efefc" | ||
| 549 | SRC_URI += "git://github.com/pmezard/go-difflib;name=go-difflib;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/pmezard/go-difflib" | ||
| 550 | |||
| 551 | # github.com/jonboulle/clockwork v0.5.0 | ||
| 552 | # [1] git ls-remote https://github.com/jonboulle/clockwork 6d8d032a18422c2e3ef651170a8a55012d1f704c | ||
| 553 | SRCREV_clockwork = "6d8d032a18422c2e3ef651170a8a55012d1f704c" | ||
| 554 | SRC_URI += "git://github.com/jonboulle/clockwork;name=clockwork;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/jonboulle/clockwork" | ||
| 555 | |||
| 556 | # github.com/mattn/go-shellwords v1.0.12 | ||
| 557 | # [1] git ls-remote https://github.com/mattn/go-shellwords 973b9d5391598d4ee601db46fa32f6e186a356ac | ||
| 558 | SRCREV_go-shellwords = "973b9d5391598d4ee601db46fa32f6e186a356ac" | ||
| 559 | SRC_URI += "git://github.com/mattn/go-shellwords;name=go-shellwords;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/mattn/go-shellwords" | ||
| 560 | |||
| 561 | # github.com/moby/patternmatcher v0.6.0 | ||
| 562 | # [1] git ls-remote https://github.com/moby/patternmatcher 347bb8d8d557f90d1b75cd8bca3c0177f380a979 | ||
| 563 | SRCREV_patternmatcher = "347bb8d8d557f90d1b75cd8bca3c0177f380a979" | ||
| 564 | SRC_URI += "git://github.com/moby/patternmatcher;name=patternmatcher;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/moby/patternmatcher" | ||
| 565 | |||
| 566 | # go.opentelemetry.io/otel/trace v1.32.0 | ||
| 567 | # [1] git ls-remote https://github.com/open-telemetry/opentelemetry-go 7cfbd86a605c85e598eca9a899f6176b17076f4f | ||
| 568 | SRCREV_trace = "7cfbd86a605c85e598eca9a899f6176b17076f4f" | ||
| 569 | SRC_URI += "git://github.com/open-telemetry/opentelemetry-go;name=trace;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/go.opentelemetry.io/otel/trace" | ||
| 570 | |||
| 571 | # github.com/cenkalti/backoff/v4 v4.3.0 | ||
| 572 | # [1] git ls-remote https://github.com/cenkalti/backoff 720b78985a65c0452fd37bb155c7cac4157a7c45 | ||
| 573 | SRCREV_v4 = "720b78985a65c0452fd37bb155c7cac4157a7c45" | ||
| 574 | SRC_URI += "git://github.com/cenkalti/backoff;name=v4;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/cenkalti/backoff/v4" | ||
| 575 | |||
| 576 | # github.com/docker/distribution v2.8.3+incompatible | ||
| 577 | # [1] git ls-remote https://github.com/distribution/distribution 4772604ae973031ab32dd9805a4bccf61d94909f | ||
| 578 | SRCREV_distribution = "4772604ae973031ab32dd9805a4bccf61d94909f" | ||
| 579 | SRC_URI += "git://github.com/distribution/distribution;name=distribution;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/docker/distribution" | ||
| 580 | |||
| 581 | # github.com/moby/sys/capability v0.4.0 | ||
| 582 | # [1] git ls-remote https://github.com/moby/sys 50e999a770172a519119e1c4fd4b6153b7dac90d | ||
| 583 | SRCREV_capability = "50e999a770172a519119e1c4fd4b6153b7dac90d" | ||
| 584 | SRC_URI += "git://github.com/moby/sys;name=capability;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/moby/sys/capability" | ||
| 585 | |||
| 586 | # github.com/moby/sys/sequential v0.6.0 | ||
| 587 | # [1] git ls-remote https://github.com/moby/sys cafbe42351600ca9b363e220722f66d96f6e71f4 | ||
| 588 | SRCREV_sequential = "cafbe42351600ca9b363e220722f66d96f6e71f4" | ||
| 589 | SRC_URI += "git://github.com/moby/sys;name=sequential;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/moby/sys/sequential" | ||
| 590 | |||
| 591 | # github.com/shibumi/go-pathspec v1.3.0 | ||
| 592 | # [1] git ls-remote https://github.com/shibumi/go-pathspec 30eddf187f62305a5b34f662049d077211abaacd | ||
| 593 | SRCREV_go-pathspec = "30eddf187f62305a5b34f662049d077211abaacd" | ||
| 594 | SRC_URI += "git://github.com/shibumi/go-pathspec;name=go-pathspec;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/shibumi/go-pathspec" | ||
| 595 | |||
| 596 | # go.opentelemetry.io/proto/otlp v1.3.1 | ||
| 597 | # [1] git ls-remote https://github.com/open-telemetry/opentelemetry-proto-go a300cca6ca2b6c700b1c0409003751b762e30dea | ||
| 598 | SRCREV_otlp = "a300cca6ca2b6c700b1c0409003751b762e30dea" | ||
| 599 | SRC_URI += "git://github.com/open-telemetry/opentelemetry-proto-go;name=otlp;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/go.opentelemetry.io/proto/otlp" | ||
| 600 | |||
| 601 | # github.com/containerd/platforms v1.0.0-rc.1 | ||
| 602 | # [1] git ls-remote https://github.com/containerd/platforms e3566b8ff1994b8dc88bae5768d32830e0cd0cfd | ||
| 603 | SRCREV_platforms = "e3566b8ff1994b8dc88bae5768d32830e0cd0cfd" | ||
| 604 | SRC_URI += "git://github.com/containerd/platforms;name=platforms;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/containerd/platforms" | ||
| 605 | |||
| 606 | # github.com/docker/cli-docs-tool v0.9.0 | ||
| 607 | # [1] git ls-remote https://github.com/docker/cli-docs-tool b6c6689c907d2094d3d59b4b9446849bb6a3686f | ||
| 608 | SRCREV_cli-docs-tool = "b6c6689c907d2094d3d59b4b9446849bb6a3686f" | ||
| 609 | SRC_URI += "git://github.com/docker/cli-docs-tool;name=cli-docs-tool;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/docker/cli-docs-tool" | ||
| 610 | |||
| 611 | # github.com/hashicorp/go-version v1.7.0 | ||
| 612 | # [1] git ls-remote https://github.com/hashicorp/go-version fcaa53267960208632e9308c93aa89535526a018 | ||
| 613 | SRCREV_go-version = "fcaa53267960208632e9308c93aa89535526a018" | ||
| 614 | SRC_URI += "git://github.com/hashicorp/go-version;name=go-version;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/hashicorp/go-version" | ||
| 615 | |||
| 616 | # go.opentelemetry.io/otel/metric v1.32.0 | ||
| 617 | # [1] git ls-remote https://github.com/open-telemetry/opentelemetry-go 7cfbd86a605c85e598eca9a899f6176b17076f4f | ||
| 618 | SRCREV_metric = "7cfbd86a605c85e598eca9a899f6176b17076f4f" | ||
| 619 | SRC_URI += "git://github.com/open-telemetry/opentelemetry-go;name=metric;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/go.opentelemetry.io/otel/metric" | ||
| 620 | |||
| 621 | # github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd | ||
| 622 | # [1] git ls-remote https://github.com/modern-go/concurrent bacd9c7ef1dd9b15be4a9909b8ac7a4e313eec94 | ||
| 623 | SRCREV_concurrent = "bacd9c7ef1dd9b15be4a9909b8ac7a4e313eec94" | ||
| 624 | SRC_URI += "git://github.com/modern-go/concurrent;name=concurrent;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/modern-go/concurrent" | ||
| 625 | |||
| 626 | # github.com/xeipuuv/gojsonschema v1.2.0 | ||
| 627 | # [1] git ls-remote https://github.com/xeipuuv/gojsonschema 82fcdeb203eb6ab2a67d0a623d9c19e5e5a64927 | ||
| 628 | SRCREV_gojsonschema = "82fcdeb203eb6ab2a67d0a623d9c19e5e5a64927" | ||
| 629 | SRC_URI += "git://github.com/xeipuuv/gojsonschema;name=gojsonschema;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/xeipuuv/gojsonschema" | ||
| 630 | |||
| 631 | # github.com/AlecAivazis/survey/v2 v2.3.7 | ||
| 632 | # [1] git ls-remote https://github.com/AlecAivazis/survey fa37277e6394c29db7bcc94062cb30cd7785a126 | ||
| 633 | SRCREV_v2 = "fa37277e6394c29db7bcc94062cb30cd7785a126" | ||
| 634 | SRC_URI += "git://github.com/AlecAivazis/survey;name=v2;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/AlecAivazis/survey/v2" | ||
| 635 | |||
| 636 | # github.com/docker/go-connections v0.5.0 | ||
| 637 | # [1] git ls-remote https://github.com/docker/go-connections fa09c952e3eadbffaf8afc5b8a1667158ba38ace | ||
| 638 | SRCREV_go-connections = "fa09c952e3eadbffaf8afc5b8a1667158ba38ace" | ||
| 639 | SRC_URI += "git://github.com/docker/go-connections;name=go-connections;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/docker/go-connections" | ||
| 640 | |||
| 641 | # github.com/Masterminds/semver/v3 v3.2.1 | ||
| 642 | # [1] git ls-remote https://github.com/Masterminds/semver e06051f8fcc4c8b4a4990c337b9862a2448722e5 | ||
| 643 | SRCREV_semver-v3 = "e06051f8fcc4c8b4a4990c337b9862a2448722e5" | ||
| 644 | SRC_URI += "git://github.com/Masterminds/semver;name=semver-v3;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/Masterminds/semver/v3" | ||
| 645 | |||
| 646 | # github.com/containerd/continuity v0.4.5 | ||
| 647 | # [1] git ls-remote https://github.com/containerd/continuity 44e2adf7e9cd87330f3ad656e7a006ef91ed8c1e | ||
| 648 | SRCREV_continuity = "44e2adf7e9cd87330f3ad656e7a006ef91ed8c1e" | ||
| 649 | SRC_URI += "git://github.com/containerd/continuity;name=continuity;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/containerd/continuity" | ||
| 650 | |||
| 651 | # github.com/containerd/typeurl/v2 v2.2.3 | ||
| 652 | # [1] git ls-remote https://github.com/containerd/typeurl 5b047adad57d172afa9654c019fe65bf0540cc4d | ||
| 653 | SRCREV_typeurl-v2 = "5b047adad57d172afa9654c019fe65bf0540cc4d" | ||
| 654 | SRC_URI += "git://github.com/containerd/typeurl;name=typeurl-v2;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/containerd/typeurl/v2" | ||
| 655 | |||
| 656 | # github.com/cpuguy83/go-md2man/v2 v2.0.6 | ||
| 657 | # [1] git ls-remote https://github.com/cpuguy83/go-md2man 441631534462b74c098953dbd8d5f6210994b0bf | ||
| 658 | SRCREV_go-md2man-v2 = "441631534462b74c098953dbd8d5f6210994b0bf" | ||
| 659 | SRC_URI += "git://github.com/cpuguy83/go-md2man;name=go-md2man-v2;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/cpuguy83/go-md2man/v2" | ||
| 660 | |||
| 661 | # github.com/google/gnostic-models v0.6.8 | ||
| 662 | # [1] git ls-remote https://github.com/google/gnostic-models 577692584cdf09674595bba0c182d0e8a44655d3 | ||
| 663 | SRCREV_gnostic-models = "577692584cdf09674595bba0c182d0e8a44655d3" | ||
| 664 | SRC_URI += "git://github.com/google/gnostic-models;name=gnostic-models;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/google/gnostic-models" | ||
| 665 | |||
| 666 | # github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb | ||
| 667 | # [1] git ls-remote https://github.com/xeipuuv/gojsonpointer 02993c407bfbf5f6dae44c4f4b1cf6a39b5fc5bb | ||
| 668 | SRCREV_gojsonpointer = "02993c407bfbf5f6dae44c4f4b1cf6a39b5fc5bb" | ||
| 669 | SRC_URI += "git://github.com/xeipuuv/gojsonpointer;name=gojsonpointer;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/xeipuuv/gojsonpointer" | ||
| 670 | |||
| 671 | # github.com/distribution/reference v0.6.0 | ||
| 672 | # [1] git ls-remote https://github.com/distribution/reference ff14fafe2236e51c2894ac07d4bdfc778e96d682 | ||
| 673 | SRCREV_reference = "ff14fafe2236e51c2894ac07d4bdfc778e96d682" | ||
| 674 | SRC_URI += "git://github.com/distribution/reference;name=reference;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/distribution/reference" | ||
| 675 | |||
| 676 | # github.com/mitchellh/mapstructure v1.5.0 | ||
| 677 | # [1] git ls-remote https://github.com/mitchellh/mapstructure ab69d8d93410fce4361f4912bb1ff88110a81311 | ||
| 678 | SRCREV_mapstructure = "ab69d8d93410fce4361f4912bb1ff88110a81311" | ||
| 679 | SRC_URI += "git://github.com/mitchellh/mapstructure;name=mapstructure;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/mitchellh/mapstructure" | ||
| 680 | |||
| 681 | # github.com/skratchdot/open-golang v0.0.0-20200116055534-eef842397966 | ||
| 682 | # [1] git ls-remote https://github.com/skratchdot/open-golang eef8423979666925a58eb77f9db583e54320d5a4 | ||
| 683 | SRCREV_open-golang = "eef8423979666925a58eb77f9db583e54320d5a4" | ||
| 684 | SRC_URI += "git://github.com/skratchdot/open-golang;name=open-golang;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/skratchdot/open-golang" | ||
| 685 | |||
| 686 | # github.com/containerd/errdefs/pkg v0.3.0 | ||
| 687 | # [1] git ls-remote https://github.com/containerd/errdefs 4817405e4a3caeb7aee9dac68ed55339c59cb635 | ||
| 688 | SRCREV_pkg = "4817405e4a3caeb7aee9dac68ed55339c59cb635" | ||
| 689 | SRC_URI += "git://github.com/containerd/errdefs;name=pkg;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/containerd/errdefs/pkg" | ||
| 690 | |||
| 691 | # github.com/emicklei/go-restful/v3 v3.11.0 | ||
| 692 | # [1] git ls-remote https://github.com/emicklei/go-restful 30bec7807481e62e1e1e59ad57e7f22054806966 | ||
| 693 | SRCREV_go-restful-v3 = "30bec7807481e62e1e1e59ad57e7f22054806966" | ||
| 694 | SRC_URI += "git://github.com/emicklei/go-restful;name=go-restful-v3;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/emicklei/go-restful/v3" | ||
| 695 | |||
| 696 | # github.com/go-openapi/jsonpointer v0.19.6 | ||
| 697 | # [1] git ls-remote https://github.com/go-openapi/jsonpointer 5df0d69a6be189afff354877d332f9ede32afe12 | ||
| 698 | SRCREV_jsonpointer = "5df0d69a6be189afff354877d332f9ede32afe12" | ||
| 699 | SRC_URI += "git://github.com/go-openapi/jsonpointer;name=jsonpointer;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/go-openapi/jsonpointer" | ||
| 700 | |||
| 701 | # github.com/hashicorp/go-cleanhttp v0.5.2 | ||
| 702 | # [1] git ls-remote https://github.com/hashicorp/go-cleanhttp 6d9e2ac5d828e5f8594b97f88c4bde14a67bb6d2 | ||
| 703 | SRCREV_go-cleanhttp = "6d9e2ac5d828e5f8594b97f88c4bde14a67bb6d2" | ||
| 704 | SRC_URI += "git://github.com/hashicorp/go-cleanhttp;name=go-cleanhttp;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/hashicorp/go-cleanhttp" | ||
| 705 | |||
| 706 | # github.com/in-toto/in-toto-golang v0.5.0 | ||
| 707 | # [1] git ls-remote https://github.com/in-toto/in-toto-golang ec599036d27ebaca3e8c03559d3f8fd5fe429dfe | ||
| 708 | SRCREV_in-toto-golang = "ec599036d27ebaca3e8c03559d3f8fd5fe429dfe" | ||
| 709 | SRC_URI += "git://github.com/in-toto/in-toto-golang;name=in-toto-golang;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/in-toto/in-toto-golang" | ||
| 710 | |||
| 711 | # github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 | ||
| 712 | # [1] git ls-remote https://github.com/kballard/go-shellquote 95032a82bc518f77982ea72343cc1ade730072f0 | ||
| 713 | SRCREV_go-shellquote = "95032a82bc518f77982ea72343cc1ade730072f0" | ||
| 714 | SRC_URI += "git://github.com/kballard/go-shellquote;name=go-shellquote;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/kballard/go-shellquote" | ||
| 715 | |||
| 716 | # github.com/moby/docker-image-spec v1.3.1 | ||
| 717 | # [1] git ls-remote https://github.com/moby/docker-image-spec f1d00ebd2d6d6805170d5543dbca4b850f35f9af | ||
| 718 | SRCREV_docker-image-spec = "f1d00ebd2d6d6805170d5543dbca4b850f35f9af" | ||
| 719 | SRC_URI += "git://github.com/moby/docker-image-spec;name=docker-image-spec;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/moby/docker-image-spec" | ||
| 720 | |||
| 721 | # github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10 | ||
| 722 | # [1] git ls-remote https://github.com/planetscale/vtprotobuf 0393e58bdf106fe0347e554d272a8f2c84d12461 | ||
| 723 | SRCREV_vtprotobuf = "0393e58bdf106fe0347e554d272a8f2c84d12461" | ||
| 724 | SRC_URI += "git://github.com/planetscale/vtprotobuf;name=vtprotobuf;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/planetscale/vtprotobuf" | ||
| 725 | |||
| 726 | # github.com/tonistiigi/go-csvvalue v0.0.0-20240710180619-ddb21b71c0b4 | ||
| 727 | # [1] git ls-remote https://github.com/tonistiigi/go-csvvalue ddb21b71c0b45f8854f3bb72726ee898a99c2348 | ||
| 728 | SRCREV_go-csvvalue = "ddb21b71c0b45f8854f3bb72726ee898a99c2348" | ||
| 729 | SRC_URI += "git://github.com/tonistiigi/go-csvvalue;name=go-csvvalue;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/tonistiigi/go-csvvalue" | ||
| 730 | |||
| 731 | # github.com/hashicorp/go-multierror v1.1.1 | ||
| 732 | # [1] git ls-remote https://github.com/hashicorp/go-multierror 9974e9ec57696378079ecc3accd3d6f29401b3a0 | ||
| 733 | SRCREV_go-multierror = "9974e9ec57696378079ecc3accd3d6f29401b3a0" | ||
| 734 | SRC_URI += "git://github.com/hashicorp/go-multierror;name=go-multierror;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/hashicorp/go-multierror" | ||
| 735 | |||
| 736 | # github.com/prometheus/client_model v0.6.1 | ||
| 737 | # [1] git ls-remote https://github.com/prometheus/client_model 571429e996ba2d9499e3dcb12926767ba953c0ef | ||
| 738 | SRCREV_client_model = "571429e996ba2d9499e3dcb12926767ba953c0ef" | ||
| 739 | SRC_URI += "git://github.com/prometheus/client_model;name=client_model;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/prometheus/client_model" | ||
| 740 | |||
| 741 | # github.com/russross/blackfriday/v2 v2.1.0 | ||
| 742 | # [1] git ls-remote https://github.com/russross/blackfriday 4c9bf9512682b995722660a4196c0013228e2049 | ||
| 743 | SRCREV_blackfriday-v2 = "4c9bf9512682b995722660a4196c0013228e2049" | ||
| 744 | SRC_URI += "git://github.com/russross/blackfriday;name=blackfriday-v2;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/russross/blackfriday/v2" | ||
| 745 | |||
| 746 | # github.com/tonistiigi/dchapes-mode v0.0.0-20241001053921-ca0759fec205 | ||
| 747 | # [1] git ls-remote https://github.com/tonistiigi/dchapes-mode ca0759fec205a36ac026b90f4cf90c04c56e1f8b | ||
| 748 | SRCREV_dchapes-mode = "ca0759fec205a36ac026b90f4cf90c04c56e1f8b" | ||
| 749 | SRC_URI += "git://github.com/tonistiigi/dchapes-mode;name=dchapes-mode;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/tonistiigi/dchapes-mode" | ||
| 750 | |||
| 751 | # github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 | ||
| 752 | # [1] git ls-remote https://github.com/xeipuuv/gojsonreference bd5ef7bd5415a7ac448318e64f11a24cd21e594b | ||
| 753 | SRCREV_gojsonreference = "bd5ef7bd5415a7ac448318e64f11a24cd21e594b" | ||
| 754 | SRC_URI += "git://github.com/xeipuuv/gojsonreference;name=gojsonreference;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/xeipuuv/gojsonreference" | ||
| 755 | |||
| 756 | # github.com/xhit/go-str2duration/v2 v2.1.0 | ||
| 757 | # [1] git ls-remote https://github.com/xhit/go-str2duration 017325bfda0895fe02177e4ebb07962e58735bbf | ||
| 758 | SRCREV_go-str2duration-v2 = "017325bfda0895fe02177e4ebb07962e58735bbf" | ||
| 759 | SRC_URI += "git://github.com/xhit/go-str2duration;name=go-str2duration-v2;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/xhit/go-str2duration/v2" | ||
| 760 | |||
| 761 | # github.com/containerd/containerd/v2 v2.0.2 | ||
| 762 | # [1] git ls-remote https://github.com/containerd/containerd c507a0257ea6462fbd6f5ba4f5c74facb04021f4 | ||
| 763 | SRCREV_containerd-v2 = "c507a0257ea6462fbd6f5ba4f5c74facb04021f4" | ||
| 764 | SRC_URI += "git://github.com/containerd/containerd;name=containerd-v2;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/containerd/containerd/v2" | ||
| 765 | |||
| 766 | # github.com/opencontainers/go-digest v1.0.0 | ||
| 767 | # [1] git ls-remote https://github.com/opencontainers/go-digest ea51bea511f75cfa3ef6098cc253c5c3609b037a | ||
| 768 | SRCREV_go-digest = "ea51bea511f75cfa3ef6098cc253c5c3609b037a" | ||
| 769 | SRC_URI += "git://github.com/opencontainers/go-digest;name=go-digest;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/opencontainers/go-digest" | ||
| 770 | |||
| 771 | # github.com/aws/aws-sdk-go-v2/config v1.27.27 | ||
| 772 | # [1] git ls-remote https://github.com/aws/aws-sdk-go-v2 b8a0918056d0ae923f811f525c17066bbb45f050 | ||
| 773 | SRCREV_config = "b8a0918056d0ae923f811f525c17066bbb45f050" | ||
| 774 | SRC_URI += "git://github.com/aws/aws-sdk-go-v2;name=config;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/aws/aws-sdk-go-v2/config" | ||
| 775 | |||
| 776 | # github.com/go-openapi/jsonreference v0.20.2 | ||
| 777 | # [1] git ls-remote https://github.com/go-openapi/jsonreference 1f158e563669961b8e54817e3ea57978d439ffff | ||
| 778 | SRCREV_jsonreference = "1f158e563669961b8e54817e3ea57978d439ffff" | ||
| 779 | SRC_URI += "git://github.com/go-openapi/jsonreference;name=jsonreference;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/go-openapi/jsonreference" | ||
| 780 | |||
| 781 | # github.com/go-viper/mapstructure/v2 v2.0.0 | ||
| 782 | # [1] git ls-remote https://github.com/go-viper/mapstructure 6abdb44d71d6ac11f79c11a30a9653c9e4986625 | ||
| 783 | SRCREV_mapstructure-v2 = "6abdb44d71d6ac11f79c11a30a9653c9e4986625" | ||
| 784 | SRC_URI += "git://github.com/go-viper/mapstructure;name=mapstructure-v2;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/go-viper/mapstructure/v2" | ||
| 785 | |||
| 786 | # github.com/prometheus/client_golang v1.20.5 | ||
| 787 | # [1] git ls-remote https://github.com/prometheus/client_golang 48e12a185519fd76b4e514b597483781d9ba4093 | ||
| 788 | SRCREV_client_golang = "48e12a185519fd76b4e514b597483781d9ba4093" | ||
| 789 | SRC_URI += "git://github.com/prometheus/client_golang;name=client_golang;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/prometheus/client_golang" | ||
| 790 | |||
| 791 | # go.opentelemetry.io/otel/sdk/metric v1.32.0 | ||
| 792 | # [1] git ls-remote https://github.com/open-telemetry/opentelemetry-go 7cfbd86a605c85e598eca9a899f6176b17076f4f | ||
| 793 | SRCREV_sdk-metric = "7cfbd86a605c85e598eca9a899f6176b17076f4f" | ||
| 794 | SRC_URI += "git://github.com/open-telemetry/opentelemetry-go;name=sdk-metric;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/go.opentelemetry.io/otel/sdk/metric" | ||
| 795 | |||
| 796 | # github.com/opencontainers/image-spec v1.1.1 | ||
| 797 | # [1] git ls-remote https://github.com/opencontainers/image-spec 147f9c13cedb47a0c4d9a11a222961073d585877 | ||
| 798 | SRCREV_image-spec = "147f9c13cedb47a0c4d9a11a222961073d585877" | ||
| 799 | SRC_URI += "git://github.com/opencontainers/image-spec;name=image-spec;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/opencontainers/image-spec" | ||
| 800 | |||
| 801 | # github.com/theupdateframework/notary v0.7.0 | ||
| 802 | # [1] git ls-remote https://github.com/notaryproject/notary b0b6bfdd4933081e8d5ae026b24e8337311dd598 | ||
| 803 | SRCREV_notary = "b0b6bfdd4933081e8d5ae026b24e8337311dd598" | ||
| 804 | SRC_URI += "git://github.com/notaryproject/notary;name=notary;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/theupdateframework/notary" | ||
| 805 | |||
| 806 | # github.com/AdaLogics/go-fuzz-headers v0.0.0-20240806141605-e8a1dd7889d6 | ||
| 807 | # [1] git ls-remote https://github.com/AdaLogics/go-fuzz-headers e8a1dd7889d65b8a6f02175e0d79d7c0557db7f9 | ||
| 808 | SRCREV_go-fuzz-headers = "e8a1dd7889d65b8a6f02175e0d79d7c0557db7f9" | ||
| 809 | SRC_URI += "git://github.com/AdaLogics/go-fuzz-headers;name=go-fuzz-headers;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/AdaLogics/go-fuzz-headers" | ||
| 810 | |||
| 811 | # github.com/containerd/containerd/api v1.8.0 | ||
| 812 | # [1] git ls-remote https://github.com/containerd/containerd cf36acf6b6dde383952f523e9b0b721b20dec88a | ||
| 813 | SRCREV_api = "cf36acf6b6dde383952f523e9b0b721b20dec88a" | ||
| 814 | SRC_URI += "git://github.com/containerd/containerd;name=api;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/containerd/containerd/api" | ||
| 815 | |||
| 816 | # github.com/inconshreveable/mousetrap v1.1.0 | ||
| 817 | # [1] git ls-remote https://github.com/inconshreveable/mousetrap 4e8053ee7ef85a6bd26368364a6d27f1641c1d21 | ||
| 818 | SRCREV_mousetrap = "4e8053ee7ef85a6bd26368364a6d27f1641c1d21" | ||
| 819 | SRC_URI += "git://github.com/inconshreveable/mousetrap;name=mousetrap;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/inconshreveable/mousetrap" | ||
| 820 | |||
| 821 | # sigs.k8s.io/structured-merge-diff/v4 v4.4.1 | ||
| 822 | # [1] git ls-remote https://github.com/kubernetes-sigs/structured-merge-diff cf09e71f4508bfc416135048e392a8a4990bf4e3 | ||
| 823 | SRCREV_structured-merge-diff-v4 = "cf09e71f4508bfc416135048e392a8a4990bf4e3" | ||
| 824 | SRC_URI += "git://github.com/kubernetes-sigs/structured-merge-diff;name=structured-merge-diff-v4;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/sigs.k8s.io/structured-merge-diff/v4" | ||
| 825 | |||
| 826 | # github.com/compose-spec/compose-go/v2 v2.4.9-0.20250302154753-e508c724a35f | ||
| 827 | # [1] git ls-remote https://github.com/compose-spec/compose-go e508c724a35f6b21d90b4282baa776916f8a55d0 | ||
| 828 | SRCREV_compose-go-v2 = "e508c724a35f6b21d90b4282baa776916f8a55d0" | ||
| 829 | SRC_URI += "git://github.com/compose-spec/compose-go;name=compose-go-v2;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/compose-spec/compose-go/v2" | ||
| 830 | |||
| 831 | # github.com/mitchellh/hashstructure/v2 v2.0.2 | ||
| 832 | # [1] git ls-remote https://github.com/mitchellh/hashstructure a045b665615f739329536a58c25ca6327abf1ec1 | ||
| 833 | SRCREV_hashstructure-v2 = "a045b665615f739329536a58c25ca6327abf1ec1" | ||
| 834 | SRC_URI += "git://github.com/mitchellh/hashstructure;name=hashstructure-v2;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/mitchellh/hashstructure/v2" | ||
| 835 | |||
| 836 | # tags.cncf.io/container-device-interface v0.8.1 | ||
| 837 | # [1] git ls-remote https://github.com/cncf-tags/container-device-interface d1a2c366833ff17c1b12db9637314e035871b1ef | ||
| 838 | SRCREV_container-device-interface = "d1a2c366833ff17c1b12db9637314e035871b1ef" | ||
| 839 | SRC_URI += "git://github.com/cncf-tags/container-device-interface;name=container-device-interface;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/tags.cncf.io/container-device-interface" | ||
| 840 | |||
| 841 | # github.com/apparentlymart/go-textseg/v15 v15.0.0 | ||
| 842 | # [1] git ls-remote https://github.com/apparentlymart/go-textseg 72b78f42484ddc3f58858f794da1771fb9559ad0 | ||
| 843 | SRCREV_v15 = "72b78f42484ddc3f58858f794da1771fb9559ad0" | ||
| 844 | SRC_URI += "git://github.com/apparentlymart/go-textseg;name=v15;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/apparentlymart/go-textseg/v15" | ||
| 845 | |||
| 846 | # github.com/aws/aws-sdk-go-v2/credentials v1.17.27 | ||
| 847 | # [1] git ls-remote https://github.com/aws/aws-sdk-go-v2 b8a0918056d0ae923f811f525c17066bbb45f050 | ||
| 848 | SRCREV_credentials = "b8a0918056d0ae923f811f525c17066bbb45f050" | ||
| 849 | SRC_URI += "git://github.com/aws/aws-sdk-go-v2;name=credentials;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/aws/aws-sdk-go-v2/credentials" | ||
| 850 | |||
| 851 | # github.com/aws/aws-sdk-go-v2/service/sso v1.22.4 | ||
| 852 | # [1] git ls-remote https://github.com/aws/aws-sdk-go-v2 b8a0918056d0ae923f811f525c17066bbb45f050 | ||
| 853 | SRCREV_sso = "b8a0918056d0ae923f811f525c17066bbb45f050" | ||
| 854 | SRC_URI += "git://github.com/aws/aws-sdk-go-v2;name=sso;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/aws/aws-sdk-go-v2/service/sso" | ||
| 855 | |||
| 856 | # github.com/aws/aws-sdk-go-v2/service/sts v1.30.3 | ||
| 857 | # [1] git ls-remote https://github.com/aws/aws-sdk-go-v2 0599931efcf551dc63f84ec669d7fb5cfe14f64c | ||
| 858 | SRCREV_sts = "0599931efcf551dc63f84ec669d7fb5cfe14f64c" | ||
| 859 | SRC_URI += "git://github.com/aws/aws-sdk-go-v2;name=sts;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/aws/aws-sdk-go-v2/service/sts" | ||
| 860 | |||
| 861 | # github.com/aws/aws-sdk-go-v2/internal/ini v1.8.0 | ||
| 862 | # [1] git ls-remote https://github.com/aws/aws-sdk-go-v2 4fd9126607b61a0fe22af3a6a31b4e4792a66d83 | ||
| 863 | SRCREV_ini = "4fd9126607b61a0fe22af3a6a31b4e4792a66d83" | ||
| 864 | SRC_URI += "git://github.com/aws/aws-sdk-go-v2;name=ini;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/aws/aws-sdk-go-v2/internal/ini" | ||
| 865 | |||
| 866 | # github.com/grpc-ecosystem/grpc-gateway/v2 v2.22.0 | ||
| 867 | # [1] git ls-remote https://github.com/grpc-ecosystem/grpc-gateway 0b14a81276e64dcbf611990bc211082b62a334e6 | ||
| 868 | SRCREV_grpc-gateway-v2 = "0b14a81276e64dcbf611990bc211082b62a334e6" | ||
| 869 | SRC_URI += "git://github.com/grpc-ecosystem/grpc-gateway;name=grpc-gateway-v2;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/grpc-ecosystem/grpc-gateway/v2" | ||
| 870 | |||
| 871 | # google.golang.org/genproto/googleapis/api v0.0.0-20241202173237-19429a94021a | ||
| 872 | # [1] git ls-remote https://github.com/googleapis/go-genproto 19429a94021accaa4bb60cbed61190248f4ef066 | ||
| 873 | SRCREV_googleapis-api = "19429a94021accaa4bb60cbed61190248f4ef066" | ||
| 874 | SRC_URI += "git://github.com/googleapis/go-genproto;name=googleapis-api;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/google.golang.org/genproto/googleapis/api" | ||
| 875 | |||
| 876 | # google.golang.org/genproto/googleapis/rpc v0.0.0-20241202173237-19429a94021a | ||
| 877 | # [1] git ls-remote https://github.com/googleapis/go-genproto 19429a94021accaa4bb60cbed61190248f4ef066 | ||
| 878 | SRCREV_rpc = "19429a94021accaa4bb60cbed61190248f4ef066" | ||
| 879 | SRC_URI += "git://github.com/googleapis/go-genproto;name=rpc;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/google.golang.org/genproto/googleapis/rpc" | ||
| 880 | |||
| 881 | # github.com/docker/docker-credential-helpers v0.8.2 | ||
| 882 | # [1] git ls-remote https://github.com/docker/docker-credential-helpers 6b9df3ebb5da5aa22f722b25506bba1414519c6a | ||
| 883 | SRCREV_docker-credential-helpers = "6b9df3ebb5da5aa22f722b25506bba1414519c6a" | ||
| 884 | SRC_URI += "git://github.com/docker/docker-credential-helpers;name=docker-credential-helpers;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/docker/docker-credential-helpers" | ||
| 885 | |||
| 886 | # github.com/aws/aws-sdk-go-v2/service/ssooidc v1.26.4 | ||
| 887 | # [1] git ls-remote https://github.com/aws/aws-sdk-go-v2 0599931efcf551dc63f84ec669d7fb5cfe14f64c | ||
| 888 | SRCREV_ssooidc = "0599931efcf551dc63f84ec669d7fb5cfe14f64c" | ||
| 889 | SRC_URI += "git://github.com/aws/aws-sdk-go-v2;name=ssooidc;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/aws/aws-sdk-go-v2/service/ssooidc" | ||
| 890 | |||
| 891 | # github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.11 | ||
| 892 | # [1] git ls-remote https://github.com/aws/aws-sdk-go-v2 0599931efcf551dc63f84ec669d7fb5cfe14f64c | ||
| 893 | SRCREV_imds = "0599931efcf551dc63f84ec669d7fb5cfe14f64c" | ||
| 894 | SRC_URI += "git://github.com/aws/aws-sdk-go-v2;name=imds;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/aws/aws-sdk-go-v2/feature/ec2/imds" | ||
| 895 | |||
| 896 | # go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.31.0 | ||
| 897 | # [1] git ls-remote https://github.com/open-telemetry/opentelemetry-go bc2fe88756962b76eb43ea2fd92ed3f5b6491cc0 | ||
| 898 | SRCREV_otlptrace = "bc2fe88756962b76eb43ea2fd92ed3f5b6491cc0" | ||
| 899 | SRC_URI += "git://github.com/open-telemetry/opentelemetry-go;name=otlptrace;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/go.opentelemetry.io/otel/exporters/otlp/otlptrace" | ||
| 900 | |||
| 901 | # github.com/secure-systems-lab/go-securesystemslib v0.4.0 | ||
| 902 | # [1] git ls-remote https://github.com/secure-systems-lab/go-securesystemslib abcd7c95c952df38eb237fab3764ef1b8d2b15c9 | ||
| 903 | SRCREV_go-securesystemslib = "abcd7c95c952df38eb237fab3764ef1b8d2b15c9" | ||
| 904 | SRC_URI += "git://github.com/secure-systems-lab/go-securesystemslib;name=go-securesystemslib;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/secure-systems-lab/go-securesystemslib" | ||
| 905 | |||
| 906 | # github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.15 | ||
| 907 | # [1] git ls-remote https://github.com/aws/aws-sdk-go-v2 0599931efcf551dc63f84ec669d7fb5cfe14f64c | ||
| 908 | SRCREV_endpoints-v2 = "0599931efcf551dc63f84ec669d7fb5cfe14f64c" | ||
| 909 | SRC_URI += "git://github.com/aws/aws-sdk-go-v2;name=endpoints-v2;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/aws/aws-sdk-go-v2/internal/endpoints/v2" | ||
| 910 | |||
| 911 | # github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.15 | ||
| 912 | # [1] git ls-remote https://github.com/aws/aws-sdk-go-v2 0599931efcf551dc63f84ec669d7fb5cfe14f64c | ||
| 913 | SRCREV_configsources = "0599931efcf551dc63f84ec669d7fb5cfe14f64c" | ||
| 914 | SRC_URI += "git://github.com/aws/aws-sdk-go-v2;name=configsources;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/aws/aws-sdk-go-v2/internal/configsources" | ||
| 915 | |||
| 916 | # github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.11.17 | ||
| 917 | # [1] git ls-remote https://github.com/aws/aws-sdk-go-v2 0599931efcf551dc63f84ec669d7fb5cfe14f64c | ||
| 918 | SRCREV_presigned-url = "0599931efcf551dc63f84ec669d7fb5cfe14f64c" | ||
| 919 | SRC_URI += "git://github.com/aws/aws-sdk-go-v2;name=presigned-url;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/aws/aws-sdk-go-v2/service/internal/presigned-url" | ||
| 920 | |||
| 921 | # go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.56.0 | ||
| 922 | # [1] git ls-remote https://github.com/open-telemetry/opentelemetry-go-contrib 9cf5701e6b6611b2c406639039a1bccd883db080 | ||
| 923 | SRCREV_otelhttp = "9cf5701e6b6611b2c406639039a1bccd883db080" | ||
| 924 | SRC_URI += "git://github.com/open-telemetry/opentelemetry-go-contrib;name=otelhttp;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp" | ||
| 925 | |||
| 926 | # github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.11.3 | ||
| 927 | # [1] git ls-remote https://github.com/aws/aws-sdk-go-v2 4509a600408280c8dcdbc6825ba750cf1628423d | ||
| 928 | SRCREV_accept-encoding = "4509a600408280c8dcdbc6825ba750cf1628423d" | ||
| 929 | SRC_URI += "git://github.com/aws/aws-sdk-go-v2;name=accept-encoding;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding" | ||
| 930 | |||
| 931 | # go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.31.0 | ||
| 932 | # [1] git ls-remote https://github.com/open-telemetry/opentelemetry-go bc2fe88756962b76eb43ea2fd92ed3f5b6491cc0 | ||
| 933 | SRCREV_otlptracegrpc = "bc2fe88756962b76eb43ea2fd92ed3f5b6491cc0" | ||
| 934 | SRC_URI += "git://github.com/open-telemetry/opentelemetry-go;name=otlptracegrpc;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc" | ||
| 935 | |||
| 936 | # go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.31.0 | ||
| 937 | # [1] git ls-remote https://github.com/open-telemetry/opentelemetry-go bc2fe88756962b76eb43ea2fd92ed3f5b6491cc0 | ||
| 938 | SRCREV_otlptracehttp = "bc2fe88756962b76eb43ea2fd92ed3f5b6491cc0" | ||
| 939 | SRC_URI += "git://github.com/open-telemetry/opentelemetry-go;name=otlptracehttp;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp" | ||
| 940 | |||
| 941 | # go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v1.31.0 | ||
| 942 | # [1] git ls-remote https://github.com/open-telemetry/opentelemetry-go bc2fe88756962b76eb43ea2fd92ed3f5b6491cc0 | ||
| 943 | SRCREV_otlpmetricgrpc = "bc2fe88756962b76eb43ea2fd92ed3f5b6491cc0" | ||
| 944 | SRC_URI += "git://github.com/open-telemetry/opentelemetry-go;name=otlpmetricgrpc;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc" | ||
| 945 | |||
| 946 | # go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp v1.31.0 | ||
| 947 | # [1] git ls-remote https://github.com/open-telemetry/opentelemetry-go bc2fe88756962b76eb43ea2fd92ed3f5b6491cc0 | ||
| 948 | SRCREV_otlpmetrichttp = "bc2fe88756962b76eb43ea2fd92ed3f5b6491cc0" | ||
| 949 | SRC_URI += "git://github.com/open-telemetry/opentelemetry-go;name=otlpmetrichttp;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp" | ||
| 950 | |||
| 951 | # go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.56.0 | ||
| 952 | # [1] git ls-remote https://github.com/open-telemetry/opentelemetry-go-contrib 9cf5701e6b6611b2c406639039a1bccd883db080 | ||
| 953 | SRCREV_otelgrpc = "9cf5701e6b6611b2c406639039a1bccd883db080" | ||
| 954 | SRC_URI += "git://github.com/open-telemetry/opentelemetry-go-contrib;name=otelgrpc;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc" | ||
| 955 | |||
| 956 | # go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.56.0 | ||
| 957 | # [1] git ls-remote https://github.com/open-telemetry/opentelemetry-go-contrib 9cf5701e6b6611b2c406639039a1bccd883db080 | ||
| 958 | SRCREV_otelhttptrace = "9cf5701e6b6611b2c406639039a1bccd883db080" | ||
| 959 | SRC_URI += "git://github.com/open-telemetry/opentelemetry-go-contrib;name=otelhttptrace;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace" | ||
| 960 | |||
