-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgo.mod
32 lines (29 loc) · 1.13 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
module github.com/zoomio/tagify
require (
github.com/abadojack/whatlanggo v1.0.1
github.com/go-ego/gse v0.70.2
github.com/jinzhu/inflection v0.0.0-20180308033659-04140366298a
github.com/stretchr/testify v1.8.4
github.com/zoomio/inout v0.14.0
github.com/zoomio/stopwords v0.11.0
golang.org/x/net v0.0.0-20220107192237-5cfca573fb4d
)
require (
github.com/chromedp/cdproto v0.0.0-20230802225258-3cf4e6d46a89 // indirect
github.com/chromedp/chromedp v0.9.2 // indirect
github.com/chromedp/sysutil v1.0.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/gobwas/httphead v0.1.0 // indirect
github.com/gobwas/pool v0.2.1 // indirect
github.com/gobwas/ws v1.2.1 // indirect
github.com/josharian/intern v1.0.0 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/mailru/easyjson v0.7.7 // indirect
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/vcaesar/cedar v0.20.1 // indirect
golang.org/x/sys v0.6.0 // indirect
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
go 1.22