-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgo.mod
29 lines (27 loc) · 1.02 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
module github.com/smartatransit/scrapedumper
require (
github.com/DATA-DOG/go-sqlmock v1.3.3
github.com/aws/aws-sdk-go v1.21.5
github.com/google/go-cmp v0.5.2 // indirect
github.com/jessevdk/go-flags v1.4.0
github.com/kr/text v0.2.0 // indirect
github.com/kylelemons/godebug v1.1.0 // indirect
github.com/lib/pq v1.3.0
github.com/maxbrunsfeld/counterfeiter/v6 v6.2.1
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
github.com/onsi/ginkgo v1.14.1
github.com/onsi/gomega v1.10.2
github.com/patrickmn/go-cache v2.1.0+incompatible
github.com/pkg/errors v0.9.1
github.com/sahilm/fuzzy v0.1.0
github.com/spf13/afero v1.2.2
github.com/stretchr/testify v1.6.1 // indirect
go.uber.org/zap v1.10.0
golang.org/x/sys v0.0.0-20201009025420-dfb3f7c4e634 // indirect
golang.org/x/tools v0.0.0-20201013201025-64a9e34f3752 // indirect
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
gorm.io/driver/postgres v1.0.5
gorm.io/gorm v1.20.8
honnef.co/go/tools v0.0.1-2020.1.6 // indirect
)
go 1.15