GoBlog/go.mod

66 lines
2.8 KiB
Modula-2
Raw Normal View History

2020-07-28 19:17:07 +00:00
module git.jlel.se/jlelse/GoBlog
2020-08-25 18:00:54 +00:00
go 1.15
2020-07-28 19:17:07 +00:00
require (
2020-10-14 19:20:17 +00:00
codeberg.org/jlelse/tinify v0.0.0-20200123222407-7fc9c21822b0
2021-01-15 20:56:46 +00:00
github.com/PuerkitoBio/goquery v1.6.1
github.com/andybalholm/cascadia v1.2.0 // indirect
2020-10-06 17:07:48 +00:00
github.com/araddon/dateparse v0.0.0-20201001162425-8aadafed4dc4
github.com/caddyserver/certmagic v0.12.0
2020-12-15 16:40:14 +00:00
github.com/dgrijalva/jwt-go v3.2.0+incompatible
2020-12-22 19:29:25 +00:00
github.com/go-chi/chi v1.5.1
2020-12-21 19:40:08 +00:00
github.com/go-fed/httpsig v1.1.0
2020-11-17 16:38:17 +00:00
github.com/go-sql-driver/mysql v1.5.0 // indirect
2020-11-22 15:10:59 +00:00
github.com/gofrs/flock v0.8.0 // indirect
2020-10-12 17:46:14 +00:00
github.com/goodsign/monday v1.0.1-0.20201007115131-c065b60ec611
github.com/google/go-cmp v0.5.4 // indirect
2020-07-28 19:17:07 +00:00
github.com/gopherjs/gopherjs v0.0.0-20200217142428-fce0ec30dd00 // indirect
2020-09-02 15:48:37 +00:00
github.com/gorilla/feeds v1.1.1
2020-11-03 17:58:32 +00:00
github.com/gorilla/handlers v1.5.1
2020-11-20 14:33:20 +00:00
github.com/hashicorp/golang-lru v0.5.4
github.com/jeremywohl/flatten v1.0.1
2020-11-26 16:40:40 +00:00
github.com/jonboulle/clockwork v0.2.2 // indirect
2020-11-22 15:10:59 +00:00
github.com/joncrlsn/dque v0.0.0-20200702023911-3e80e3146ce5
github.com/klauspost/cpuid v1.3.1 // indirect
2020-07-28 19:17:07 +00:00
github.com/kr/text v0.2.0 // indirect
2020-12-31 16:15:05 +00:00
github.com/kyokomi/emoji/v2 v2.2.8
2020-11-26 16:40:40 +00:00
github.com/lestrrat-go/file-rotatelogs v2.4.0+incompatible
2021-01-09 10:25:37 +00:00
github.com/lestrrat-go/strftime v1.0.4 // indirect
2020-12-03 19:35:31 +00:00
github.com/lib/pq v1.9.0 // indirect
2020-07-28 19:17:07 +00:00
github.com/lopezator/migrator v0.3.0
2020-09-24 15:13:03 +00:00
github.com/magiconair/properties v1.8.4 // indirect
2020-12-26 18:46:24 +00:00
github.com/mattn/go-sqlite3 v1.14.6
2021-01-09 10:25:37 +00:00
github.com/mholt/acmez v0.1.2 // indirect
github.com/miekg/dns v1.1.35 // indirect
2021-01-15 20:56:46 +00:00
github.com/mitchellh/mapstructure v1.4.1 // indirect
github.com/pelletier/go-toml v1.8.1 // indirect
github.com/smartystreets/assertions v1.2.0 // indirect
2020-09-22 15:08:34 +00:00
github.com/snabb/sitemap v1.0.0
2020-12-09 16:25:09 +00:00
github.com/spf13/afero v1.5.1 // indirect
2020-09-19 11:07:58 +00:00
github.com/spf13/cast v1.3.1
2020-07-28 19:17:07 +00:00
github.com/spf13/jwalterweatherman v1.1.0 // indirect
2020-08-01 15:49:46 +00:00
github.com/spf13/viper v1.7.1
2021-01-15 20:56:46 +00:00
github.com/stretchr/testify v1.7.0 // indirect
2021-01-21 16:59:47 +00:00
github.com/tdewolff/minify/v2 v2.9.11
github.com/tomnomnom/linkheader v0.0.0-20180905144013-02ca5825eb80
2020-11-17 16:38:17 +00:00
github.com/vcraescu/go-paginator v1.0.1-0.20201114172518-2cfc59fe05c2
2020-12-26 18:46:24 +00:00
github.com/yuin/goldmark v1.3.1
github.com/yuin/goldmark-emoji v1.0.1
go.uber.org/multierr v1.6.0 // indirect
go.uber.org/zap v1.16.0 // indirect
2020-12-22 19:29:25 +00:00
golang.org/x/crypto v0.0.0-20201221181555-eec23a3978ad // indirect
2020-12-08 18:36:19 +00:00
golang.org/x/lint v0.0.0-20201208152925-83fdc39ff7b5 // indirect
2021-01-15 20:56:46 +00:00
golang.org/x/mod v0.4.1 // indirect
golang.org/x/net v0.0.0-20210119194325-5f4716e94777 // indirect
2020-12-08 18:36:19 +00:00
golang.org/x/sync v0.0.0-20201207232520-09787c993a3a
2020-12-12 21:23:07 +00:00
golang.org/x/term v0.0.0-20201210144234-2321bbc49cbf // indirect
2021-01-09 10:25:37 +00:00
golang.org/x/text v0.3.5 // indirect
2020-12-03 19:35:31 +00:00
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
2020-10-06 17:07:48 +00:00
gopkg.in/ini.v1 v1.62.0 // indirect
2020-11-26 08:44:44 +00:00
gopkg.in/yaml.v2 v2.4.0 // indirect
2021-01-09 10:25:37 +00:00
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
2021-01-21 16:59:47 +00:00
honnef.co/go/tools v0.1.1 // indirect
willnorris.com/go/microformats v1.1.1
2020-07-28 19:17:07 +00:00
)