2020-06-12 21:22:02 +05:00
|
|
|
module github.com/bouncepaw/mycorrhiza
|
|
|
|
|
2024-09-07 21:32:45 +03:00
|
|
|
go 1.21
|
2020-08-31 22:52:26 +05:00
|
|
|
|
2020-11-14 19:46:04 +05:00
|
|
|
require (
|
2024-06-02 00:49:58 +03:00
|
|
|
git.sr.ht/~bouncepaw/mycomarkup/v5 v5.6.0
|
2024-09-07 21:32:45 +03:00
|
|
|
github.com/go-ini/ini v1.67.0
|
|
|
|
github.com/gorilla/feeds v1.2.0
|
|
|
|
github.com/gorilla/mux v1.8.1
|
2021-10-26 12:44:23 +07:00
|
|
|
github.com/valyala/quicktemplate v1.7.0
|
2024-12-12 06:41:34 +03:00
|
|
|
golang.org/x/crypto v0.31.0
|
|
|
|
golang.org/x/term v0.27.0
|
|
|
|
golang.org/x/text v0.21.0
|
2021-11-10 20:14:31 +07:00
|
|
|
)
|
|
|
|
|
|
|
|
require (
|
|
|
|
github.com/stretchr/testify v1.7.0 // indirect
|
2022-02-10 02:57:50 -05:00
|
|
|
github.com/valyala/bytebufferpool v1.0.0 // indirect
|
2024-12-12 06:41:34 +03:00
|
|
|
golang.org/x/sys v0.28.0 // indirect
|
2020-11-14 19:46:04 +05:00
|
|
|
)
|
2021-06-14 01:52:12 +05:00
|
|
|
|
2021-10-05 23:10:28 +03:00
|
|
|
// Use this trick to test local Mycomarkup changes, replace the path with yours,
|
|
|
|
// but do not commit the change to the path:
|
2024-06-02 00:49:58 +03:00
|
|
|
// replace git.sr.ht/~bouncepaw/mycomarkup/v5 v5.6.0 => "/Users/bouncepaw/src/mycomarkup"
|