-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathgo.mod
27 lines (24 loc) · 988 Bytes
/
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
module github.com/piqoni/hn-text
go 1.21.1
require (
github.com/PuerkitoBio/goquery v1.9.2
github.com/gdamore/tcell/v2 v2.7.4
github.com/gelembjuk/articletext v0.0.0-20231013143648-bc7a97ba132a
github.com/rivo/tview v0.0.0-20240524063012-037df494fb76
jaytaylor.com/html2text v0.0.0-20230321000545-74c2419ad056
)
require (
github.com/andybalholm/cascadia v1.3.2 // indirect
github.com/gdamore/encoding v1.0.0 // indirect
github.com/jaytaylor/html2text v0.0.0-20230321000545-74c2419ad056 // indirect
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
github.com/mattn/go-runewidth v0.0.15 // indirect
github.com/olekukonko/tablewriter v0.0.5 // indirect
github.com/rivo/uniseg v0.4.7 // indirect
github.com/ssor/bom v0.0.0-20170718123548-6386211fdfcf // indirect
golang.org/x/net v0.24.0 // indirect
golang.org/x/sys v0.19.0 // indirect
golang.org/x/term v0.19.0 // indirect
golang.org/x/text v0.14.0 // indirect
gopkg.in/neurosnap/sentences.v1 v1.0.7 // indirect
)