forked from missionlane/prometheus-mailgun-exporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
32 lines (30 loc) · 1.42 KB
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
module mailgun-exporter
require (
github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d // indirect
github.com/creack/pty v1.1.9 // indirect
github.com/go-chi/chi v4.0.2+incompatible // indirect
github.com/gobuffalo/envy v1.7.1 // indirect
github.com/google/go-cmp v0.3.1 // indirect
github.com/julienschmidt/httprouter v1.3.0 // indirect
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect
github.com/kr/pty v1.1.8 // indirect
github.com/mailgun/mailgun-go v2.0.0+incompatible
github.com/mailgun/mailgun-go/v3 v3.6.0
github.com/mailru/easyjson v0.7.0 // indirect
github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f // indirect
github.com/prometheus/client_golang v1.2.1
github.com/prometheus/common v0.7.0
github.com/rogpeppe/go-internal v1.5.0 // indirect
github.com/stretchr/objx v0.2.0 // indirect
golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550 // indirect
golang.org/x/net v0.0.0-20191021144547-ec77196f6094 // indirect
golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e // indirect
golang.org/x/sys v0.0.0-20191023151326-f89234f9a2c2 // indirect
golang.org/x/text v0.3.2 // indirect
golang.org/x/tools v0.0.0-20191023163450-98e333b8b3a3 // indirect
golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898 // indirect
gopkg.in/alecthomas/kingpin.v2 v2.2.6
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
gopkg.in/yaml.v2 v2.2.4 // indirect
)
go 1.13