GoBlog/go.mod

51 lines
2.1 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 (
github.com/PuerkitoBio/goquery v1.5.1
github.com/andybalholm/cascadia v1.2.0 // indirect
github.com/araddon/dateparse v0.0.0-20200409225146-d820a6159ab1
github.com/caddyserver/certmagic v0.12.0
2020-07-29 14:41:36 +00:00
github.com/go-chi/chi v4.1.2+incompatible
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
github.com/jeremywohl/flatten v1.0.1
github.com/jinzhu/gorm v1.9.16 // indirect
2020-08-01 15:49:46 +00:00
github.com/klauspost/cpuid v1.3.1 // indirect
github.com/kr/pretty v0.2.1 // indirect
2020-07-28 19:17:07 +00:00
github.com/kr/text v0.2.0 // indirect
2020-09-18 11:11:25 +00:00
github.com/kyokomi/emoji v2.2.4+incompatible
2020-07-28 19:17:07 +00:00
github.com/lib/pq v1.8.0 // indirect
github.com/lopezator/migrator v0.3.0
github.com/magiconair/properties v1.8.3 // indirect
github.com/mattn/go-sqlite3 v1.14.3
2020-08-01 15:49:46 +00:00
github.com/miekg/dns v1.1.31 // indirect
2020-07-28 19:17:07 +00:00
github.com/mitchellh/mapstructure v1.3.3 // indirect
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
github.com/pelletier/go-toml v1.8.1 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/smartystreets/assertions v1.2.0 // indirect
github.com/spf13/afero v1.4.0 // 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
github.com/stretchr/testify v1.6.1 // indirect
github.com/tdewolff/minify/v2 v2.9.4
2020-08-05 17:54:04 +00:00
github.com/vcraescu/go-paginator v0.0.0-20200304054438-86d84f27c0b3
2020-07-30 19:57:19 +00:00
github.com/yuin/goldmark v1.2.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
golang.org/x/crypto v0.0.0-20200820211705-5c72a883971a // indirect
golang.org/x/lint v0.0.0-20200302205851-738671d3881b // indirect
golang.org/x/net v0.0.0-20200904194848-62affa334b73 // indirect
golang.org/x/sys v0.0.0-20200918174421-af09f7315aff // indirect
golang.org/x/tools v0.0.0-20200918232735-d647fc253266 // indirect
2020-09-02 15:48:37 +00:00
gopkg.in/check.v1 v1.0.0-20200902074654-038fdea0a05b // indirect
gopkg.in/ini.v1 v1.61.0 // indirect
gopkg.in/yaml.v2 v2.3.0 // indirect
gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776
honnef.co/go/tools v0.0.1-2020.1.5 // indirect
2020-07-28 19:17:07 +00:00
)