forked from jakopako/goskyr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
56 lines (51 loc) · 2.06 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
45
46
47
48
49
50
51
52
53
54
55
56
module github.com/jakopako/goskyr
go 1.22
require (
github.com/PuerkitoBio/goquery v1.9.2
github.com/chromedp/cdproto v0.0.0-20240801214329-3f85d328b335
github.com/chromedp/chromedp v0.10.0
github.com/gdamore/tcell/v2 v2.7.4
github.com/goodsign/monday v1.0.2
github.com/ilyakaznacheev/cleanenv v1.5.0
github.com/rivo/tview v0.0.0-20231206124440-5f078138442e
golang.org/x/net v0.28.0
gopkg.in/yaml.v3 v3.0.1
)
require (
github.com/antchfx/jsonquery v1.3.5
github.com/sjwhitworth/golearn v0.0.0-20221228163002-74ae077eafb2
golang.org/x/exp v0.0.0-20231219180239-dc181d75b848
)
require (
github.com/antchfx/xpath v1.3.1 // indirect
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
github.com/gonum/blas v0.0.0-20181208220705-f22b278b28ac // indirect
github.com/gonum/lapack v0.0.0-20181123203213-e4cdc5a0bff9 // indirect
github.com/gonum/matrix v0.0.0-20181209220409-c518dec07be9 // indirect
github.com/google/go-cmp v0.6.0 // indirect
github.com/guptarohit/asciigraph v0.5.6 // indirect
github.com/olekukonko/tablewriter v0.0.5 // indirect
github.com/rocketlaunchr/dataframe-go v0.0.0-20211025052708-a1030444159b // indirect
golang.org/x/sync v0.8.0 // indirect
gonum.org/v1/gonum v0.14.0 // indirect
)
require (
github.com/BurntSushi/toml v1.3.2 // indirect
github.com/agnivade/levenshtein v1.1.1
github.com/andybalholm/cascadia v1.3.2 // indirect
github.com/chromedp/sysutil v1.0.0 // indirect
github.com/gdamore/encoding v1.0.0 // indirect
github.com/gobwas/httphead v0.1.0 // indirect
github.com/gobwas/pool v0.2.1 // indirect
github.com/gobwas/ws v1.4.0 // indirect
github.com/joho/godotenv v1.5.1 // indirect
github.com/josharian/intern v1.0.0 // indirect
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
github.com/mailru/easyjson v0.7.7 // indirect
github.com/mattn/go-runewidth v0.0.15 // indirect
github.com/rivo/uniseg v0.4.4 // indirect
golang.org/x/sys v0.23.0 // indirect
golang.org/x/term v0.23.0 // indirect
golang.org/x/text v0.17.0 // indirect
olympos.io/encoding/edn v0.0.0-20201019073823-d3554ca0b0a3 // indirect
)