statping/go.mod

44 lines
1.7 KiB
Modula-2
Raw Normal View History

2020-03-09 18:17:55 +00:00
module github.com/statping/statping
2019-11-22 18:42:58 +00:00
2020-04-15 10:18:39 +00:00
// +heroku goVersion go1.14
2020-03-04 14:20:47 +00:00
go 1.14
2020-02-27 10:04:27 +00:00
2019-11-22 18:42:58 +00:00
require (
github.com/GeertJohan/go.rice v1.0.0
2020-01-16 09:29:49 +00:00
github.com/dgrijalva/jwt-go v3.2.0+incompatible
github.com/fatih/structs v1.1.0
github.com/foomo/simplecert v1.7.5
github.com/foomo/tlsconfig v0.0.0-20180418120404-b67861b076c9
2020-08-13 09:35:01 +00:00
github.com/fsnotify/fsnotify v1.4.9 // indirect
2020-03-08 18:13:27 +00:00
github.com/getsentry/sentry-go v0.5.1
2019-11-22 18:42:58 +00:00
github.com/go-mail/mail v2.3.1+incompatible
github.com/gomarkdown/markdown v0.0.0-20200817091206-6efd7696db82
2020-03-04 14:20:47 +00:00
github.com/gorilla/mux v1.7.4
github.com/hako/durafmt v0.0.0-20200605151348-3a43fc422dd9
2020-03-04 14:20:47 +00:00
github.com/jinzhu/gorm v1.9.12
2020-04-24 05:13:00 +00:00
github.com/mattn/go-sqlite3 v2.0.3+incompatible
2020-04-16 09:57:00 +00:00
github.com/pelletier/go-toml v1.7.0 // indirect
2020-03-04 14:20:47 +00:00
github.com/pkg/errors v0.9.1
github.com/prometheus/client_golang v1.1.0
github.com/sirupsen/logrus v1.5.0
2020-04-16 09:57:00 +00:00
github.com/spf13/afero v1.2.2 // indirect
github.com/spf13/cast v1.3.1 // indirect
github.com/spf13/cobra v1.0.0
github.com/spf13/jwalterweatherman v1.1.0 // indirect
2020-08-13 09:35:01 +00:00
github.com/spf13/pflag v1.0.5 // indirect
2020-04-16 09:57:00 +00:00
github.com/spf13/viper v1.6.3
2020-03-04 14:20:47 +00:00
github.com/stretchr/testify v1.5.1
2020-05-19 03:46:54 +00:00
github.com/t-tiger/gorm-bulk-insert/v2 v2.0.1
github.com/tdewolff/minify/v2 v2.8.0 // indirect
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9
golang.org/x/net v0.0.0-20200625001655-4c5254603344 // indirect
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d
golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208 // indirect
2020-08-13 09:35:01 +00:00
golang.org/x/sys v0.0.0-20200724161237-0e2f3a69832c // indirect
google.golang.org/grpc v1.28.1
2019-11-22 18:42:58 +00:00
gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect
gopkg.in/mail.v2 v2.3.1 // indirect
2019-11-22 19:01:58 +00:00
gopkg.in/natefinch/lumberjack.v2 v2.0.0
2020-03-04 14:20:47 +00:00
gopkg.in/yaml.v2 v2.2.8
2019-11-22 18:42:58 +00:00
)