-
Notifications
You must be signed in to change notification settings - Fork 1
/
go.mod
27 lines (24 loc) · 900 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/similar-manga/similar
go 1.21.0
require (
github.com/PuerkitoBio/goquery v1.8.1
github.com/antihax/optional v1.0.0
github.com/caneroj1/stemmer v0.0.0-20170128035808-c9f2ce1504d5
github.com/james-bowman/nlp v0.0.0-20210511120306-26d441fa0ded
github.com/james-bowman/sparse v0.0.0-20210729090128-1e6c7dd483e9
github.com/mattn/go-sqlite3 v1.14.17
github.com/spf13/cobra v1.7.0
go.uber.org/ratelimit v0.3.0
golang.org/x/text v0.13.0
gonum.org/v1/gonum v0.11.0
)
require (
github.com/andybalholm/cascadia v1.3.1 // indirect
github.com/armon/go-radix v1.0.0 // indirect
github.com/benbjohnson/clock v1.3.0 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/spaolacci/murmur3 v1.1.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
golang.org/x/exp v0.0.0-20231006140011-7918f672742d // indirect
golang.org/x/net v0.17.0 // indirect
)