-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgo.mod
42 lines (38 loc) · 1.37 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
module tdd.com/v1
go 1.17
require (
github.com/BurntSushi/toml v0.3.1
github.com/aws/aws-sdk-go v1.43.45
github.com/go-pg/pg/v10 v10.10.6
github.com/go-sql-driver/mysql v1.6.0
github.com/mattn/go-runewidth v0.0.13
github.com/nsf/termbox-go v1.1.1
github.com/romanyx/polluter v1.2.2
github.com/stretchr/testify v1.8.0
github.com/thoas/go-funk v0.9.2
gopkg.in/yaml.v2 v2.3.0
)
require (
github.com/go-redis/redis v6.14.0+incompatible // indirect
github.com/mailru/easyjson v0.0.0-20180823135443-60711f1a8329 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/rivo/uniseg v0.2.0 // indirect
github.com/romanyx/jwalk v1.0.0 // indirect
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/go-pg/zerochecker v0.2.0 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jmespath/go-jmespath v0.4.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/sirupsen/logrus v1.8.1
github.com/tmthrgd/go-hex v0.0.0-20190904060850-447a3041c3bc // indirect
github.com/vmihailenco/bufpool v0.1.11 // indirect
github.com/vmihailenco/msgpack/v5 v5.3.4 // indirect
github.com/vmihailenco/tagparser v0.1.2 // indirect
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
golang.org/x/crypto v0.17.0 // indirect
golang.org/x/sys v0.15.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
mellium.im/sasl v0.3.1 // indirect
)