-
-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathgo.mod
More file actions
70 lines (67 loc) · 2.81 KB
/
go.mod
File metadata and controls
70 lines (67 loc) · 2.81 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
module github.com/midoks/imail
go 1.25.1
require (
github.com/axgle/mahonia v0.0.0-20180208002826-3358181d7394
github.com/editorconfig/editorconfig-core-go/v2 v2.6.2
github.com/glebarez/sqlite v1.11.0
github.com/go-macaron/binding v1.2.0
github.com/go-macaron/cache v0.0.0-20200329073519-53bb48172687
github.com/go-macaron/captcha v0.2.0
github.com/go-macaron/csrf v0.0.0-20200329073418-5d38f39de352
github.com/go-macaron/gzip v0.0.0-20200329073552-98214d7a897e
github.com/go-macaron/i18n v0.6.0
github.com/go-macaron/session v1.0.3
github.com/go-resty/resty/v2 v2.16.5
github.com/jarcoal/httpmock v1.3.1
github.com/json-iterator/go v1.1.12
github.com/microcosm-cc/bluemonday v1.0.27
github.com/midoks/mcopa v0.0.0-20220101182214-c193ea891591
github.com/phachon/go-logger v0.0.0-20191215032019-86e4227f71ea
github.com/pkg/errors v0.9.1
github.com/smartystreets/goconvey v1.8.1
github.com/stretchr/testify v1.10.0
github.com/unknwon/i18n v0.0.0-20210904045753-ff3a8617e361
github.com/urfave/cli v1.22.16
golang.org/x/text v0.21.0
gopkg.in/ini.v1 v1.67.0
gopkg.in/macaron.v1 v1.5.0
gorm.io/driver/mysql v1.5.7
gorm.io/gorm v1.25.12
)
require (
github.com/aymerick/douceur v0.2.0 // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.5 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/dustin/go-humanize v1.0.1 // indirect
github.com/fatih/color v1.7.0 // indirect
github.com/glebarez/go-sqlite v1.21.2 // indirect
github.com/go-macaron/inject v0.0.0-20200308113650-138e5925c53b // indirect
github.com/go-sql-driver/mysql v1.7.0 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/gopherjs/gopherjs v1.17.2 // indirect
github.com/gorilla/css v1.0.1 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
github.com/jtolds/gls v4.20.0+incompatible // indirect
github.com/klauspost/compress v1.10.3 // indirect
github.com/mailru/easyjson v0.7.0 // indirect
github.com/mattn/go-colorable v0.1.4 // indirect
github.com/mattn/go-isatty v0.0.17 // indirect
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/smarty/assertions v1.15.0 // indirect
github.com/stretchr/objx v0.5.2 // indirect
github.com/unknwon/com v1.0.1 // indirect
golang.org/x/crypto v0.31.0 // indirect
golang.org/x/mod v0.17.0 // indirect
golang.org/x/net v0.33.0 // indirect
golang.org/x/sys v0.28.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
modernc.org/libc v1.22.5 // indirect
modernc.org/mathutil v1.5.0 // indirect
modernc.org/memory v1.5.0 // indirect
modernc.org/sqlite v1.23.1 // indirect
)