This repository has been archived by the owner on May 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 90
/
go.mod
54 lines (50 loc) · 2.08 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
module miner-proxy
go 1.17
require (
github.com/BurntSushi/toml v1.0.0 // indirect
github.com/common-nighthawk/go-figure v0.0.0-20200609044655-c4b36f998cf2
github.com/dustin/go-humanize v1.0.0
github.com/gin-gonic/gin v1.7.7
github.com/jmcvetta/randutil v0.0.0-20150817122601-2bb1b664bcff
github.com/kardianos/service v1.2.0
github.com/liushuochen/gotable v0.0.0-20220106123442-3486f065ca09
github.com/wxpusher/wxpusher-sdk-go v1.0.3
go.uber.org/zap v1.21.0
gopkg.in/natefinch/lumberjack.v2 v2.0.0
)
require (
github.com/denisbrodbeck/machineid v1.0.1
github.com/emirpasic/gods v1.12.0
github.com/panjf2000/gnet v1.6.4
github.com/pkg/errors v0.8.1
github.com/segmentio/ksuid v1.0.4
github.com/smallnest/goframe v1.0.0
github.com/spf13/cast v1.4.1
github.com/urfave/cli v1.22.5
github.com/vmihailenco/msgpack/v5 v5.3.5
go.uber.org/atomic v1.9.0
)
require (
github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d // indirect
github.com/gin-contrib/sse v0.1.0 // indirect
github.com/go-playground/locales v0.13.0 // indirect
github.com/go-playground/universal-translator v0.17.0 // indirect
github.com/go-playground/validator/v10 v10.4.1 // indirect
github.com/golang/protobuf v1.3.3 // indirect
github.com/json-iterator/go v1.1.9 // indirect
github.com/leodido/go-urn v1.2.0 // indirect
github.com/mattn/go-isatty v0.0.12 // indirect
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 // indirect
github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742 // indirect
github.com/panjf2000/ants/v2 v2.4.7 // indirect
github.com/patrickmn/go-cache v2.1.0+incompatible // indirect
github.com/russross/blackfriday/v2 v2.0.1 // indirect
github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect
github.com/ugorji/go/codec v1.1.7 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
go.uber.org/multierr v1.7.0 // indirect
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9 // indirect
golang.org/x/sys v0.0.0-20220209214540-3681064d5158 // indirect
gopkg.in/yaml.v2 v2.2.8 // indirect
)