-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathgo.mod
48 lines (45 loc) · 2.05 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
module github.com/ccbrown/gggtracker
go 1.20
require (
github.com/PuerkitoBio/goquery v1.3.0
github.com/aws/aws-lambda-go v1.7.0
github.com/aws/aws-sdk-go-v2 v0.16.0
github.com/boltdb/bolt v1.3.1
github.com/json-iterator/go v1.1.5
github.com/labstack/echo v3.2.6+incompatible
github.com/pkg/errors v0.8.0
github.com/sirupsen/logrus v1.0.4
github.com/spf13/pflag v1.0.0
github.com/spf13/viper v1.0.0
github.com/stretchr/testify v1.2.2
golang.org/x/crypto v0.0.0-20180228161326-91a49db82a88
golang.org/x/sys v0.0.0-20180302081741-dd2ff4accc09
)
require (
github.com/BurntSushi/toml v1.3.2 // indirect
github.com/andybalholm/cascadia v1.0.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/dgrijalva/jwt-go v3.1.0+incompatible // indirect
github.com/fsnotify/fsnotify v1.4.7 // indirect
github.com/hashicorp/hcl v0.0.0-20171017181929-23c074d0eceb // indirect
github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af // indirect
github.com/labstack/gommon v0.2.2-0.20170925052817-57409ada9da0 // indirect
github.com/magiconair/properties v1.7.6 // indirect
github.com/mattn/go-colorable v0.0.9 // indirect
github.com/mattn/go-isatty v0.0.3 // indirect
github.com/mitchellh/mapstructure v0.0.0-20180220230111-00c29f56e238 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742 // indirect
github.com/pelletier/go-toml v1.1.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/spf13/afero v1.0.2 // indirect
github.com/spf13/cast v1.2.0 // indirect
github.com/spf13/jwalterweatherman v0.0.0-20180109140146-7c0cea34c8ec // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasttemplate v0.0.0-20170224212429-dcecefd839c4 // indirect
golang.org/x/net v0.0.0-20181201002055-351d144fa1fc // indirect
golang.org/x/text v0.3.0 // indirect
gopkg.in/airbrake/gobrake.v2 v2.0.9 // indirect
gopkg.in/gemnasium/logrus-airbrake-hook.v2 v2.1.2 // indirect
gopkg.in/yaml.v2 v2.1.1 // indirect
)