-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgo.mod
75 lines (72 loc) · 3.24 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
module github.com/sinlov/GoLang-PlayGround
go 1.20
require (
github.com/alecthomas/log4go v0.0.0-20180109082532-d146e6b86faa
github.com/antlabs/timer v0.0.11
github.com/bitly/go-simplejson v0.5.1
github.com/buger/jsonparser v1.1.1
github.com/bwmarrin/snowflake v0.3.0
github.com/chilts/sid v0.0.0-20190607042430-660e94789ec9
github.com/donnie4w/json4g v0.0.0-20160510154529-55f68986f34c
github.com/go-vgo/robotgo v1.0.0-rc2
github.com/google/uuid v1.3.1
github.com/ideazxy/iso8583 v0.0.0-20160317060925-d06dcb8f1fc4
github.com/ipfs/go-cid v0.4.1
github.com/json-iterator/go v1.1.12
github.com/kjk/betterguid v0.0.0-20170621091430-c442874ba63a
github.com/lithammer/shortuuid v2.0.3+incompatible
github.com/mailru/easyjson v0.7.7
github.com/multiformats/go-multihash v0.2.3
github.com/oklog/ulid v1.3.1
github.com/pkg/profile v1.7.0
github.com/pquerna/ffjson v0.0.0-20190930134022-aa0246cd15f7
github.com/rs/xid v1.5.0
github.com/satori/go.uuid v1.2.0
github.com/segmentio/ksuid v1.0.4
github.com/sinlov/fastEncryptDecode v0.0.0-20201225084021-254d1ebf8a98
github.com/sony/sonyflake v1.2.0
github.com/stretchr/testify v1.8.4
github.com/ugorji/go/codec v1.2.11
github.com/xxtea/xxtea-go v1.0.0
gopkg.in/yaml.v3 v3.0.1
)
require (
github.com/antlabs/stl v0.0.1 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/felixge/fgprof v0.9.3 // indirect
github.com/gen2brain/shm v0.0.0-20221026125803-c33c9e32b1c8 // indirect
github.com/go-ole/go-ole v1.2.6 // indirect
github.com/google/pprof v0.0.0-20211214055906-6f57359322fd // indirect
github.com/jezek/xgb v1.1.0 // indirect
github.com/josharian/intern v1.0.0 // indirect
github.com/kbinani/screenshot v0.0.0-20210720154843-7d3a670d8329 // indirect
github.com/klauspost/cpuid/v2 v2.0.9 // indirect
github.com/lufia/plan9stats v0.0.0-20230110061619-bbe2e5e100de // indirect
github.com/lxn/win v0.0.0-20210218163916-a377121e959e // indirect
github.com/minio/sha256-simd v1.0.0 // indirect
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/mr-tron/base58 v1.2.0 // indirect
github.com/multiformats/go-base32 v0.0.3 // indirect
github.com/multiformats/go-base36 v0.1.0 // indirect
github.com/multiformats/go-multibase v0.0.3 // indirect
github.com/multiformats/go-varint v0.0.6 // indirect
github.com/otiai10/gosseract v2.2.1+incompatible // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/power-devops/perfstat v0.0.0-20221212215047-62379fc7944b // indirect
github.com/robotn/xgb v0.0.0-20190912153532-2cb92d044934 // indirect
github.com/robotn/xgbutil v0.0.0-20190912154524-c861d6f87770 // indirect
github.com/shirou/gopsutil/v3 v3.23.1 // indirect
github.com/spaolacci/murmur3 v1.1.0 // indirect
github.com/tklauser/go-sysconf v0.3.11 // indirect
github.com/tklauser/numcpus v0.6.0 // indirect
github.com/vcaesar/gops v0.30.1 // indirect
github.com/vcaesar/imgo v0.30.2 // indirect
github.com/vcaesar/keycode v0.10.0 // indirect
github.com/vcaesar/tt v0.20.0 // indirect
github.com/yusufpapurcu/wmi v1.2.2 // indirect
golang.org/x/crypto v0.31.0 // indirect
golang.org/x/image v0.18.0 // indirect
golang.org/x/sys v0.28.0 // indirect
lukechampine.com/blake3 v1.1.6 // indirect
)