Skip to content

Commit 4fe481c

Browse files
authored
fix: update conformance repo to point to protobuf repository (#3272)
Per [this comment](googleapis/google-cloud-rust#4087 (comment)) when specification source is conformance its referring to [protobuf](https://github.com/protocolbuffers/protobuf/) repository. Fixes 3270
1 parent ec1bd56 commit 4fe481c

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

internal/librarian/internal/rust/generate.go

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,11 @@ import (
3030
)
3131

3232
const (
33-
googleapisRepo = "github.com/googleapis/googleapis"
34-
discoveryRepo = "github.com/googleapis/discovery-artifact-manager"
35-
protobufRepo = "github.com/protocolbuffers/protobuf"
36-
conformanceRepo = "github.com/googleapis/conformance-tests"
33+
googleapisRepo = "github.com/googleapis/googleapis"
34+
discoveryRepo = "github.com/googleapis/discovery-artifact-manager"
35+
protobufRepo = "github.com/protocolbuffers/protobuf"
36+
// Used for fetching protos such as https://github.com/protocolbuffers/protobuf/blob/26.x/conformance/conformance.proto
37+
conformanceRepo = protobufRepo
3738
showcaseRepo = "github.com/googleapis/gapic-showcase"
3839
)
3940

0 commit comments

Comments
 (0)