In #1359, we discovered that StartTLS was not working\ due to the wrong host passed. This bumps the library for the fix. Also, after a switch to go-pkgz/notify MailGun email sending broke due to the difference in the destination email parsing, the fix is also applied after this commit.
45 lines
1.7 KiB
AMPL
45 lines
1.7 KiB
AMPL
module github.com/umputun/remark42/memory_store
|
|
|
|
go 1.17
|
|
|
|
require (
|
|
github.com/go-pkgz/jrpc v0.2.0
|
|
github.com/go-pkgz/lgr v0.10.4
|
|
github.com/jessevdk/go-flags v1.5.0
|
|
github.com/stretchr/testify v1.7.1
|
|
github.com/umputun/remark42/backend v1.9.0
|
|
)
|
|
|
|
require (
|
|
github.com/Depado/bfchroma v1.3.0 // indirect
|
|
github.com/PuerkitoBio/goquery v1.8.0 // indirect
|
|
github.com/alecthomas/chroma v0.10.0 // indirect
|
|
github.com/andybalholm/cascadia v1.3.1 // indirect
|
|
github.com/aymerick/douceur v0.2.0 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/didip/tollbooth/v6 v6.1.2 // indirect
|
|
github.com/didip/tollbooth_chi v0.0.0-20220429013743-da966f2f674b // indirect
|
|
github.com/dlclark/regexp2 v1.4.0 // indirect
|
|
github.com/go-chi/chi v4.1.1+incompatible // indirect
|
|
github.com/go-chi/render v1.0.1 // indirect
|
|
github.com/go-pkgz/expirable-cache v0.0.3 // indirect
|
|
github.com/go-pkgz/rest v1.15.0 // indirect
|
|
github.com/gorilla/css v1.0.0 // indirect
|
|
github.com/hashicorp/errwrap v1.1.0 // indirect
|
|
github.com/hashicorp/go-multierror v1.1.1 // indirect
|
|
github.com/microcosm-cc/bluemonday v1.0.18 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/rs/xid v1.4.0 // indirect
|
|
github.com/russross/blackfriday/v2 v2.1.0 // indirect
|
|
github.com/stretchr/objx v0.3.0 // indirect
|
|
go.etcd.io/bbolt v1.3.6 // indirect
|
|
golang.org/x/image v0.0.0-20220413100746-70e8d0d3baa9 // indirect
|
|
golang.org/x/net v0.0.0-20220520000938-2e3eb7b945c2 // indirect
|
|
golang.org/x/sys v0.0.0-20220412211240-33da011f77ad // indirect
|
|
golang.org/x/time v0.0.0-20220411224347-583f2d630306 // indirect
|
|
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
|
|
)
|
|
|
|
replace github.com/umputun/remark42/backend => ../../
|