2020-06-12 16:22:02 +00:00
|
|
|
module github.com/bouncepaw/mycorrhiza
|
|
|
|
|
2021-06-12 13:51:28 +00:00
|
|
|
go 1.16
|
2020-08-31 17:52:26 +00:00
|
|
|
|
2020-11-14 14:46:04 +00:00
|
|
|
require (
|
2021-11-05 21:32:03 +00:00
|
|
|
github.com/bouncepaw/mycomarkup/v3 v3.2.2
|
|
|
|
github.com/chekoopa/go-localize v0.4.0
|
2021-04-12 17:40:43 +00:00
|
|
|
github.com/go-ini/ini v1.62.0
|
2020-12-08 15:15:32 +00:00
|
|
|
github.com/gorilla/feeds v1.1.1
|
2021-07-15 17:46:35 +00:00
|
|
|
github.com/gorilla/mux v1.8.0
|
2021-01-09 20:49:48 +00:00
|
|
|
github.com/kr/pretty v0.2.1 // indirect
|
2021-04-12 17:40:43 +00:00
|
|
|
github.com/smartystreets/goconvey v1.6.4 // indirect
|
2021-10-26 05:44:23 +00:00
|
|
|
github.com/valyala/quicktemplate v1.7.0
|
2021-08-04 05:37:14 +00:00
|
|
|
golang.org/x/crypto v0.0.0-20210711020723-a769d52b0f97
|
|
|
|
golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c // indirect
|
2021-07-02 10:25:13 +00:00
|
|
|
golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b
|
2021-09-06 17:46:34 +00:00
|
|
|
golang.org/x/text v0.3.7
|
2021-04-12 17:40:43 +00:00
|
|
|
gopkg.in/ini.v1 v1.62.0 // indirect
|
2020-11-14 14:46:04 +00:00
|
|
|
)
|
2021-06-13 20:52:12 +00:00
|
|
|
|
2021-10-05 20:10:28 +00:00
|
|
|
// Use this trick to test local Mycomarkup changes, replace the path with yours,
|
|
|
|
// but do not commit the change to the path:
|
2021-11-05 21:32:03 +00:00
|
|
|
// replace github.com/bouncepaw/mycomarkup/v3 v3.2.2 => "/Users/bouncepaw/GolandProjects/mycomarkup"
|
2021-09-12 09:01:32 +00:00
|
|
|
|
2021-10-05 20:10:28 +00:00
|
|
|
// Use this utility every time Mycomarkup gets a major update:
|
2021-09-12 09:01:32 +00:00
|
|
|
// https://github.com/marwan-at-work/mod
|
2021-10-05 20:10:28 +00:00
|
|
|
// Or maybe just ⌘⇧R every time, the utility is kinda weird.
|