-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathgo.mod
44 lines (41 loc) · 1.75 KB
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
module github.com/jaeyo/personal-archive
go 1.18
require (
github.com/JohannesKaufmann/html-to-markdown v1.2.0
github.com/PuerkitoBio/goquery v1.6.1
github.com/gammazero/workerpool v1.1.1
github.com/go-shiori/go-readability v0.0.0-20201011032228-bdc871772408
github.com/golang/mock v1.6.0
github.com/labstack/echo/v4 v4.6.0
github.com/mattn/go-sqlite3 v1.14.6
github.com/pasztorpisti/qs v0.0.0-20171216220353-8d6c33ee906c
github.com/pkg/errors v0.9.1
github.com/sirupsen/logrus v1.7.0
github.com/stretchr/testify v1.6.1
github.com/tidwall/gjson v1.6.7
gorm.io/driver/sqlite v1.1.4
gorm.io/gorm v1.20.9
)
require (
github.com/andybalholm/cascadia v1.2.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/gammazero/deque v0.0.0-20200721202602-07291166fe33 // indirect
github.com/go-shiori/dom v0.0.0-20201011032054-d6b74a54fe52 // indirect
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.1 // indirect
github.com/labstack/gommon v0.3.0 // indirect
github.com/mattn/go-colorable v0.1.10 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/tidwall/match v1.0.3 // indirect
github.com/tidwall/pretty v1.0.2 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasttemplate v1.2.1 // indirect
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519 // indirect
golang.org/x/net v0.0.0-20210924151903-3ad01bbaa167 // indirect
golang.org/x/sys v0.0.0-20210925032602-92d5a993a665 // indirect
golang.org/x/text v0.3.7 // indirect
golang.org/x/time v0.0.0-20201208040808-7e3f01d25324 // indirect
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
)