2020-06-12 16:22:02 +00:00
|
|
|
module github.com/bouncepaw/mycorrhiza
|
|
|
|
|
2022-09-18 11:03:41 +00:00
|
|
|
go 1.19
|
2020-08-31 17:52:26 +00:00
|
|
|
|
2020-11-14 14:46:04 +00:00
|
|
|
require (
|
2023-08-05 21:13:34 +00:00
|
|
|
git.sr.ht/~bouncepaw/mycomarkup/v5 v5.5.0
|
2021-11-10 13:14:31 +00:00
|
|
|
github.com/go-ini/ini v1.63.2
|
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-10-26 05:44:23 +00:00
|
|
|
github.com/valyala/quicktemplate v1.7.0
|
2023-03-06 23:27:58 +00:00
|
|
|
golang.org/x/crypto v0.1.0
|
2022-04-17 13:07:33 +00:00
|
|
|
golang.org/x/exp v0.0.0-20220414153411-bcd21879b8fd
|
2023-03-06 23:27:58 +00:00
|
|
|
golang.org/x/term v0.1.0
|
|
|
|
golang.org/x/text v0.4.0
|
2021-11-10 13:14:31 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
require (
|
|
|
|
github.com/kr/pretty v0.2.1 // indirect
|
|
|
|
github.com/stretchr/testify v1.7.0 // indirect
|
2022-02-10 07:57:50 +00:00
|
|
|
github.com/valyala/bytebufferpool v1.0.0 // indirect
|
2023-03-06 23:27:58 +00:00
|
|
|
golang.org/x/sys v0.1.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:
|
2023-08-05 21:13:34 +00:00
|
|
|
// replace git.sr.ht/~bouncepaw/mycomarkup/v5 v5.5.0 => "/Users/bouncepaw/src/mycomarkup"
|