mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-02 15:30:25 +08:00
50 lines
1.7 KiB
Modula-2
50 lines
1.7 KiB
Modula-2
module mayfly-go
|
|
|
|
go 1.17
|
|
|
|
require (
|
|
// jwt
|
|
github.com/dgrijalva/jwt-go v3.2.0+incompatible
|
|
github.com/gin-gonic/gin v1.7.7
|
|
github.com/go-redis/redis v6.15.9+incompatible
|
|
github.com/gorilla/websocket v1.5.0
|
|
// 验证码
|
|
github.com/mojocn/base64Captcha v1.3.5
|
|
github.com/pkg/sftp v1.13.4
|
|
// 定时任务
|
|
github.com/robfig/cron/v3 v3.0.1
|
|
github.com/sirupsen/logrus v1.8.1
|
|
// ssh
|
|
golang.org/x/crypto v0.0.0-20220314234724-5d542ad81a58
|
|
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
|
|
// gorm
|
|
gorm.io/driver/mysql v1.3.2
|
|
gorm.io/gorm v1.23.2
|
|
)
|
|
|
|
require (
|
|
github.com/gin-contrib/sse v0.1.0 // 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.1 // indirect
|
|
github.com/go-sql-driver/mysql v1.6.0 // indirect
|
|
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0 // indirect
|
|
github.com/golang/protobuf v1.5.2 // indirect
|
|
github.com/jinzhu/inflection v1.0.0 // indirect
|
|
github.com/jinzhu/now v1.1.4 // indirect
|
|
github.com/json-iterator/go v1.1.12 // indirect
|
|
github.com/kr/fs v0.1.0 // 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/onsi/ginkgo v1.16.5 // indirect
|
|
github.com/onsi/gomega v1.18.1 // indirect
|
|
github.com/ugorji/go/codec v1.2.7 // indirect
|
|
golang.org/x/image v0.0.0-20220302094943-723b81ca9867 // indirect
|
|
golang.org/x/sys v0.0.0-20220310020820-b874c991c1a5 // indirect
|
|
golang.org/x/text v0.3.7 // indirect
|
|
google.golang.org/protobuf v1.27.1 // indirect
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
|
)
|