@aptre/common 0.33.0 → 0.34.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +17 -0
- package/dist/example/example.pb.d.ts +1 -1
- package/dist/example/example.pb.js +5 -5
- package/dist/example/example_srpc.pb.d.ts +1 -1
- package/dist/example/example_srpc.pb.js +1 -1
- package/dist/example/other/other.pb.d.ts +1 -1
- package/dist/example/other/other.pb.js +4 -3
- package/go.mod +8 -8
- package/go.mod.tools +70 -73
- package/go.sum +14 -14
- package/go.sum.tools +150 -174
- package/package.json +15 -9
package/README.md
CHANGED
|
@@ -117,6 +117,9 @@ git add -A
|
|
|
117
117
|
# Generate all languages
|
|
118
118
|
go run github.com/aperturerobotics/common/cmd/aptre@latest generate
|
|
119
119
|
|
|
120
|
+
# Generate only Go output
|
|
121
|
+
go run github.com/aperturerobotics/common/cmd/aptre@latest generate --language go
|
|
122
|
+
|
|
120
123
|
# Or with verbose output
|
|
121
124
|
go run github.com/aperturerobotics/common/cmd/aptre@latest generate --verbose
|
|
122
125
|
```
|
|
@@ -197,11 +200,25 @@ Example:
|
|
|
197
200
|
"name": "spacewave",
|
|
198
201
|
"private": true,
|
|
199
202
|
"aptre": {
|
|
203
|
+
"languages": ["go", "ts", "cpp", "rust"],
|
|
200
204
|
"tsImportBoundaries": ["auth", "bldr", "db", "forge", "identity", "net"]
|
|
201
205
|
}
|
|
202
206
|
}
|
|
203
207
|
```
|
|
204
208
|
|
|
209
|
+
### `aptre.languages`
|
|
210
|
+
|
|
211
|
+
`languages` selects which output languages to generate. Supported values are
|
|
212
|
+
`go`, `ts`, `cpp`, and `rust`. Omit it to keep the default behavior: generate
|
|
213
|
+
Go, C++, and Rust when the project has a `go.mod`, plus TypeScript when the
|
|
214
|
+
project has a `package.json`.
|
|
215
|
+
|
|
216
|
+
The CLI flag takes precedence over `package.json`:
|
|
217
|
+
|
|
218
|
+
```bash
|
|
219
|
+
aptre generate --language go
|
|
220
|
+
```
|
|
221
|
+
|
|
205
222
|
### `aptre.tsImportBoundaries`
|
|
206
223
|
|
|
207
224
|
`tsImportBoundaries` configures how generated TypeScript protobuf imports are
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { OtherMsg } from './other/other.pb.js';
|
|
2
|
-
import type { MessageType } from '@aptre/protobuf-es-lite';
|
|
2
|
+
import type { MessageType } from '@aptre/protobuf-es-lite/message';
|
|
3
3
|
export declare const protobufPackage = "example";
|
|
4
4
|
/**
|
|
5
5
|
* ExampleMsg is an example message.
|
|
@@ -2,10 +2,11 @@
|
|
|
2
2
|
// @generated from file github.com/aperturerobotics/common/example/example.proto (package example, syntax proto3)
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
import { OtherMsg } from './other/other.pb.js';
|
|
5
|
-
import { createMessageType
|
|
5
|
+
import { createMessageType } from '@aptre/protobuf-es-lite/message';
|
|
6
|
+
import { ScalarType } from '@aptre/protobuf-es-lite/scalar';
|
|
6
7
|
export const protobufPackage = 'example';
|
|
7
|
-
|
|
8
|
-
|
|
8
|
+
export const ExampleMsg =
|
|
9
|
+
/* @__PURE__ */ createMessageType({
|
|
9
10
|
typeName: 'example.ExampleMsg',
|
|
10
11
|
fields: [
|
|
11
12
|
{ no: 1, name: 'example_field', kind: 'scalar', T: ScalarType.STRING },
|
|
@@ -13,8 +14,7 @@ export const ExampleMsg = createMessageType({
|
|
|
13
14
|
],
|
|
14
15
|
packedByDefault: true,
|
|
15
16
|
});
|
|
16
|
-
|
|
17
|
-
export const EchoMsg = createMessageType({
|
|
17
|
+
export const EchoMsg = /* @__PURE__ */ createMessageType({
|
|
18
18
|
typeName: 'example.EchoMsg',
|
|
19
19
|
fields: [
|
|
20
20
|
{ no: 1, name: 'body', kind: 'scalar', T: ScalarType.STRING },
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// @generated from file github.com/aperturerobotics/common/example/example.proto (package example, syntax proto3)
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
import { EchoMsg } from './example.pb.js';
|
|
5
|
-
import { MethodKind } from '@aptre/protobuf-es-lite';
|
|
5
|
+
import { MethodKind } from '@aptre/protobuf-es-lite/service-type';
|
|
6
6
|
/**
|
|
7
7
|
* Echoer service returns the given message.
|
|
8
8
|
*
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
// @generated by protoc-gen-es-lite unknown with parameter "target=ts,ts_nocheck=false"
|
|
2
2
|
// @generated from file github.com/aperturerobotics/common/example/other/other.proto (package example.other, syntax proto3)
|
|
3
3
|
/* eslint-disable */
|
|
4
|
-
import { createMessageType
|
|
4
|
+
import { createMessageType } from '@aptre/protobuf-es-lite/message';
|
|
5
|
+
import { ScalarType } from '@aptre/protobuf-es-lite/scalar';
|
|
5
6
|
export const protobufPackage = 'example.other';
|
|
6
|
-
|
|
7
|
-
|
|
7
|
+
export const OtherMsg =
|
|
8
|
+
/* @__PURE__ */ createMessageType({
|
|
8
9
|
typeName: 'example.other.OtherMsg',
|
|
9
10
|
fields: [
|
|
10
11
|
{ no: 1, name: 'foo_field', kind: 'scalar', T: ScalarType.UINT32 },
|
package/go.mod
CHANGED
|
@@ -10,18 +10,18 @@ require (
|
|
|
10
10
|
github.com/aperturerobotics/go-websocket v1.8.15-0.20260329113544-74dbfb8f11c6 // indirect
|
|
11
11
|
github.com/aperturerobotics/json-iterator-lite v1.0.1-0.20251104042408-0c9eb8a3f726 // indirect
|
|
12
12
|
github.com/aperturerobotics/protobuf v0.0.0-20260203024654-8201686529c4 // wasi
|
|
13
|
-
github.com/aperturerobotics/protobuf-go-lite v0.
|
|
14
|
-
github.com/aperturerobotics/starpc v0.49.
|
|
15
|
-
github.com/aperturerobotics/util v1.34.
|
|
13
|
+
github.com/aperturerobotics/protobuf-go-lite v0.14.0 // latest
|
|
14
|
+
github.com/aperturerobotics/starpc v0.49.18 // master
|
|
15
|
+
github.com/aperturerobotics/util v1.34.5 // indirect
|
|
16
16
|
)
|
|
17
17
|
|
|
18
18
|
require (
|
|
19
19
|
github.com/libp2p/go-buffer-pool v0.1.0 // indirect
|
|
20
20
|
github.com/libp2p/go-yamux/v4 v4.0.2 // indirect
|
|
21
|
-
github.com/pkg/errors v0.9.1
|
|
22
|
-
github.com/sirupsen/logrus v1.9.5-0.
|
|
23
|
-
github.com/tetratelabs/wazero v1.
|
|
21
|
+
github.com/pkg/errors v0.9.1
|
|
22
|
+
github.com/sirupsen/logrus v1.9.5-0.20260508084601-d4a50659cfd6 // indirect
|
|
23
|
+
github.com/tetratelabs/wazero v1.12.0
|
|
24
24
|
github.com/xrash/smetrics v0.0.0-20250705151800-55b8f293f342 // indirect
|
|
25
|
-
golang.org/x/mod v0.
|
|
26
|
-
golang.org/x/sys v0.
|
|
25
|
+
golang.org/x/mod v0.37.0
|
|
26
|
+
golang.org/x/sys v0.44.0 // indirect
|
|
27
27
|
)
|
package/go.mod.tools
CHANGED
|
@@ -1,24 +1,24 @@
|
|
|
1
1
|
module tools
|
|
2
2
|
|
|
3
|
-
go 1.26.
|
|
3
|
+
go 1.26.3
|
|
4
4
|
|
|
5
5
|
require (
|
|
6
6
|
github.com/aperturerobotics/abseil-cpp v0.0.0-20260131110040-4bb56e2f9017 // indirect; aperture-2
|
|
7
7
|
github.com/aperturerobotics/goprotowrap v0.4.1 // latest
|
|
8
8
|
github.com/aperturerobotics/protobuf v0.0.0-20260203024654-8201686529c4 // indirect; wasi
|
|
9
9
|
// github.com/aperturerobotics/goscript v0.0.61 // master
|
|
10
|
-
github.com/aperturerobotics/protobuf-go-lite v0.
|
|
11
|
-
github.com/aperturerobotics/starpc v0.49.
|
|
10
|
+
github.com/aperturerobotics/protobuf-go-lite v0.14.0 // latest
|
|
11
|
+
github.com/aperturerobotics/starpc v0.49.18 // latest
|
|
12
12
|
)
|
|
13
13
|
|
|
14
14
|
require (
|
|
15
15
|
github.com/agnivade/wasmbrowsertest v0.11.0 // cancelCtx
|
|
16
|
-
github.com/golangci/golangci-lint/v2 v2.
|
|
17
|
-
github.com/goreleaser/goreleaser/v2 v2.
|
|
16
|
+
github.com/golangci/golangci-lint/v2 v2.12.2
|
|
17
|
+
github.com/goreleaser/goreleaser/v2 v2.16.0 // latest
|
|
18
18
|
github.com/psampaz/go-mod-outdated v0.9.0 // latest
|
|
19
|
-
golang.org/x/tools v0.
|
|
19
|
+
golang.org/x/tools v0.46.0 // latest
|
|
20
20
|
google.golang.org/grpc v1.80.0 // indirect; latest
|
|
21
|
-
mvdan.cc/gofumpt v0.
|
|
21
|
+
mvdan.cc/gofumpt v0.10.0 // latest
|
|
22
22
|
)
|
|
23
23
|
|
|
24
24
|
require (
|
|
@@ -32,11 +32,11 @@ require (
|
|
|
32
32
|
cloud.google.com/go/auth/oauth2adapt v0.2.8 // indirect
|
|
33
33
|
cloud.google.com/go/compute/metadata v0.9.0 // indirect
|
|
34
34
|
cloud.google.com/go/iam v1.7.0 // indirect
|
|
35
|
-
cloud.google.com/go/kms v1.
|
|
35
|
+
cloud.google.com/go/kms v1.31.0 // indirect
|
|
36
36
|
cloud.google.com/go/longrunning v0.9.0 // indirect
|
|
37
37
|
cloud.google.com/go/monitoring v1.24.3 // indirect
|
|
38
38
|
cloud.google.com/go/storage v1.59.2 // indirect
|
|
39
|
-
code.gitea.io/sdk/gitea v0.
|
|
39
|
+
code.gitea.io/sdk/gitea v0.25.1 // indirect
|
|
40
40
|
codeberg.org/chavacava/garif v0.2.0 // indirect
|
|
41
41
|
codeberg.org/polyfloyd/go-errorlint v1.9.0 // indirect
|
|
42
42
|
dario.cat/mergo v1.0.2 // indirect
|
|
@@ -72,19 +72,20 @@ require (
|
|
|
72
72
|
github.com/Azure/go-autorest/tracing v0.6.1 // indirect
|
|
73
73
|
github.com/AzureAD/microsoft-authentication-library-for-go v1.6.0 // indirect
|
|
74
74
|
github.com/BurntSushi/toml v1.6.0 // indirect
|
|
75
|
+
github.com/ClickHouse/clickhouse-go-linter v1.2.0 // indirect
|
|
75
76
|
github.com/Djarvur/go-err113 v0.1.1 // indirect
|
|
76
77
|
github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.31.0 // indirect
|
|
77
78
|
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric v0.55.0 // indirect
|
|
78
79
|
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.55.0 // indirect
|
|
79
80
|
github.com/Masterminds/goutils v1.1.1 // indirect
|
|
80
|
-
github.com/Masterminds/semver/v3 v3.
|
|
81
|
+
github.com/Masterminds/semver/v3 v3.5.0 // indirect
|
|
81
82
|
github.com/Masterminds/sprig/v3 v3.3.0 // indirect
|
|
82
83
|
github.com/Microsoft/go-winio v0.6.2 // indirect
|
|
83
84
|
github.com/MirrexOne/unqueryvet v1.5.4 // indirect
|
|
84
85
|
github.com/OpenPeeDeeP/depguard/v2 v2.2.1 // indirect
|
|
85
86
|
github.com/ProtonMail/go-crypto v1.4.1 // indirect
|
|
86
87
|
github.com/agnivade/levenshtein v1.2.1 // indirect
|
|
87
|
-
github.com/alecthomas/chroma/v2 v2.
|
|
88
|
+
github.com/alecthomas/chroma/v2 v2.24.1 // indirect
|
|
88
89
|
github.com/alecthomas/go-check-sumtype v0.3.1 // indirect
|
|
89
90
|
github.com/alexkohler/nakedret/v2 v2.0.6 // indirect
|
|
90
91
|
github.com/alexkohler/prealloc v1.1.0 // indirect
|
|
@@ -93,35 +94,34 @@ require (
|
|
|
93
94
|
github.com/alingse/nilnesserr v0.2.0 // indirect
|
|
94
95
|
github.com/anchore/go-macholibre v0.0.0-20250826193721-3cd206ca93aa // indirect
|
|
95
96
|
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 // indirect
|
|
96
|
-
github.com/ashanbrown/forbidigo/v2 v2.3.
|
|
97
|
-
github.com/ashanbrown/makezero/v2 v2.1
|
|
97
|
+
github.com/ashanbrown/forbidigo/v2 v2.3.1 // indirect
|
|
98
|
+
github.com/ashanbrown/makezero/v2 v2.2.1 // indirect
|
|
98
99
|
github.com/atc0005/go-teams-notify/v2 v2.14.0 // indirect
|
|
99
100
|
github.com/avast/retry-go/v4 v4.7.0 // indirect
|
|
100
|
-
github.com/aws/aws-sdk-go-v2 v1.41.
|
|
101
|
-
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.7.
|
|
101
|
+
github.com/aws/aws-sdk-go-v2 v1.41.7 // indirect
|
|
102
|
+
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.7.10 // indirect
|
|
102
103
|
github.com/aws/aws-sdk-go-v2/config v1.32.12 // indirect
|
|
103
104
|
github.com/aws/aws-sdk-go-v2/credentials v1.19.12 // indirect
|
|
104
105
|
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.18.20 // indirect
|
|
105
106
|
github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.21.1 // indirect
|
|
106
|
-
github.com/aws/aws-sdk-go-v2/internal/configsources v1.4.
|
|
107
|
-
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.7.
|
|
107
|
+
github.com/aws/aws-sdk-go-v2/internal/configsources v1.4.23 // indirect
|
|
108
|
+
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.7.23 // indirect
|
|
108
109
|
github.com/aws/aws-sdk-go-v2/internal/ini v1.8.6 // indirect
|
|
109
|
-
github.com/aws/aws-sdk-go-v2/internal/v4a v1.4.
|
|
110
|
+
github.com/aws/aws-sdk-go-v2/internal/v4a v1.4.24 // indirect
|
|
110
111
|
github.com/aws/aws-sdk-go-v2/service/ecr v1.56.0 // indirect
|
|
111
112
|
github.com/aws/aws-sdk-go-v2/service/ecrpublic v1.38.11 // indirect
|
|
112
|
-
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.13.
|
|
113
|
-
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.9.
|
|
114
|
-
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.13.
|
|
115
|
-
github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.19.
|
|
113
|
+
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.13.9 // indirect
|
|
114
|
+
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.9.15 // indirect
|
|
115
|
+
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.13.23 // indirect
|
|
116
|
+
github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.19.23 // indirect
|
|
116
117
|
github.com/aws/aws-sdk-go-v2/service/kms v1.50.3 // indirect
|
|
117
|
-
github.com/aws/aws-sdk-go-v2/service/s3 v1.
|
|
118
|
+
github.com/aws/aws-sdk-go-v2/service/s3 v1.101.0 // indirect
|
|
118
119
|
github.com/aws/aws-sdk-go-v2/service/signin v1.0.8 // indirect
|
|
119
120
|
github.com/aws/aws-sdk-go-v2/service/sso v1.30.13 // indirect
|
|
120
121
|
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.35.17 // indirect
|
|
121
122
|
github.com/aws/aws-sdk-go-v2/service/sts v1.41.9 // indirect
|
|
122
|
-
github.com/aws/smithy-go v1.25.
|
|
123
|
+
github.com/aws/smithy-go v1.25.1 // indirect
|
|
123
124
|
github.com/awslabs/amazon-ecr-credential-helper/ecr-login v0.12.0 // indirect
|
|
124
|
-
github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect
|
|
125
125
|
github.com/bahlo/generic-list-go v0.2.0 // indirect
|
|
126
126
|
github.com/beorn7/perks v1.0.1 // indirect
|
|
127
127
|
github.com/bkielbasa/cyclop v1.2.3 // indirect
|
|
@@ -132,13 +132,13 @@ require (
|
|
|
132
132
|
github.com/blizzy78/varnamelen v0.8.0 // indirect
|
|
133
133
|
github.com/bluesky-social/indigo v0.0.0-20240813042137-4006c0eca043 // indirect
|
|
134
134
|
github.com/bombsimon/wsl/v4 v4.7.0 // indirect
|
|
135
|
-
github.com/bombsimon/wsl/v5 v5.
|
|
135
|
+
github.com/bombsimon/wsl/v5 v5.8.0 // indirect
|
|
136
136
|
github.com/breml/bidichk v0.3.3 // indirect
|
|
137
137
|
github.com/breml/errchkjson v0.4.1 // indirect
|
|
138
138
|
github.com/buger/jsonparser v1.1.2 // indirect
|
|
139
|
-
github.com/butuzov/ireturn v0.4.
|
|
139
|
+
github.com/butuzov/ireturn v0.4.1 // indirect
|
|
140
140
|
github.com/butuzov/mirror v1.3.0 // indirect
|
|
141
|
-
github.com/caarlos0/env/v11 v11.4.
|
|
141
|
+
github.com/caarlos0/env/v11 v11.4.1 // indirect
|
|
142
142
|
github.com/caarlos0/go-reddit/v3 v3.0.1 // indirect
|
|
143
143
|
github.com/caarlos0/go-version v0.2.2 // indirect
|
|
144
144
|
github.com/caarlos0/log v0.6.0 // indirect
|
|
@@ -152,10 +152,8 @@ require (
|
|
|
152
152
|
github.com/charithe/durationcheck v0.0.11 // indirect
|
|
153
153
|
github.com/charmbracelet/colorprofile v0.4.3 // indirect
|
|
154
154
|
github.com/charmbracelet/fang v1.0.0 // indirect
|
|
155
|
-
github.com/charmbracelet/lipgloss v1.1.0 // indirect
|
|
156
155
|
github.com/charmbracelet/ultraviolet v0.0.0-20251205161215-1948445e3318 // indirect
|
|
157
156
|
github.com/charmbracelet/x/ansi v0.11.7 // indirect
|
|
158
|
-
github.com/charmbracelet/x/cellbuf v0.0.14 // indirect
|
|
159
157
|
github.com/charmbracelet/x/exp/charmtone v0.0.0-20250603201427-c31516f43444 // indirect
|
|
160
158
|
github.com/charmbracelet/x/term v0.2.2 // indirect
|
|
161
159
|
github.com/charmbracelet/x/termios v0.1.1 // indirect
|
|
@@ -171,11 +169,10 @@ require (
|
|
|
171
169
|
github.com/cncf/xds/go v0.0.0-20251210132809-ee656c7534f5 // indirect
|
|
172
170
|
github.com/containerd/errdefs v1.0.0 // indirect
|
|
173
171
|
github.com/containerd/errdefs/pkg v0.3.0 // indirect
|
|
174
|
-
github.com/containerd/stargz-snapshotter/estargz v0.18.2 // indirect
|
|
175
172
|
github.com/coreos/go-oidc/v3 v3.18.0 // indirect
|
|
176
173
|
github.com/curioswitch/go-reassign v0.3.0 // indirect
|
|
177
174
|
github.com/cyberphone/json-canonicalization v0.0.0-20241213102144-19d51d7fe467 // indirect
|
|
178
|
-
github.com/cyphar/filepath-securejoin v0.
|
|
175
|
+
github.com/cyphar/filepath-securejoin v0.6.1 // indirect
|
|
179
176
|
github.com/daixiang0/gci v0.13.7 // indirect
|
|
180
177
|
github.com/dave/dst v0.27.3 // indirect
|
|
181
178
|
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
|
|
@@ -188,10 +185,10 @@ require (
|
|
|
188
185
|
github.com/digitorus/timestamp v0.0.0-20250524132541-c45532741eea // indirect
|
|
189
186
|
github.com/dimchansky/utfbom v1.1.1 // indirect
|
|
190
187
|
github.com/distribution/reference v0.6.0 // indirect
|
|
191
|
-
github.com/dlclark/regexp2 v1.
|
|
192
|
-
github.com/docker/cli v29.4.
|
|
188
|
+
github.com/dlclark/regexp2 v1.12.0 // indirect
|
|
189
|
+
github.com/docker/cli v29.4.3+incompatible // indirect
|
|
193
190
|
github.com/docker/docker-credential-helpers v0.9.5 // indirect
|
|
194
|
-
github.com/docker/go-connections v0.
|
|
191
|
+
github.com/docker/go-connections v0.7.0 // indirect
|
|
195
192
|
github.com/docker/go-units v0.5.0 // indirect
|
|
196
193
|
github.com/dustin/go-humanize v1.0.1 // indirect
|
|
197
194
|
github.com/emirpasic/gods v1.18.1 // indirect
|
|
@@ -211,8 +208,8 @@ require (
|
|
|
211
208
|
github.com/go-critic/go-critic v0.14.3 // indirect
|
|
212
209
|
github.com/go-fed/httpsig v1.1.0 // indirect
|
|
213
210
|
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect
|
|
214
|
-
github.com/go-git/go-billy/v5 v5.
|
|
215
|
-
github.com/go-git/go-git/v5 v5.
|
|
211
|
+
github.com/go-git/go-billy/v5 v5.9.0 // indirect
|
|
212
|
+
github.com/go-git/go-git/v5 v5.19.1 // indirect
|
|
216
213
|
github.com/go-interpreter/wagon v0.6.0 // indirect
|
|
217
214
|
github.com/go-jose/go-jose/v4 v4.1.4 // indirect
|
|
218
215
|
github.com/go-logr/logr v1.4.3 // indirect
|
|
@@ -260,19 +257,20 @@ require (
|
|
|
260
257
|
github.com/golang/groupcache v0.0.0-20241129210726-2c02b8208cf8 // indirect
|
|
261
258
|
github.com/golang/protobuf v1.5.4 // indirect
|
|
262
259
|
github.com/golangci/asciicheck v0.5.0 // indirect
|
|
263
|
-
github.com/golangci/dupl v0.0.0-
|
|
260
|
+
github.com/golangci/dupl v0.0.0-20260401084720-c99c5cf5c202 // indirect
|
|
264
261
|
github.com/golangci/go-printf-func-name v0.1.1 // indirect
|
|
265
262
|
github.com/golangci/gofmt v0.0.0-20250106114630-d62b90e6713d // indirect
|
|
266
263
|
github.com/golangci/golines v0.15.0 // indirect
|
|
267
264
|
github.com/golangci/misspell v0.8.0 // indirect
|
|
268
265
|
github.com/golangci/plugin-module-register v0.1.2 // indirect
|
|
269
266
|
github.com/golangci/revgrep v0.8.0 // indirect
|
|
267
|
+
github.com/golangci/rowserrcheck v0.0.0-20260419091836-c5f79b8a11ba // indirect
|
|
270
268
|
github.com/golangci/swaggoswag v0.0.0-20250504205917-77f2aca3143e // indirect
|
|
271
269
|
github.com/golangci/unconvert v0.0.0-20250410112200-a129a6e6413e // indirect
|
|
272
270
|
github.com/google/certificate-transparency-go v1.3.3 // indirect
|
|
273
271
|
github.com/google/go-cmp v0.7.0 // indirect
|
|
274
|
-
github.com/google/go-containerregistry v0.21.
|
|
275
|
-
github.com/google/go-github/
|
|
272
|
+
github.com/google/go-containerregistry v0.21.6 // indirect
|
|
273
|
+
github.com/google/go-github/v88 v88.0.0 // indirect
|
|
276
274
|
github.com/google/go-querystring v1.2.0 // indirect
|
|
277
275
|
github.com/google/ko v0.18.2-0.20260407063826-ae9c7272d7de // indirect
|
|
278
276
|
github.com/google/pprof v0.0.0-20260115054156-294ebfa9ad83 // indirect
|
|
@@ -287,7 +285,7 @@ require (
|
|
|
287
285
|
github.com/goreleaser/fileglob v1.4.0 // indirect
|
|
288
286
|
github.com/goreleaser/go-shellwords v1.0.13 // indirect
|
|
289
287
|
github.com/goreleaser/nfpm/v2 v2.46.3 // indirect
|
|
290
|
-
github.com/goreleaser/quill v0.0.0-
|
|
288
|
+
github.com/goreleaser/quill v0.0.0-20260503024558-dbc159c51d43 // indirect
|
|
291
289
|
github.com/gorilla/websocket v1.5.3 // indirect
|
|
292
290
|
github.com/gostaticanalysis/analysisutil v0.7.1 // indirect
|
|
293
291
|
github.com/gostaticanalysis/comment v1.5.0 // indirect
|
|
@@ -299,15 +297,15 @@ require (
|
|
|
299
297
|
github.com/hashicorp/go-immutable-radix/v2 v2.1.0 // indirect
|
|
300
298
|
github.com/hashicorp/go-multierror v1.1.1 // indirect
|
|
301
299
|
github.com/hashicorp/go-retryablehttp v0.7.8 // indirect
|
|
302
|
-
github.com/hashicorp/go-version v1.
|
|
300
|
+
github.com/hashicorp/go-version v1.9.0 // indirect
|
|
303
301
|
github.com/hashicorp/golang-lru v1.0.2 // indirect
|
|
304
302
|
github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect
|
|
305
303
|
github.com/hexops/gotextdiff v1.0.3 // indirect
|
|
306
304
|
github.com/huandu/xstrings v1.5.0 // indirect
|
|
307
305
|
github.com/in-toto/attestation v1.1.2 // indirect
|
|
308
|
-
github.com/in-toto/in-toto-golang v0.
|
|
306
|
+
github.com/in-toto/in-toto-golang v0.11.0 // indirect
|
|
309
307
|
github.com/inconshreveable/mousetrap v1.1.0 // indirect
|
|
310
|
-
github.com/invopop/jsonschema v0.
|
|
308
|
+
github.com/invopop/jsonschema v0.14.0 // indirect
|
|
311
309
|
github.com/ipfs/bbloom v0.0.4 // indirect
|
|
312
310
|
github.com/ipfs/go-block-format v0.2.0 // indirect
|
|
313
311
|
github.com/ipfs/go-cid v0.4.1 // indirect
|
|
@@ -323,8 +321,7 @@ require (
|
|
|
323
321
|
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
|
|
324
322
|
github.com/jbenet/goprocess v0.1.4 // indirect
|
|
325
323
|
github.com/jedisct1/go-minisign v0.0.0-20241212093149-d2f9f49435c7 // indirect
|
|
326
|
-
github.com/jgautheron/goconst v1.
|
|
327
|
-
github.com/jingyugao/rowserrcheck v1.1.1 // indirect
|
|
324
|
+
github.com/jgautheron/goconst v1.10.0 // indirect
|
|
328
325
|
github.com/jjti/go-spancheck v0.6.5 // indirect
|
|
329
326
|
github.com/josharian/intern v1.0.0 // indirect
|
|
330
327
|
github.com/julz/importas v0.2.0 // indirect
|
|
@@ -332,8 +329,8 @@ require (
|
|
|
332
329
|
github.com/kevinburke/ssh_config v1.2.0 // indirect
|
|
333
330
|
github.com/kisielk/errcheck v1.10.0 // indirect
|
|
334
331
|
github.com/kkHAIKE/contextcheck v1.1.6 // indirect
|
|
335
|
-
github.com/klauspost/compress v1.18.
|
|
336
|
-
github.com/klauspost/cpuid/v2 v2.
|
|
332
|
+
github.com/klauspost/compress v1.18.6 // indirect
|
|
333
|
+
github.com/klauspost/cpuid/v2 v2.3.0 // indirect
|
|
337
334
|
github.com/klauspost/pgzip v1.2.6 // indirect
|
|
338
335
|
github.com/kulti/thelper v0.7.1 // indirect
|
|
339
336
|
github.com/kunwardeep/paralleltest v1.0.15 // indirect
|
|
@@ -350,7 +347,7 @@ require (
|
|
|
350
347
|
github.com/macabu/inamedparam v0.2.0 // indirect
|
|
351
348
|
github.com/mailru/easyjson v0.9.0 // indirect
|
|
352
349
|
github.com/manuelarte/embeddedstructfieldcheck v0.4.0 // indirect
|
|
353
|
-
github.com/manuelarte/funcorder v0.
|
|
350
|
+
github.com/manuelarte/funcorder v0.6.0 // indirect
|
|
354
351
|
github.com/maratori/testableexamples v1.0.1 // indirect
|
|
355
352
|
github.com/maratori/testpackage v1.1.2 // indirect
|
|
356
353
|
github.com/matoous/godox v1.1.0 // indirect
|
|
@@ -364,10 +361,10 @@ require (
|
|
|
364
361
|
github.com/mitchellh/go-homedir v1.1.0 // indirect
|
|
365
362
|
github.com/mitchellh/reflectwalk v1.0.2 // indirect
|
|
366
363
|
github.com/moby/docker-image-spec v1.3.1 // indirect
|
|
367
|
-
github.com/moby/moby/api v1.54.
|
|
368
|
-
github.com/moby/moby/client v0.4.
|
|
364
|
+
github.com/moby/moby/api v1.54.2 // indirect
|
|
365
|
+
github.com/moby/moby/client v0.4.1 // indirect
|
|
369
366
|
github.com/moby/term v0.5.2 // indirect
|
|
370
|
-
github.com/modelcontextprotocol/registry v1.
|
|
367
|
+
github.com/modelcontextprotocol/registry v1.7.9 // indirect
|
|
371
368
|
github.com/moricho/tparallel v0.3.2 // indirect
|
|
372
369
|
github.com/mr-tron/base58 v1.2.0 // indirect
|
|
373
370
|
github.com/muesli/cancelreader v0.2.2 // indirect
|
|
@@ -375,7 +372,6 @@ require (
|
|
|
375
372
|
github.com/muesli/mango-cobra v1.3.0 // indirect
|
|
376
373
|
github.com/muesli/mango-pflag v0.1.0 // indirect
|
|
377
374
|
github.com/muesli/roff v0.1.0 // indirect
|
|
378
|
-
github.com/muesli/termenv v0.16.0 // indirect
|
|
379
375
|
github.com/multiformats/go-base32 v0.1.0 // indirect
|
|
380
376
|
github.com/multiformats/go-base36 v0.2.0 // indirect
|
|
381
377
|
github.com/multiformats/go-multibase v0.2.0 // indirect
|
|
@@ -391,9 +387,10 @@ require (
|
|
|
391
387
|
github.com/opencontainers/go-digest v1.0.0 // indirect
|
|
392
388
|
github.com/opencontainers/image-spec v1.1.1 // indirect
|
|
393
389
|
github.com/opentracing/opentracing-go v1.2.0 // indirect
|
|
390
|
+
github.com/pb33f/ordered-map/v2 v2.3.1 // indirect
|
|
394
391
|
github.com/pelletier/go-toml v1.9.5 // indirect
|
|
395
|
-
github.com/pelletier/go-toml/v2 v2.
|
|
396
|
-
github.com/pjbgf/sha1cd v0.
|
|
392
|
+
github.com/pelletier/go-toml/v2 v2.3.1 // indirect
|
|
393
|
+
github.com/pjbgf/sha1cd v0.6.0 // indirect
|
|
397
394
|
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect
|
|
398
395
|
github.com/pkg/errors v0.9.1 // indirect
|
|
399
396
|
github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10 // indirect
|
|
@@ -412,6 +409,7 @@ require (
|
|
|
412
409
|
github.com/rivo/uniseg v0.4.7 // indirect
|
|
413
410
|
github.com/rogpeppe/go-internal v1.14.1 // indirect
|
|
414
411
|
github.com/ryancurrah/gomodguard v1.4.1 // indirect
|
|
412
|
+
github.com/ryancurrah/gomodguard/v2 v2.1.3 // indirect
|
|
415
413
|
github.com/ryanrolds/sqlclosecheck v0.6.0 // indirect
|
|
416
414
|
github.com/sagikazarmark/locafero v0.12.0 // indirect
|
|
417
415
|
github.com/sanposhiho/wastedassign/v2 v2.1.0 // indirect
|
|
@@ -422,7 +420,7 @@ require (
|
|
|
422
420
|
github.com/sassoftware/relic v7.2.1+incompatible // indirect
|
|
423
421
|
github.com/scylladb/go-set v1.0.3-0.20200225121959-cc7b2070d91e // indirect
|
|
424
422
|
github.com/secure-systems-lab/go-securesystemslib v0.10.0 // indirect
|
|
425
|
-
github.com/securego/gosec/v2 v2.
|
|
423
|
+
github.com/securego/gosec/v2 v2.26.1 // indirect
|
|
426
424
|
github.com/sergi/go-diff v1.4.0 // indirect
|
|
427
425
|
github.com/shibumi/go-pathspec v1.3.0 // indirect
|
|
428
426
|
github.com/shopspring/decimal v1.4.0 // indirect
|
|
@@ -433,12 +431,12 @@ require (
|
|
|
433
431
|
github.com/sigstore/sigstore v1.10.5 // indirect
|
|
434
432
|
github.com/sigstore/sigstore-go v1.1.4 // indirect
|
|
435
433
|
github.com/sigstore/timestamp-authority/v2 v2.0.6 // indirect
|
|
436
|
-
github.com/sirupsen/logrus v1.9.5-0.
|
|
434
|
+
github.com/sirupsen/logrus v1.9.5-0.20260508084601-d4a50659cfd6 // indirect
|
|
437
435
|
github.com/sivchari/containedctx v1.0.3 // indirect
|
|
438
436
|
github.com/skeema/knownhosts v1.3.1 // indirect
|
|
439
|
-
github.com/slack-go/slack v0.
|
|
437
|
+
github.com/slack-go/slack v0.23.1 // indirect
|
|
440
438
|
github.com/sonatard/noctx v0.5.1 // indirect
|
|
441
|
-
github.com/sourcegraph/go-diff v0.
|
|
439
|
+
github.com/sourcegraph/go-diff v0.8.0 // indirect
|
|
442
440
|
github.com/spaolacci/murmur3 v1.1.0 // indirect
|
|
443
441
|
github.com/spf13/afero v1.15.0 // indirect
|
|
444
442
|
github.com/spf13/cast v1.10.0 // indirect
|
|
@@ -451,10 +449,10 @@ require (
|
|
|
451
449
|
github.com/stretchr/objx v0.5.2 // indirect
|
|
452
450
|
github.com/stretchr/testify v1.11.1 // indirect
|
|
453
451
|
github.com/subosito/gotenv v1.6.0 // indirect
|
|
454
|
-
github.com/tetafro/godot v1.5.
|
|
452
|
+
github.com/tetafro/godot v1.5.6 // indirect
|
|
455
453
|
github.com/theupdateframework/go-tuf v0.7.0 // indirect
|
|
456
454
|
github.com/theupdateframework/go-tuf/v2 v2.4.1 // indirect
|
|
457
|
-
github.com/timakin/bodyclose v0.0.0-
|
|
455
|
+
github.com/timakin/bodyclose v0.0.0-20260129054331-73d1f95b84b4 // indirect
|
|
458
456
|
github.com/timonwong/loggercheck v0.11.0 // indirect
|
|
459
457
|
github.com/tomarrell/wrapcheck/v2 v2.12.0 // indirect
|
|
460
458
|
github.com/tommy-muehle/go-mnd/v2 v2.5.1 // indirect
|
|
@@ -465,11 +463,9 @@ require (
|
|
|
465
463
|
github.com/ultraware/funlen v0.2.0 // indirect
|
|
466
464
|
github.com/ultraware/whitespace v0.2.0 // indirect
|
|
467
465
|
github.com/uudashr/gocognit v1.2.1 // indirect
|
|
468
|
-
github.com/uudashr/iface v1.4.
|
|
469
|
-
github.com/vbatts/tar-split v0.12.2 // indirect
|
|
466
|
+
github.com/uudashr/iface v1.4.2 // indirect
|
|
470
467
|
github.com/wagoodman/go-progress v0.0.0-20230925121702-07e42b3cdba0 // indirect
|
|
471
468
|
github.com/whyrusleeping/cbor-gen v0.1.3-0.20240731173018-74d74643234c // indirect
|
|
472
|
-
github.com/wk8/go-ordered-map/v2 v2.1.8 // indirect
|
|
473
469
|
github.com/xanzy/ssh-agent v0.3.3 // indirect
|
|
474
470
|
github.com/xen0n/gosmopolitan v1.3.0 // indirect
|
|
475
471
|
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect
|
|
@@ -480,7 +476,7 @@ require (
|
|
|
480
476
|
gitlab.com/digitalxero/go-conventional-commit v1.0.7 // indirect
|
|
481
477
|
gitlab.com/gitlab-org/api/client-go v1.46.0 // indirect
|
|
482
478
|
go-simpler.org/musttag v0.14.0 // indirect
|
|
483
|
-
go-simpler.org/sloglint v0.
|
|
479
|
+
go-simpler.org/sloglint v0.12.0 // indirect
|
|
484
480
|
go.augendre.info/arangolint v0.4.0 // indirect
|
|
485
481
|
go.augendre.info/fatcontext v0.9.0 // indirect
|
|
486
482
|
go.opentelemetry.io/auto/sdk v1.2.1 // indirect
|
|
@@ -497,17 +493,18 @@ require (
|
|
|
497
493
|
go.uber.org/zap v1.27.1 // indirect
|
|
498
494
|
go.yaml.in/yaml/v2 v2.4.4 // indirect
|
|
499
495
|
go.yaml.in/yaml/v3 v3.0.4 // indirect
|
|
496
|
+
go.yaml.in/yaml/v4 v4.0.0-rc.4 // indirect
|
|
500
497
|
gocloud.dev v0.45.0 // indirect
|
|
501
|
-
golang.org/x/crypto v0.
|
|
498
|
+
golang.org/x/crypto v0.53.0 // indirect
|
|
502
499
|
golang.org/x/exp/typeparams v0.0.0-20260209203927-2842357ff358 // indirect
|
|
503
|
-
golang.org/x/mod v0.
|
|
504
|
-
golang.org/x/net v0.
|
|
500
|
+
golang.org/x/mod v0.37.0 // indirect
|
|
501
|
+
golang.org/x/net v0.56.0 // indirect
|
|
505
502
|
golang.org/x/oauth2 v0.36.0 // indirect
|
|
506
|
-
golang.org/x/sync v0.
|
|
507
|
-
golang.org/x/sys v0.
|
|
508
|
-
golang.org/x/telemetry v0.0.0-
|
|
509
|
-
golang.org/x/term v0.
|
|
510
|
-
golang.org/x/text v0.
|
|
503
|
+
golang.org/x/sync v0.21.0 // indirect
|
|
504
|
+
golang.org/x/sys v0.46.0 // indirect
|
|
505
|
+
golang.org/x/telemetry v0.0.0-20260610154732-fb80ec83bdd9 // indirect
|
|
506
|
+
golang.org/x/term v0.44.0 // indirect
|
|
507
|
+
golang.org/x/text v0.38.0 // indirect
|
|
511
508
|
golang.org/x/time v0.15.0 // indirect
|
|
512
509
|
golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da // indirect
|
|
513
510
|
google.golang.org/api v0.274.0 // indirect
|
package/go.sum
CHANGED
|
@@ -12,12 +12,12 @@ github.com/aperturerobotics/json-iterator-lite v1.0.1-0.20251104042408-0c9eb8a3f
|
|
|
12
12
|
github.com/aperturerobotics/json-iterator-lite v1.0.1-0.20251104042408-0c9eb8a3f726/go.mod h1:SvGGBv3OVxUyqO0ZxA/nvs6z3cg7NIbZ64TnbV2OISo=
|
|
13
13
|
github.com/aperturerobotics/protobuf v0.0.0-20260203024654-8201686529c4 h1:4Dy3BAHh2kgVdHAqtlwcFsgY0kAwUe2m3rfFcaGwGQg=
|
|
14
14
|
github.com/aperturerobotics/protobuf v0.0.0-20260203024654-8201686529c4/go.mod h1:tMgO7y6SJo/d9ZcvrpNqIQtdYT9de+QmYaHOZ4KnhOg=
|
|
15
|
-
github.com/aperturerobotics/protobuf-go-lite v0.
|
|
16
|
-
github.com/aperturerobotics/protobuf-go-lite v0.
|
|
17
|
-
github.com/aperturerobotics/starpc v0.49.
|
|
18
|
-
github.com/aperturerobotics/starpc v0.49.
|
|
19
|
-
github.com/aperturerobotics/util v1.34.
|
|
20
|
-
github.com/aperturerobotics/util v1.34.
|
|
15
|
+
github.com/aperturerobotics/protobuf-go-lite v0.14.0 h1:6YhovtoUZtXgXLHZ2VV2GCYUzFfi8UN6172Vl2flNlE=
|
|
16
|
+
github.com/aperturerobotics/protobuf-go-lite v0.14.0/go.mod h1:lGH3s5ArCTXKI4wJdlNpaybUtwSjfAG0vdWjxOfMcF8=
|
|
17
|
+
github.com/aperturerobotics/starpc v0.49.18 h1:ZDxYN6Dncm+e7WzVvvF/9ja3Bh34ETgZyciL+BIvqbU=
|
|
18
|
+
github.com/aperturerobotics/starpc v0.49.18/go.mod h1:5SIPOGIoUG7dLpb1NzZG2qK9l1T5oZ2454yzyMukviw=
|
|
19
|
+
github.com/aperturerobotics/util v1.34.5 h1:007MaOJrrsiGm5o1c8Tt7p8nVwUAxkM6pmGflrBww/U=
|
|
20
|
+
github.com/aperturerobotics/util v1.34.5/go.mod h1:mDe7WnncVuV7yjeeVSsagyfrw4xfncu7d+f0+d70niY=
|
|
21
21
|
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
|
|
22
22
|
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
|
23
23
|
github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8=
|
|
@@ -30,18 +30,18 @@ github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=
|
|
|
30
30
|
github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
|
|
31
31
|
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
|
|
32
32
|
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
|
|
33
|
-
github.com/sirupsen/logrus v1.9.5-0.
|
|
34
|
-
github.com/sirupsen/logrus v1.9.5-0.
|
|
33
|
+
github.com/sirupsen/logrus v1.9.5-0.20260508084601-d4a50659cfd6 h1:D6qewLO/pJ+JvUwuri1dmCbc32d/eO+xyqg+p3N+9kA=
|
|
34
|
+
github.com/sirupsen/logrus v1.9.5-0.20260508084601-d4a50659cfd6/go.mod h1:FXZFonkDAnFozmO+5hGAFvB0Yg9/j2SIhA/QuIkP180=
|
|
35
35
|
github.com/stretchr/testify v1.11.1 h1:7s2iGBzp5EwR7/aIZr8ao5+dra3wiQyKjjFuvgVKu7U=
|
|
36
36
|
github.com/stretchr/testify v1.11.1/go.mod h1:wZwfW3scLgRK+23gO65QZefKpKQRnfz6sD981Nm4B6U=
|
|
37
|
-
github.com/tetratelabs/wazero v1.
|
|
38
|
-
github.com/tetratelabs/wazero v1.
|
|
37
|
+
github.com/tetratelabs/wazero v1.12.0 h1:DuWcpNu/FzgEXgGBDp8J1Spc+CWOvvtvVyjKlaZopYU=
|
|
38
|
+
github.com/tetratelabs/wazero v1.12.0/go.mod h1:LvKtzl2RqO4gyF27BiXU+nKAjcV8f38U+kP/q2vgxh0=
|
|
39
39
|
github.com/xrash/smetrics v0.0.0-20250705151800-55b8f293f342 h1:FnBeRrxr7OU4VvAzt5X7s6266i6cSVkkFPS0TuXWbIg=
|
|
40
40
|
github.com/xrash/smetrics v0.0.0-20250705151800-55b8f293f342/go.mod h1:Ohn+xnUBiLI6FVj/9LpzZWtj1/D6lUovWYBkxHVV3aM=
|
|
41
|
-
golang.org/x/mod v0.
|
|
42
|
-
golang.org/x/mod v0.
|
|
43
|
-
golang.org/x/sys v0.
|
|
44
|
-
golang.org/x/sys v0.
|
|
41
|
+
golang.org/x/mod v0.37.0 h1:vF1DjpVEshcIqoEaauuHebaLk1O1forxjxBaVn884JQ=
|
|
42
|
+
golang.org/x/mod v0.37.0/go.mod h1:m8S8VeM9r4dzDwjrKO0a1sZP3YjeMamRRlD+fmR2Q/0=
|
|
43
|
+
golang.org/x/sys v0.44.0 h1:ildZl3J4uzeKP07r2F++Op7E9B29JRUy+a27EibtBTQ=
|
|
44
|
+
golang.org/x/sys v0.44.0/go.mod h1:4GL1E5IUh+htKOUEOaiffhrAeqysfVGipDYzABqnCmw=
|
|
45
45
|
google.golang.org/protobuf v1.36.11 h1:fV6ZwhNocDyBLK0dj+fg8ektcVegBBuEolpbTQyBNVE=
|
|
46
46
|
google.golang.org/protobuf v1.36.11/go.mod h1:HTf+CrKn2C3g5S8VImy6tdcUvCska2kB7j23XfzDpco=
|
|
47
47
|
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
|