-
Notifications
You must be signed in to change notification settings - Fork 7
/
go.mod
48 lines (45 loc) · 1.75 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 spot-assistant
go 1.22
require (
github.com/bwmarrin/discordgo v0.27.1
github.com/fzipp/gocyclo v0.6.0
github.com/gkampitakis/go-snaps v0.5.4
github.com/jackc/pgx/v5 v5.5.5
github.com/kelseyhightower/envconfig v1.4.0
github.com/orcaman/concurrent-map/v2 v2.0.1
github.com/pashagolub/pgxmock/v3 v3.2.0
github.com/servusdei2018/shards/v2 v2.2.1
github.com/sqlc-dev/sqlc v1.26.0
github.com/stretchr/testify v1.8.4
github.com/vicanso/go-charts/v2 v2.6.1
go.uber.org/zap v1.26.0
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/dustin/go-humanize v1.0.1 // indirect
github.com/gkampitakis/ciinfo v0.3.0 // indirect
github.com/gkampitakis/go-diff v1.3.2 // indirect
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0 // indirect
github.com/gorilla/websocket v1.5.0 // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
github.com/jackc/puddle/v2 v2.2.1 // indirect
github.com/kr/pretty v0.3.1 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/maruel/natural v1.1.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rogpeppe/go-internal v1.12.0 // indirect
github.com/stretchr/objx v0.5.0 // indirect
github.com/tidwall/gjson v1.17.0 // indirect
github.com/tidwall/match v1.1.1 // indirect
github.com/tidwall/pretty v1.2.1 // indirect
github.com/tidwall/sjson v1.2.5 // indirect
github.com/wcharczuk/go-chart/v2 v2.1.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
golang.org/x/crypto v0.20.0 // indirect
golang.org/x/image v0.10.0 // indirect
golang.org/x/sync v0.6.0 // indirect
golang.org/x/sys v0.17.0 // indirect
golang.org/x/text v0.14.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)