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 (
|
2023-03-19 16:19:12 +00:00
|
|
|
github.com/Masterminds/sprig/v3 v3.2.3
|
2020-03-08 10:33:57 +00:00
|
|
|
github.com/disintegration/imaging v1.6.2
|
2023-03-19 16:19:12 +00:00
|
|
|
github.com/emersion/go-message v0.16.0
|
2021-09-28 18:37:26 +00:00
|
|
|
github.com/gofrs/uuid v4.0.0+incompatible
|
|
|
|
github.com/google/uuid v1.3.0 // indirect
|
2022-11-10 18:01:15 +00:00
|
|
|
github.com/gorilla/feeds v1.1.1
|
2023-03-19 16:19:12 +00:00
|
|
|
github.com/huandu/xstrings v1.4.0 // indirect
|
|
|
|
github.com/imdario/mergo v0.3.14 // indirect
|
|
|
|
github.com/jmoiron/sqlx v1.3.5
|
2021-11-10 14:59:21 +00:00
|
|
|
github.com/knadh/go-pop3 v0.3.0
|
2023-03-19 16:19:12 +00:00
|
|
|
github.com/knadh/goyesql/v2 v2.2.0
|
2023-04-10 07:15:25 +00:00
|
|
|
github.com/knadh/koanf/maps v0.1.1
|
|
|
|
github.com/knadh/koanf/parsers/json v0.1.0
|
|
|
|
github.com/knadh/koanf/parsers/toml v0.1.0
|
|
|
|
github.com/knadh/koanf/providers/confmap v0.1.0
|
|
|
|
github.com/knadh/koanf/providers/env v0.1.0
|
|
|
|
github.com/knadh/koanf/providers/file v0.1.0
|
|
|
|
github.com/knadh/koanf/providers/posflag v0.1.0
|
|
|
|
github.com/knadh/koanf/providers/rawbytes v0.1.0
|
|
|
|
github.com/knadh/koanf/v2 v2.0.0
|
2022-12-24 19:12:00 +00:00
|
|
|
github.com/knadh/paginator v1.0.0
|
2023-01-30 17:37:53 +00:00
|
|
|
github.com/knadh/smtppool v1.0.2
|
2020-03-14 15:37:14 +00:00
|
|
|
github.com/knadh/stuffbin v1.1.0
|
2022-11-10 18:01:15 +00:00
|
|
|
github.com/kr/pretty v0.3.1 // indirect
|
2023-03-19 16:19:12 +00:00
|
|
|
github.com/labstack/echo/v4 v4.10.2
|
|
|
|
github.com/lib/pq v1.10.7
|
2021-09-28 18:37:26 +00:00
|
|
|
github.com/mailru/easyjson v0.7.7
|
2020-03-08 10:33:57 +00:00
|
|
|
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
|
2022-06-27 10:17:38 +00:00
|
|
|
github.com/paulbellamy/ratecounter v0.2.0
|
2023-03-19 16:19:12 +00:00
|
|
|
github.com/rhnvrm/simples3 v0.8.3
|
|
|
|
github.com/shopspring/decimal v1.3.1 // indirect
|
|
|
|
github.com/spf13/cast v1.5.0 // indirect
|
2020-03-08 10:33:57 +00:00
|
|
|
github.com/spf13/pflag v1.0.5
|
2023-03-19 16:19:12 +00:00
|
|
|
github.com/yuin/goldmark v1.5.4
|
|
|
|
golang.org/x/crypto v0.7.0 // indirect
|
|
|
|
golang.org/x/image v0.6.0 // indirect
|
|
|
|
golang.org/x/mod v0.9.0
|
2023-04-10 07:15:25 +00:00
|
|
|
golang.org/x/sys v0.7.0 // 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
|