-
Notifications
You must be signed in to change notification settings - Fork 1
/
go.mod
35 lines (33 loc) · 1.19 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
module github.com/nasum/tt
require (
github.com/cenkalti/backoff v2.2.1+incompatible
github.com/dghubble/go-twitter v0.0.0-20190512073027-53f972dc4b06
github.com/dghubble/oauth1 v0.6.0
github.com/dghubble/sling v1.3.0
github.com/fatih/color v1.10.0
github.com/fsnotify/fsnotify v1.4.9
github.com/google/go-querystring v1.0.0
github.com/hashicorp/hcl v1.0.0
github.com/inconshreveable/mousetrap v1.0.0
github.com/magiconair/properties v1.8.1
github.com/mattn/go-colorable v0.1.8
github.com/mattn/go-isatty v0.0.12
github.com/mattn/go-sixel v0.0.1
github.com/mitchellh/mapstructure v1.3.2
github.com/pelletier/go-toml v1.8.1
github.com/russross/blackfriday v2.0.0+incompatible // indirect
github.com/soniakeys/quant v1.0.0 // indirect
github.com/spf13/afero v1.3.2
github.com/spf13/cast v1.3.1
github.com/spf13/cobra v0.0.7
github.com/spf13/jwalterweatherman v1.1.0
github.com/spf13/pflag v1.0.5
github.com/spf13/viper v1.7.1
github.com/stretchr/objx v0.2.0 // indirect
golang.org/x/image v0.0.0-20191206065243-da761ea9ff43
golang.org/x/net v0.0.0-20190620200207-3b0461eec859
golang.org/x/sys v0.0.0-20200223170610-d5e6a3e2c0ae
golang.org/x/text v0.3.3
gopkg.in/yaml.v2 v2.3.0
)
go 1.13