2022-01-10 15:21:58 +08:00
|
|
|
module git.icechen.cn/monorepo/backend
|
|
|
|
|
|
|
|
go 1.17
|
|
|
|
|
2022-01-11 00:48:03 +08:00
|
|
|
require (
|
|
|
|
github.com/gofiber/fiber/v2 v2.24.0
|
|
|
|
github.com/golang/protobuf v1.5.2
|
2022-01-12 16:32:43 +08:00
|
|
|
github.com/google/uuid v1.1.2
|
2022-01-11 00:48:03 +08:00
|
|
|
github.com/jinzhu/copier v0.3.4
|
|
|
|
github.com/larksuite/oapi-sdk-go v1.1.43
|
2022-01-12 14:04:33 +08:00
|
|
|
github.com/luizsuper/ctxLoggers v1.0.3
|
2022-01-11 00:48:03 +08:00
|
|
|
github.com/pkg/errors v0.9.1
|
2022-01-12 16:32:43 +08:00
|
|
|
github.com/spf13/cast v1.4.1
|
2022-01-11 00:48:03 +08:00
|
|
|
go.etcd.io/etcd/client/v3 v3.5.1
|
2022-01-12 14:04:33 +08:00
|
|
|
go.uber.org/zap v1.20.0
|
2022-01-11 00:48:03 +08:00
|
|
|
google.golang.org/grpc v1.43.0
|
|
|
|
gorm.io/driver/mysql v1.2.3
|
|
|
|
gorm.io/gorm v1.22.4
|
|
|
|
)
|
2022-01-10 20:21:47 +08:00
|
|
|
|
|
|
|
require (
|
2022-01-12 00:40:37 +08:00
|
|
|
github.com/andybalholm/brotli v1.0.4 // indirect
|
2022-01-11 00:48:03 +08:00
|
|
|
github.com/coreos/go-semver v0.3.0 // indirect
|
|
|
|
github.com/coreos/go-systemd/v22 v22.3.2 // indirect
|
2022-01-12 00:40:37 +08:00
|
|
|
github.com/gin-contrib/sse v0.1.0 // indirect
|
|
|
|
github.com/gin-gonic/gin v1.7.7 // indirect
|
|
|
|
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.10.0 // indirect
|
2022-01-11 00:48:03 +08:00
|
|
|
github.com/go-sql-driver/mysql v1.6.0 // indirect
|
|
|
|
github.com/gogo/protobuf v1.3.2 // indirect
|
|
|
|
github.com/jinzhu/inflection v1.0.0 // indirect
|
|
|
|
github.com/jinzhu/now v1.1.3 // indirect
|
2022-01-12 00:40:37 +08:00
|
|
|
github.com/json-iterator/go v1.1.12 // indirect
|
|
|
|
github.com/klauspost/compress v1.13.6 // indirect
|
|
|
|
github.com/leodido/go-urn v1.2.1 // indirect
|
|
|
|
github.com/lestrrat-go/file-rotatelogs v2.4.0+incompatible // indirect
|
|
|
|
github.com/lestrrat-go/strftime v1.0.5 // 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/ugorji/go/codec v1.2.6 // indirect
|
2022-01-10 20:21:47 +08:00
|
|
|
github.com/valyala/bytebufferpool v1.0.0 // indirect
|
2022-01-12 00:40:37 +08:00
|
|
|
github.com/valyala/fasthttp v1.32.0 // indirect
|
2022-01-10 20:21:47 +08:00
|
|
|
github.com/valyala/tcplisten v1.0.0 // indirect
|
2022-01-11 00:48:03 +08:00
|
|
|
go.etcd.io/etcd/api/v3 v3.5.1 // indirect
|
|
|
|
go.etcd.io/etcd/client/pkg/v3 v3.5.1 // indirect
|
2022-01-12 00:40:37 +08:00
|
|
|
go.uber.org/atomic v1.9.0 // indirect
|
|
|
|
go.uber.org/multierr v1.7.0 // indirect
|
|
|
|
golang.org/x/crypto v0.0.0-20211215153901-e495a2d5b3d3 // indirect
|
|
|
|
golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2 // indirect
|
|
|
|
golang.org/x/sys v0.0.0-20220111092808-5a964db01320 // indirect
|
|
|
|
golang.org/x/text v0.3.7 // indirect
|
2022-01-11 00:48:03 +08:00
|
|
|
google.golang.org/genproto v0.0.0-20210602131652-f16073e35f0c // indirect
|
2022-01-12 00:40:37 +08:00
|
|
|
google.golang.org/protobuf v1.27.1 // indirect
|
|
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
2022-01-10 20:21:47 +08:00
|
|
|
)
|