1
0
mirror of https://github.com/osmarks/mycorrhiza.git synced 2025-02-07 14:40:16 +00:00
mycorrhiza/go.mod

30 lines
996 B
Modula-2
Raw Normal View History

2020-06-12 21:22:02 +05:00
module github.com/bouncepaw/mycorrhiza
2021-11-10 20:14:31 +07:00
go 1.17
2020-08-31 22:52:26 +05:00
2020-11-14 19:46:04 +05:00
require (
2022-02-19 12:15:56 +03:00
github.com/bouncepaw/mycomarkup/v3 v3.6.2
2021-11-10 20:14:31 +07:00
github.com/go-ini/ini v1.63.2
github.com/gorilla/feeds v1.1.1
github.com/gorilla/mux v1.8.0
github.com/valyala/quicktemplate v1.7.0
2021-11-10 20:14:31 +07:00
golang.org/x/crypto v0.0.0-20211108221036-ceb1ce70b4fa
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211
2021-09-07 01:46:34 +08:00
golang.org/x/text v0.3.7
2021-11-10 20:14:31 +07:00
)
require (
github.com/kr/pretty v0.2.1 // indirect
github.com/stretchr/testify v1.7.0 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
2021-11-10 20:14:31 +07:00
golang.org/x/sys v0.0.0-20211109184856-51b60fd695b3 // indirect
2020-11-14 19:46:04 +05:00
)
// Use this trick to test local Mycomarkup changes, replace the path with yours,
// but do not commit the change to the path:
2022-02-19 12:15:56 +03:00
// replace github.com/bouncepaw/mycomarkup/v3 v3.6.2 => "/Users/bouncepaw/GolandProjects/mycomarkup"
2021-09-12 12:01:32 +03:00
// Use this utility every time Mycomarkup gets a major update:
2021-09-12 12:01:32 +03:00
// https://github.com/marwan-at-work/mod
// Or maybe just ⌘⇧R every time, the utility is kinda weird.