rpc/go.mod

43 lines
1.7 KiB
Modula-2
Raw Normal View History

2022-06-29 14:00:45 +08:00
module git.zhangdeman.cn/zhangdeman/rpc
go 1.17
2022-06-29 15:17:41 +08:00
2022-06-30 17:15:22 +08:00
require (
git.zhangdeman.cn/zhangdeman/util v0.0.0-20221010125206-1c9c8be53c82
2022-06-30 17:15:22 +08:00
github.com/ddliu/go-httpclient v0.6.9
2022-06-30 17:41:41 +08:00
github.com/gin-gonic/gin v1.8.1
github.com/tidwall/gjson v1.14.3
2022-06-30 17:15:22 +08:00
go.uber.org/zap v1.21.0
2022-07-02 12:56:51 +08:00
gopkg.in/yaml.v2 v2.4.0
2022-06-30 17:15:22 +08:00
)
2022-06-29 21:15:07 +08:00
2022-06-29 15:25:35 +08:00
require (
github.com/Jeffail/gabs v1.4.0 // indirect
github.com/axgle/mahonia v0.0.0-20180208002826-3358181d7394 // indirect
2022-06-30 17:26:19 +08:00
github.com/gin-contrib/sse v0.1.0 // indirect
github.com/go-ini/ini v1.67.0 // indirect
2022-06-30 17:26:19 +08:00
github.com/go-playground/locales v0.14.0 // indirect
github.com/go-playground/universal-translator v0.18.0 // indirect
github.com/go-playground/validator/v10 v10.11.0 // indirect
github.com/goccy/go-json v0.9.8 // indirect
github.com/json-iterator/go v1.1.12 // indirect
github.com/leodido/go-urn v1.2.1 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/pelletier/go-toml/v2 v2.0.2 // indirect
2022-06-30 17:41:41 +08:00
github.com/pkg/errors v0.9.1 // indirect
github.com/spaolacci/murmur3 v1.1.0 // indirect
2022-06-30 18:26:16 +08:00
github.com/tidwall/match v1.1.1 // indirect
github.com/tidwall/pretty v1.2.1 // indirect
2022-06-30 17:26:19 +08:00
github.com/ugorji/go/codec v1.2.7 // indirect
2022-06-29 15:25:35 +08:00
go.uber.org/atomic v1.9.0 // indirect
go.uber.org/multierr v1.8.0 // indirect
2022-06-30 17:26:19 +08:00
golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d // indirect
golang.org/x/net v0.0.0-20220624214902-1bab6f366d9e // indirect
golang.org/x/sys v0.0.0-20220627191245-f75cf1eec38b // indirect
golang.org/x/text v0.3.7 // indirect
google.golang.org/protobuf v1.28.0 // indirect
2022-06-30 17:41:41 +08:00
gopkg.in/yaml.v3 v3.0.1 // indirect
2022-06-29 15:25:35 +08:00
)