-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathgo.mod
22 lines (20 loc) · 875 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
module DictGenerate
require (
github.com/Lofanmi/pinyin-golang v0.0.0-20211114132645-1db892057f20
github.com/cpuguy83/go-md2man/v2 v2.0.1 // indirect
github.com/ernestosuarez/itertools v0.0.0-20190516153236-40a02c159e7b
github.com/json-iterator/go v1.1.12
github.com/kardianos/osext v0.0.0-20190222173326-2bc1f35cddc0
github.com/mattn/go-runewidth v0.0.13 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/nosixtools/solarlunar v0.0.0-20211112060703-1b6dea7b4a19
github.com/olekukonko/tablewriter v0.0.1
github.com/peterh/liner v1.2.2
github.com/urfave/cli v1.22.5
go.uber.org/atomic v1.9.0 // indirect
go.uber.org/multierr v1.7.0 // indirect
go.uber.org/zap v1.20.0 // indirect
golang.org/x/sys v0.0.0-20220114195835-da31bd327af9 // indirect
gopkg.in/natefinch/lumberjack.v2 v2.0.0 // indirect
)
go 1.13