-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathgo.mod
56 lines (51 loc) · 2.05 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.23
require (
github.com/PuerkitoBio/goquery v1.10.1
github.com/chromedp/cdproto v0.0.0-20250120090109-d38428e4d9c8
github.com/chromedp/chromedp v0.12.1
github.com/gdamore/tcell/v2 v2.8.1
github.com/goodsign/monday v1.0.2
github.com/ilyakaznacheev/cleanenv v1.5.0
github.com/rivo/tview v0.0.0-20241103174730-c76f7879f592
golang.org/x/net v0.34.0
gopkg.in/yaml.v3 v3.0.1
)
require (
github.com/antchfx/jsonquery v1.3.6
github.com/olekukonko/tablewriter v0.0.5
github.com/sjwhitworth/golearn v0.0.0-20221228163002-74ae077eafb2
golang.org/x/exp v0.0.0-20241108190413-2d47ceb2692f
)
require (
github.com/antchfx/xpath v1.3.2 // 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.7.3 // indirect
github.com/rocketlaunchr/dataframe-go v0.0.0-20211025052708-a1030444159b // indirect
golang.org/x/sync v0.10.0 // indirect
gonum.org/v1/gonum v0.15.1 // indirect
)
require (
github.com/BurntSushi/toml v1.4.0 // indirect
github.com/agnivade/levenshtein v1.2.1
github.com/andybalholm/cascadia v1.3.3 // indirect
github.com/chromedp/sysutil v1.1.0 // indirect
github.com/gdamore/encoding v1.0.1 // 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.9.0 // indirect
github.com/mattn/go-runewidth v0.0.16 // indirect
github.com/rivo/uniseg v0.4.7 // indirect
golang.org/x/sys v0.29.0 // indirect
golang.org/x/term v0.28.0 // indirect
golang.org/x/text v0.21.0 // indirect
olympos.io/encoding/edn v0.0.0-20201019073823-d3554ca0b0a3 // indirect
)