2019-01-09 11:13:13 +00:00
|
|
|
module github.com/knadh/listmonk
|
2020-07-08 11:00:14 +00:00
|
|
|
|
2020-05-16 17:11:30 +00:00
|
|
|
go 1.13
|
2019-01-09 11:13:13 +00:00
|
|
|
|
|
|
|
require (
|
2021-04-11 10:00:48 +00:00
|
|
|
github.com/Masterminds/sprig/v3 v3.2.2
|
2020-08-08 07:41:49 +00:00
|
|
|
github.com/dgrijalva/jwt-go v3.2.0+incompatible // indirect
|
2020-03-08 10:33:57 +00:00
|
|
|
github.com/disintegration/imaging v1.6.2
|
2021-11-10 14:59:21 +00:00
|
|
|
github.com/emersion/go-message v0.15.0
|
2021-09-28 18:37:26 +00:00
|
|
|
github.com/fsnotify/fsnotify v1.5.1 // indirect
|
|
|
|
github.com/gofrs/uuid v4.0.0+incompatible
|
|
|
|
github.com/google/uuid v1.3.0 // indirect
|
|
|
|
github.com/huandu/xstrings v1.3.2 // indirect
|
|
|
|
github.com/imdario/mergo v0.3.12 // indirect
|
|
|
|
github.com/jmoiron/sqlx v1.3.4
|
2021-11-10 14:59:21 +00:00
|
|
|
github.com/knadh/go-pop3 v0.3.0
|
2021-09-28 18:37:26 +00:00
|
|
|
github.com/knadh/goyesql/v2 v2.1.2
|
|
|
|
github.com/knadh/koanf v1.2.3
|
|
|
|
github.com/knadh/smtppool v0.3.1
|
2020-03-14 15:37:14 +00:00
|
|
|
github.com/knadh/stuffbin v1.1.0
|
2019-05-27 11:40:02 +00:00
|
|
|
github.com/labstack/echo v3.3.10+incompatible
|
2020-03-08 10:33:57 +00:00
|
|
|
github.com/labstack/gommon v0.3.0 // indirect
|
2021-09-28 18:37:26 +00:00
|
|
|
github.com/lib/pq v1.10.3
|
|
|
|
github.com/mailru/easyjson v0.7.7
|
|
|
|
github.com/mattn/go-colorable v0.1.10 // indirect
|
|
|
|
github.com/mattn/go-isatty v0.0.14 // indirect
|
|
|
|
github.com/mitchellh/mapstructure v1.4.2 // indirect
|
2020-03-08 10:33:57 +00:00
|
|
|
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
|
2021-09-28 18:37:26 +00:00
|
|
|
github.com/pelletier/go-toml v1.9.4 // indirect
|
2021-08-15 06:45:00 +00:00
|
|
|
github.com/rhnvrm/simples3 v0.7.0
|
2021-09-28 18:37:26 +00:00
|
|
|
github.com/spf13/cast v1.4.1 // indirect
|
2020-03-08 10:33:57 +00:00
|
|
|
github.com/spf13/pflag v1.0.5
|
2021-09-28 18:37:26 +00:00
|
|
|
github.com/valyala/fasttemplate v1.2.1 // indirect
|
|
|
|
github.com/yuin/goldmark v1.4.1
|
|
|
|
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519 // indirect
|
|
|
|
golang.org/x/image v0.0.0-20210628002857-a66eb6448b8d // indirect
|
|
|
|
golang.org/x/mod v0.5.1
|
|
|
|
golang.org/x/net v0.0.0-20210928044308-7d9f5e0b762b // indirect
|
|
|
|
golang.org/x/sys v0.0.0-20210927094055-39ccf1dd6fa6 // indirect
|
|
|
|
golang.org/x/text v0.3.7 // indirect
|
2020-03-08 10:33:57 +00:00
|
|
|
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
|
2019-01-09 11:13:13 +00:00
|
|
|
gopkg.in/volatiletech/null.v6 v6.0.0-20170828023728-0bef4e07ae1b
|
2020-07-08 11:00:14 +00:00
|
|
|
)
|
2021-04-10 10:52:09 +00:00
|
|
|
|
|
|
|
replace github.com/imdario/mergo => github.com/imdario/mergo v0.3.8
|