-
-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathgo.mod
49 lines (46 loc) · 1.83 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
49
module github.com/darcys22/godbledger
go 1.19
require (
github.com/BurntSushi/toml v0.3.1
github.com/Songmu/retry v0.1.0
github.com/cespare/cp v1.1.1
github.com/go-sql-driver/mysql v1.6.0
github.com/google/go-github v17.0.0+incompatible
github.com/joyt/godate v0.0.0-20150226210126-7151572574a7
github.com/marcmak/calc v0.0.0-20150509200512-5bbbfc3b3149
github.com/mattn/go-colorable v0.1.8
github.com/mattn/go-sqlite3 v1.14.7
github.com/olekukonko/tablewriter v0.0.5
github.com/pkg/errors v0.9.1
github.com/rs/xid v1.3.0
github.com/sirupsen/logrus v1.8.1
github.com/stretchr/testify v1.5.1
github.com/urfave/cli/v2 v2.3.0
github.com/x-cray/logrus-prefixed-formatter v0.5.2
golang.org/x/oauth2 v0.0.0-20210514164344-f6687ab2804c
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
golang.org/x/text v0.7.0
google.golang.org/grpc v1.38.0
google.golang.org/protobuf v1.26.0
)
require (
github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/google/go-querystring v1.1.0 // indirect
github.com/mattn/go-isatty v0.0.12 // indirect
github.com/mattn/go-runewidth v0.0.9 // indirect
github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d // indirect
github.com/onsi/ginkgo v1.16.5 // indirect
github.com/onsi/gomega v1.17.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/russross/blackfriday/v2 v2.0.1 // indirect
github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect
golang.org/x/crypto v0.1.0 // indirect
golang.org/x/net v0.7.0 // indirect
golang.org/x/sys v0.5.0 // indirect
golang.org/x/term v0.5.0 // indirect
google.golang.org/appengine v1.6.6 // indirect
google.golang.org/genproto v0.0.0-20210611144927-798beca9d670 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)