Skip to content

Commit

Permalink
dependency management
Browse files Browse the repository at this point in the history
  • Loading branch information
vaidehi-figma committed Aug 27, 2024
1 parent 9b5d054 commit 1e1e987
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 12 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Protobuf compiler plugin that generates [Sorbet](https://sorbet.org/) `.rbi` "Ru
### Installation

```
go get github.com/coinbase/protoc-gen-rbi
go get github.com/vaidehi-figma/protoc-gen-rbi
```

### Usage
Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
module github.com/coinbase/protoc-gen-rbi
module github.com/vaidehi-figma/protoc-gen-rbi

go 1.13

require (
github.com/vaidehi-figma/protoc-gen-star/tree/vd_editions v1.1.0
github.com/spf13/afero v1.11.0 // indirect
github.com/vaidehi-figma/protoc-gen-star v1.0.1
golang.org/x/tools v0.24.0 // indirect
google.golang.org/protobuf v1.34.2
)
5 changes: 4 additions & 1 deletion go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -1362,8 +1362,9 @@ github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI=
github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY=
github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE=
github.com/lyft/protoc-gen-star v0.6.0/go.mod h1:TGAoBVkt8w7MPG72TrKIu85MIdXwDuzJYeZuUPFPNwA=
github.com/lyft/protoc-gen-star v0.6.1 h1:erE0rdztuaDq3bpGifD95wfoPrSZc95nGA6tbiNYh6M=
github.com/lyft/protoc-gen-star v0.6.1/go.mod h1:TGAoBVkt8w7MPG72TrKIu85MIdXwDuzJYeZuUPFPNwA=
github.com/lyft/protoc-gen-star/v2 v2.0.1/go.mod h1:RcCdONR2ScXaYnQC5tUzxzlpA3WVYF7/opLeUgcQs/o=
github.com/lyft/protoc-gen-star/v2 v2.0.3/go.mod h1:amey7yeodaJhXSbf/TlLvWiqQfLOSpEk//mLlc+axEk=
github.com/mattn/go-isatty v0.0.12/go.mod h1:cbi8OIDigv2wuxKPP5vlRcQ1OAZbq2CE4Kysco4FUpU=
github.com/mattn/go-isatty v0.0.16/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM=
github.com/mattn/go-isatty v0.0.17/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM=
Expand Down Expand Up @@ -1416,6 +1417,8 @@ github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o
github.com/stretchr/testify v1.8.2/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4=
github.com/stretchr/testify v1.8.3 h1:RP3t2pwF7cMEbC1dqtB6poj3niw/9gnV4Cjg5oW5gtY=
github.com/stretchr/testify v1.8.3/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo=
github.com/vaidehi-figma/protoc-gen-star v1.0.1 h1:PEmg5OpQX5j4qWT8mM9IxkEo0IgNHaQ0jwa0hLvNvKU=
github.com/vaidehi-figma/protoc-gen-star v1.0.1/go.mod h1:8CalEU8L3DzuIhMrmX+HANXSDzekgKBpH3FWW+mlz8Q=
github.com/yuin/goldmark v1.1.25/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
github.com/yuin/goldmark v1.1.32/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
Expand Down
7 changes: 3 additions & 4 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,17 @@ package main

import (
"log"
"os"
"regexp"
"strings"
"text/template"

"google.golang.org/protobuf/types/pluginpb"

"github.com/coinbase/protoc-gen-rbi/ruby_types"
"github.com/vaidehi-figma/protoc-gen-rbi/ruby_types"
descriptorpb "google.golang.org/protobuf/types/descriptorpb"

pgs "github.com/lyft/protoc-gen-star/v2"
pgsgo "github.com/lyft/protoc-gen-star/v2/lang/go"
pgs "github.com/vaidehi-figma/protoc-gen-star"
pgsgo "github.com/vaidehi-figma/protoc-gen-star/lang/go"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion ruby_types/ruby_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"log"
"strings"

pgs "github.com/lyft/protoc-gen-star/v2"
pgs "github.com/vaidehi-figma/protoc-gen-star"
)

type methodType int
Expand Down
6 changes: 3 additions & 3 deletions vendor/modules.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# github.com/lyft/protoc-gen-star/v2 v2.0.3
github.com/lyft/protoc-gen-star/v2
github.com/lyft/protoc-gen-star/v2/lang/go
# github.com/vaidehi-figma/protoc-gen-star v1.0.1
github.com/vaidehi-figma/protoc-gen-star
github.com/vaidehi-figma/protoc-gen-star/lang/go
# github.com/spf13/afero v1.3.3
github.com/spf13/afero
github.com/spf13/afero/mem
Expand Down

0 comments on commit 1e1e987

Please sign in to comment.