-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathgo.mod
40 lines (37 loc) · 1.51 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
module github.com/haozibi/leetcode-badge
go 1.18
require (
github.com/ajstarks/svgo v0.0.0-20211024235047-1546f124cd8b
github.com/davecgh/go-spew v1.1.1
github.com/go-redis/redis v6.15.6+incompatible
github.com/go-sql-driver/mysql v1.6.0
github.com/gorilla/handlers v1.5.1
github.com/gorilla/mux v1.8.0
github.com/haozibi/gendry v0.0.0-20181228133255-0e378288a754
github.com/jmoiron/sqlx v1.3.5
github.com/mattn/go-sqlite3 v1.14.14
github.com/nikolaydubina/calendarheatmap v1.7.0
github.com/patrickmn/go-cache v2.1.0+incompatible
github.com/pkg/errors v0.9.1
github.com/robfig/cron/v3 v3.0.1
github.com/rs/zerolog v1.27.0
github.com/spf13/cobra v1.5.0
github.com/wcharczuk/go-chart v2.0.2-0.20190910040548-3a7bc5543113+incompatible
golang.org/x/image v0.0.0-20220722155232-062f8c9fd539
golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4
)
require (
github.com/blend/go-sdk v2.0.0+incompatible // indirect
github.com/felixge/httpsnoop v1.0.3 // indirect
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/mattn/go-colorable v0.1.12 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/onsi/ginkgo v1.10.2 // indirect
github.com/onsi/gomega v1.7.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/stretchr/testify v1.3.0 // indirect
golang.org/x/sys v0.0.0-20220804214406-8e32c043e418 // indirect
golang.org/x/text v0.3.7 // indirect
gopkg.in/DATA-DOG/go-sqlmock.v1 v1.3.0 // indirect
)