forked from distribworks/dkron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
57 lines (55 loc) · 2.4 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
module github.com/distribworks/dkron/v3
require (
github.com/DataDog/datadog-go v4.0.0+incompatible // indirect
github.com/Shopify/sarama v1.19.0
github.com/armon/circbuf v0.0.0-20190214190532-5111143e8da2
github.com/armon/go-metrics v0.3.6
github.com/aws/aws-sdk-go v1.36.31 // indirect
github.com/bmizerany/assert v0.0.0-20160611221934-b7ed37b82869 // indirect
github.com/catalinc/hashcash v0.0.0-20161205220751-e6bc29ff4de9 // indirect
github.com/devopsfaith/krakend-usage v0.0.0-20210223224348-1ff8aabbd5bb
github.com/fluent/fluent-logger-golang v1.5.0
github.com/gin-contrib/cors v1.3.1
github.com/gin-contrib/expvar v0.0.1
github.com/gin-contrib/multitemplate v0.0.0-20200226145339-3e397ee01bc6
github.com/gin-gonic/gin v1.6.3
github.com/golang/protobuf v1.4.3
github.com/hashicorp/go-discover v0.0.0-20201029210230-738cb3105cd0
github.com/hashicorp/go-hclog v0.15.0
github.com/hashicorp/go-immutable-radix v1.3.0 // indirect
github.com/hashicorp/go-plugin v1.4.0
github.com/hashicorp/go-sockaddr v1.0.2
github.com/hashicorp/go-syslog v1.0.0
github.com/hashicorp/go-uuid v1.0.2
github.com/hashicorp/go-version v1.2.1
github.com/hashicorp/golang-lru v0.5.4 // indirect
github.com/hashicorp/memberlist v0.2.2
github.com/hashicorp/raft v1.2.0
github.com/hashicorp/raft-boltdb v0.0.0-20191021154308-4207f1bf0617
github.com/hashicorp/serf v0.9.5
github.com/hashicorp/yamux v0.0.0-20190923154419-df201c70410d // indirect
github.com/jordan-wright/email v0.0.0-20180115032944-94ae17dedda2
github.com/kardianos/osext v0.0.0-20190222173326-2bc1f35cddc0
github.com/mattn/go-shellwords v1.0.11
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
github.com/nats-io/nats.go v1.10.0
github.com/philhofer/fwd v1.0.0 // indirect
github.com/prometheus/client_golang v1.9.0
github.com/robfig/cron/v3 v3.0.1
github.com/ryanuber/columnize v2.1.2+incompatible
github.com/sirupsen/logrus v1.8.1
github.com/soheilhy/cmux v0.1.4
github.com/spf13/cobra v1.1.3
github.com/spf13/pflag v1.0.5
github.com/spf13/viper v1.7.1
github.com/streadway/amqp v1.0.0
github.com/stretchr/testify v1.7.0
github.com/tidwall/buntdb v1.2.0
github.com/tinylib/msgp v1.1.2 // indirect
golang.org/x/net v0.0.0-20201110031124-69a78807bb2b
google.golang.org/api v0.35.0 // indirect
google.golang.org/grpc v1.36.0
google.golang.org/grpc/examples v0.0.0-20201121004645-9da74c039bbf // indirect
google.golang.org/protobuf v1.25.0
)
go 1.15