-
-
Notifications
You must be signed in to change notification settings - Fork 47
/
go.mod
39 lines (36 loc) · 1.55 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
module github.com/TimothyYe/ydict
require (
github.com/PuerkitoBio/goquery v1.8.0
github.com/briandowns/spinner v1.18.1
github.com/fatih/color v1.13.0
github.com/gen2brain/beeep v0.0.0-20220518085355-d7852edf42fc
github.com/joho/godotenv v1.4.0
github.com/smartystreets/goconvey v0.0.0-20190731233626-505e41936337
github.com/spf13/cobra v1.4.0
github.com/syndtr/goleveldb v1.0.0
github.com/xwjdsh/fy v0.6.0
golang.org/x/net v0.0.0-20220531201128-c960675eff93
)
require (
github.com/andybalholm/cascadia v1.3.1 // indirect
github.com/go-toast/toast v0.0.0-20190211030409-01e6764cf0a4 // indirect
github.com/godbus/dbus/v5 v5.1.0 // indirect
github.com/golang/snappy v0.0.4 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/gopherjs/gopherjs v1.12.80 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/jtolds/gls v4.20.0+incompatible // indirect
github.com/mattn/go-colorable v0.1.12 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/nu7hatch/gouuid v0.0.0-20131221200532-179d4d0c4d8d // indirect
github.com/robertkrimen/otto v0.0.0-20211024170158-b87d35c0b86f // indirect
github.com/smartystreets/assertions v1.0.1 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/tadvi/systray v0.0.0-20190226123456-11a2b8fa57af // indirect
github.com/tidwall/gjson v1.14.1 // indirect
github.com/tidwall/match v1.1.1 // indirect
github.com/tidwall/pretty v1.2.0 // indirect
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a // indirect
gopkg.in/sourcemap.v1 v1.0.5 // indirect
)
go 1.17