mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-02 07:20:24 +08:00
61 lines
2.5 KiB
Modula-2
61 lines
2.5 KiB
Modula-2
module mayfly-go
|
|
|
|
go 1.18
|
|
|
|
require (
|
|
github.com/dgrijalva/jwt-go v3.2.0+incompatible // jwt
|
|
github.com/gin-gonic/gin v1.8.1
|
|
github.com/go-redis/redis/v8 v8.11.5
|
|
github.com/go-sql-driver/mysql v1.6.0
|
|
github.com/gorilla/websocket v1.5.0
|
|
github.com/lib/pq v1.10.6
|
|
github.com/mojocn/base64Captcha v1.3.5 // 验证码
|
|
github.com/pkg/sftp v1.13.5
|
|
github.com/robfig/cron/v3 v3.0.1 // 定时任务
|
|
github.com/sirupsen/logrus v1.8.1
|
|
github.com/xwb1989/sqlparser v0.0.0-20180606152119-120387863bf2
|
|
go.mongodb.org/mongo-driver v1.9.1 // mongo
|
|
golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d // ssh
|
|
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
|
|
// gorm
|
|
gorm.io/driver/mysql v1.3.4
|
|
gorm.io/gorm v1.23.5
|
|
)
|
|
|
|
require (
|
|
github.com/cespare/xxhash/v2 v2.1.2 // indirect
|
|
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
|
|
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-stack/stack v1.8.0 // indirect
|
|
github.com/goccy/go-json v0.9.7 // indirect
|
|
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0 // indirect
|
|
github.com/golang/snappy v0.0.1 // 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/klauspost/compress v1.13.6 // 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/pelletier/go-toml/v2 v2.0.1 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/ugorji/go/codec v1.2.7 // indirect
|
|
github.com/xdg-go/pbkdf2 v1.0.0 // indirect
|
|
github.com/xdg-go/scram v1.0.2 // indirect
|
|
github.com/xdg-go/stringprep v1.0.2 // indirect
|
|
github.com/youmark/pkcs8 v0.0.0-20181117223130-1be2e3e5546d // indirect
|
|
golang.org/x/image v0.0.0-20220302094943-723b81ca9867 // indirect
|
|
golang.org/x/net v0.0.0-20220225172249-27dd8689420f // indirect
|
|
golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9 // indirect
|
|
golang.org/x/sys v0.0.0-20220310020820-b874c991c1a5 // indirect
|
|
golang.org/x/text v0.3.7 // indirect
|
|
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
|
|
google.golang.org/protobuf v1.28.0 // indirect
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
|
)
|