Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update kitex version #77

Merged
merged 3 commits into from
Jul 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions cmd/static/client_flags.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,6 @@ func clientFlags() []cli.Flag {
&cli.StringFlag{Name: config.Registry, Usage: "Specify the registry, default is None"},
&cli.StringSliceFlag{Name: config.ProtoSearchPath, Aliases: []string{"I"}, Usage: "Add an IDL search path for includes. (Valid only if idl is protobuf)"},
&cli.StringSliceFlag{Name: config.Pass, Usage: "pass param to hz or kitex"},
&cli.BoolFlag{Name: config.Verbose, Usage: "Turn on verbose mode."},
}
}
1 change: 1 addition & 0 deletions cmd/static/server_flags.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,6 @@ func serverFlags() []cli.Flag {
&cli.StringFlag{Name: config.Registry, Usage: "Specify the registry, default is None"},
&cli.StringSliceFlag{Name: config.ProtoSearchPath, Aliases: []string{"I"}, Usage: "Add an IDL search path for includes. (Valid only if idl is protobuf)"},
&cli.StringSliceFlag{Name: config.Pass, Usage: "pass param to hz or kitex"},
&cli.BoolFlag{Name: config.Verbose, Usage: "Turn on verbose mode."},
}
}
10 changes: 5 additions & 5 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ require (
github.com/AlecAivazis/survey/v2 v2.3.6
github.com/Netflix/go-expect v0.0.0-20220104043353-73e0943537d2
github.com/cloudwego/hertz/cmd/hz v0.6.5
github.com/cloudwego/kitex v0.5.3-0.20230516135828-f75a959baa55
github.com/cloudwego/kitex v0.6.2-0.20230724061933-f0eeadc3ac91
github.com/creack/pty v1.1.17
github.com/hinshun/vt10x v0.0.0-20220119200601-820417d04eec
github.com/stretchr/testify v1.8.1
github.com/stretchr/testify v1.8.2
github.com/urfave/cli/v2 v2.23.5
gorm.io/driver/mysql v1.4.4
gorm.io/driver/postgres v1.4.5
Expand All @@ -22,11 +22,11 @@ require (
require (
github.com/Masterminds/goutils v1.1.1 // indirect
github.com/Masterminds/semver/v3 v3.2.0 // indirect
github.com/Masterminds/sprig/v3 v3.2.2 // indirect
github.com/Masterminds/sprig/v3 v3.2.3 // indirect
github.com/cloudwego/fastpb v0.0.4 // indirect
github.com/cloudwego/thriftgo v0.2.9 // indirect
github.com/cloudwego/thriftgo v0.2.11 // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
github.com/go-sql-driver/mysql v1.6.0 // indirect
github.com/golang-sql/civil v0.0.0-20220223132316-b832511892a9 // indirect
github.com/golang-sql/sqlexp v0.1.0 // indirect
Expand Down
Loading