forked from metalmatze/alertmanager-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
64 lines (62 loc) · 3.06 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
module github.com/metalmatze/alertmanager-bot
require (
github.com/DataDog/datadog-go v0.0.0-20170427165718-0ddda6bee211 // indirect
github.com/OneOfOne/xxhash v1.2.5 // indirect
github.com/beorn7/perks v1.0.1 // indirect
github.com/boltdb/bolt v1.3.1 // indirect
github.com/cenkalti/backoff v2.1.1+incompatible
github.com/cespare/xxhash v1.0.0 // indirect
github.com/circonus-labs/circonus-gometrics v2.0.0+incompatible // indirect
github.com/circonus-labs/circonusllhist v0.0.0-20170525201649-6e85b9352cf0 // indirect
github.com/docker/libkv v0.2.1
github.com/go-kit/kit v0.8.0
github.com/golang/protobuf v1.3.2 // indirect
github.com/google/go-cmp v0.3.1 // indirect
github.com/hako/durafmt v0.0.0-20160831152008-ea3ab126a649
github.com/hashicorp/consul v1.4.5 // indirect
github.com/hashicorp/go-cleanhttp v0.0.0-20170211013415-3573b8b52aa7 // indirect
github.com/hashicorp/go-msgpack v0.5.5 // indirect
github.com/hashicorp/go-retryablehttp v0.0.0-20170824180859-794af36148bf // indirect
github.com/hashicorp/go-rootcerts v1.0.1 // indirect
github.com/hashicorp/go-sockaddr v1.0.2 // indirect
github.com/hashicorp/golang-lru v0.5.3 // indirect
github.com/hashicorp/mdns v1.0.1 // indirect
github.com/hashicorp/memberlist v0.1.4 // indirect
github.com/hashicorp/serf v0.8.3 // indirect
github.com/hashicorp/uuid v0.0.0-20160311170451-ebb0a03e909c // indirect
github.com/hashicorp/yamux v0.0.0-20171005170212-f5742cb6b856 // indirect
github.com/joho/godotenv v1.3.0
github.com/json-iterator/go v1.1.7 // indirect
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect
github.com/kr/pretty v0.1.0 // indirect
github.com/kr/pty v1.1.8 // indirect
github.com/kylelemons/godebug v1.1.0 // indirect
github.com/mattn/go-isatty v0.0.9 // indirect
github.com/miekg/dns v1.0.15 // indirect
github.com/mitchellh/go-testing-interface v1.0.0 // indirect
github.com/mitchellh/hashstructure v0.0.0-20170609045927-2bca23e0e452 // indirect
github.com/mitchellh/mapstructure v0.0.0-20170523030023-d0303fe80992 // indirect
github.com/oklog/run v1.0.0
github.com/onsi/gomega v1.4.3 // indirect
github.com/pascaldekloe/goe v0.1.0 // indirect
github.com/pkg/errors v0.8.1
github.com/posener/complete v1.1.2 // indirect
github.com/prometheus/alertmanager v0.9.1
github.com/prometheus/client_golang v0.9.4
github.com/prometheus/procfs v0.0.3 // indirect
github.com/satori/go.uuid v1.1.0 // indirect
github.com/spaolacci/murmur3 v1.1.0 // indirect
github.com/stretchr/testify v1.3.0
github.com/tucnak/telebot v0.0.0-20170912115553-00cebf376d79
github.com/weaveworks/mesh v0.0.0-20160126163632-f74318fb713b // indirect
golang.org/x/net v0.0.0-20181213202711-891ebc4b82d6 // indirect
golang.org/x/text v0.3.2 // indirect
google.golang.org/appengine v1.1.0 // indirect
gopkg.in/airbrake/gobrake.v2 v2.0.9 // indirect
gopkg.in/alecthomas/kingpin.v2 v2.2.6
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
gopkg.in/gemnasium/logrus-airbrake-hook.v2 v2.1.2 // indirect
gopkg.in/vmihailenco/msgpack.v2 v2.9.1 // indirect
gopkg.in/yaml.v2 v2.2.2 // indirect
)
go 1.13