auto-deploy-service/go.mod

35 lines
1.2 KiB
Modula-2
Raw Normal View History

2021-06-13 14:59:50 +00:00
module deploy
2021-07-07 15:51:10 +00:00
go 1.16
2021-06-13 14:59:50 +00:00
require (
github.com/gin-gonic/gin v1.7.2
github.com/otakukaze/config-loader v1.0.2
github.com/pkg/errors v0.9.1
2021-06-14 05:47:07 +00:00
github.com/sirupsen/logrus v1.8.1
gopkg.in/fsnotify.v1 v1.4.7
2021-06-13 14:59:50 +00:00
)
require (
github.com/BurntSushi/toml v0.3.1 // indirect
2021-06-14 05:47:07 +00:00
github.com/fsnotify/fsnotify v1.4.9 // indirect
2021-06-13 14:59:50 +00:00
github.com/gin-contrib/sse v0.1.0 // indirect
github.com/go-playground/locales v0.13.0 // indirect
github.com/go-playground/universal-translator v0.17.0 // indirect
github.com/go-playground/validator/v10 v10.6.1 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/json-iterator/go v1.1.11 // indirect
github.com/leodido/go-urn v1.2.1 // indirect
github.com/mattn/go-isatty v0.0.13 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.1 // indirect
github.com/otakukaze/envconfig v1.0.4 // indirect
2021-07-02 09:00:18 +00:00
github.com/robfig/cron/v3 v3.0.0 // indirect
2021-06-13 14:59:50 +00:00
github.com/ugorji/go/codec v1.2.6 // indirect
golang.org/x/crypto v0.0.0-20210513164829-c07d793c2f9a // indirect
golang.org/x/sys v0.0.0-20210611083646-a4fc73990273 // indirect
golang.org/x/text v0.3.6 // indirect
google.golang.org/protobuf v1.26.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)