gatus/go.mod

47 lines
2.0 KiB
Modula-2
Raw Normal View History

2019-09-05 01:37:13 +02:00
module github.com/TwinProduction/gatus
2021-10-03 21:02:57 +02:00
go 1.17
2019-09-05 01:37:13 +02:00
2019-11-16 21:48:09 +01:00
require (
github.com/TwinProduction/gocache v1.2.3
github.com/TwinProduction/health v1.0.0
2021-10-03 21:02:57 +02:00
github.com/beorn7/perks v1.0.1 // indirect
github.com/cespare/xxhash/v2 v2.1.1 // indirect
github.com/go-ping/ping v0.0.0-20201115131931-3300c582a663
2021-10-03 21:02:57 +02:00
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0 // indirect
github.com/golang/protobuf v1.4.3 // indirect
2021-09-03 05:19:49 +02:00
github.com/google/go-cmp v0.5.4 // indirect
github.com/gorilla/mux v1.8.0
2021-10-03 21:02:57 +02:00
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
github.com/lib/pq v1.10.3
2021-10-03 21:02:57 +02:00
github.com/mattn/go-isatty v0.0.12 // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
2020-11-18 00:55:31 +01:00
github.com/miekg/dns v1.1.35
github.com/prometheus/client_golang v1.9.0
2021-10-03 21:02:57 +02:00
github.com/prometheus/client_model v0.2.0 // indirect
github.com/prometheus/common v0.15.0 // indirect
github.com/prometheus/procfs v0.2.0 // indirect
github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0 // indirect
github.com/wcharczuk/go-chart/v2 v2.1.0
2021-10-03 21:02:57 +02:00
go.etcd.io/bbolt v1.3.5 // indirect
golang.org/x/crypto v0.0.0-20201221181555-eec23a3978ad // indirect
golang.org/x/image v0.0.0-20210628002857-a66eb6448b8d // indirect
2021-09-03 05:19:49 +02:00
golang.org/x/mod v0.4.0 // indirect
golang.org/x/net v0.0.0-20201224014010-6772e930b67b // indirect
2021-10-03 21:02:57 +02:00
golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c // indirect
2021-09-03 05:19:49 +02:00
golang.org/x/tools v0.0.0-20201208233053-a543418bbed2 // indirect
2021-10-03 21:02:57 +02:00
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
2021-09-03 05:19:49 +02:00
google.golang.org/protobuf v1.25.0 // indirect
gopkg.in/yaml.v2 v2.4.0
2021-10-03 21:02:57 +02:00
lukechampine.com/uint128 v1.1.1 // indirect
modernc.org/cc/v3 v3.33.6 // indirect
modernc.org/ccgo/v3 v3.9.5 // indirect
modernc.org/libc v1.9.11 // indirect
modernc.org/mathutil v1.4.0 // indirect
modernc.org/memory v1.0.4 // indirect
modernc.org/opt v0.1.1 // indirect
modernc.org/sqlite v1.11.2
2021-10-03 21:02:57 +02:00
modernc.org/strutil v1.1.1 // indirect
modernc.org/token v1.0.0 // indirect
2019-11-16 21:48:09 +01:00
)