-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgo.mod
26 lines (23 loc) · 794 Bytes
/
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
module github.com/d3an/finviz
go 1.17
require (
github.com/PuerkitoBio/goquery v1.8.0
github.com/cenkalti/backoff/v4 v4.1.2
github.com/corpix/uarand v0.1.1
github.com/dnaeon/go-vcr v1.2.0
github.com/go-gota/gota v0.12.0
github.com/pkg/errors v0.9.1
github.com/spf13/cobra v1.3.0
github.com/stretchr/testify v1.7.0
)
require (
github.com/andybalholm/cascadia v1.3.1 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd // indirect
gonum.org/v1/gonum v0.9.3 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
)