-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update builtin grpc generator, add grpc generator file options
- Loading branch information
Showing
9 changed files
with
675 additions
and
156 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,55 +1,56 @@ | ||
module github.com/kralicky/protols | ||
|
||
go 1.22.0 | ||
go 1.23.0 | ||
|
||
require ( | ||
buf.build/gen/go/bufbuild/protovalidate/protocolbuffers/go v1.34.2-20240717164558-a6c49f84cc0f.2 | ||
github.com/AlecAivazis/survey/v2 v2.3.7 | ||
github.com/bufbuild/protovalidate-go v0.6.3 | ||
github.com/bufbuild/protovalidate-go v0.6.4 | ||
github.com/google/cel-go v0.21.0 | ||
github.com/google/go-cmp v0.6.0 | ||
github.com/google/uuid v1.6.0 | ||
github.com/kralicky/codegen v0.0.0-20240522012557-5193d3fdbeca | ||
github.com/kralicky/codegen v0.0.0-20240818201632-5c040977c0f2 | ||
github.com/kralicky/gpkg v0.0.0-20240119195700-64f32830b14f | ||
github.com/kralicky/protocompile v0.0.0-20240803192845-d63fb51209b3 | ||
github.com/kralicky/tools-lite v0.0.0-20240313161632-60bfa88304ff | ||
github.com/magefile/mage v1.15.0 | ||
github.com/mattn/go-tty v0.0.7 | ||
github.com/mitchellh/mapstructure v1.5.0 | ||
github.com/spf13/cobra v1.8.1 | ||
github.com/stretchr/testify v1.9.0 | ||
golang.org/x/mod v0.20.0 | ||
golang.org/x/sync v0.8.0 | ||
google.golang.org/genproto v0.0.0-20240521202816-d264139d666e | ||
google.golang.org/genproto/googleapis/api v0.0.0-20240521202816-d264139d666e | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20240521202816-d264139d666e | ||
google.golang.org/genproto v0.0.0-20240814211410-ddb44dafa142 | ||
google.golang.org/genproto/googleapis/api v0.0.0-20240814211410-ddb44dafa142 | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20240814211410-ddb44dafa142 | ||
google.golang.org/protobuf v1.34.2 | ||
) | ||
|
||
require ( | ||
cloud.google.com/go/dlp v1.13.0 // indirect | ||
github.com/AlekSi/pointer v1.0.0 // indirect | ||
github.com/antlr4-go/antlr/v4 v4.13.0 // indirect | ||
cloud.google.com/go/dlp v1.17.0 // indirect | ||
github.com/AlekSi/pointer v1.2.0 // indirect | ||
github.com/antlr4-go/antlr/v4 v4.13.1 // indirect | ||
github.com/bufbuild/protoyaml-go v0.1.11 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/iancoleman/strcase v0.3.0 // indirect | ||
github.com/inconshreveable/mousetrap v1.1.0 // indirect | ||
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect | ||
github.com/kralicky/go-adaptive-radix-tree v0.0.0-20240619012453-a8f80032ba31 // indirect | ||
github.com/kralicky/go-adaptive-radix-tree v0.0.0-20240624235931-330eb762e74c // indirect | ||
github.com/mattn/go-colorable v0.1.13 // indirect | ||
github.com/mattn/go-isatty v0.0.20 // indirect | ||
github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b // indirect | ||
github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d // indirect | ||
github.com/olebedev/when v1.0.0 // indirect | ||
github.com/pkg/errors v0.8.1 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/prometheus/client_model v0.6.0 // indirect | ||
github.com/prometheus/common v0.53.0 // indirect | ||
github.com/prometheus/client_model v0.6.1 // indirect | ||
github.com/prometheus/common v0.55.0 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/stoewer/go-strcase v1.3.0 // indirect | ||
golang.org/x/exp v0.0.0-20240506185415-9bf2ced13842 // indirect | ||
golang.org/x/net v0.25.0 // indirect | ||
golang.org/x/sys v0.22.0 // indirect | ||
golang.org/x/term v0.20.0 // indirect | ||
golang.org/x/text v0.15.0 // indirect | ||
google.golang.org/grpc v1.64.0 // indirect | ||
golang.org/x/exp v0.0.0-20240808152545-0cdaa3abc0fa // indirect | ||
golang.org/x/net v0.28.0 // indirect | ||
golang.org/x/sys v0.24.0 // indirect | ||
golang.org/x/term v0.23.0 // indirect | ||
golang.org/x/text v0.17.0 // indirect | ||
google.golang.org/grpc v1.65.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
sigs.k8s.io/yaml v1.4.0 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.