-
Notifications
You must be signed in to change notification settings - Fork 10
/
go.mod
38 lines (36 loc) · 1.49 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
module github.com/alexandre-normand/slackscot
require (
cloud.google.com/go v0.38.0
github.com/alexandre-normand/figlet4go v1.0.0
github.com/fatih/color v1.7.0 // indirect
github.com/gorilla/websocket v1.4.1
github.com/hashicorp/golang-lru v0.5.1
github.com/magiconair/properties v1.8.1 // indirect
github.com/marcsantiago/gocron v0.0.0-20181105173523-9617b75671b1
github.com/mattn/go-colorable v0.1.4 // indirect
github.com/mattn/go-isatty v0.0.11 // indirect
github.com/mitchellh/go-homedir v1.1.0
github.com/onsi/ginkgo v1.10.1 // indirect
github.com/onsi/gomega v1.7.0 // indirect
github.com/pelletier/go-toml v1.5.0 // indirect
github.com/pkg/errors v0.8.1
github.com/slack-go/slack v0.6.3
github.com/spf13/afero v1.2.2 // indirect
github.com/spf13/cast v1.3.0
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/spf13/viper v1.4.0
github.com/stretchr/objx v0.2.0 // indirect
github.com/stretchr/testify v1.7.0
github.com/syndtr/goleveldb v0.0.0-20190203031304-2f17a3356c66
go.opentelemetry.io/otel v0.17.0
go.opentelemetry.io/otel/metric v0.17.0
golang.org/x/net v0.0.0-20190923162816-aa69164e4478 // indirect
golang.org/x/sys v0.0.0-20191210023423-ac6580df4449 // indirect
google.golang.org/api v0.20.0
google.golang.org/genproto v0.0.0-20191009194640-548a555dbc03 // indirect
google.golang.org/grpc v1.27.1 // indirect
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
gopkg.in/yaml.v2 v2.2.7 // indirect
)
go 1.13