-
Notifications
You must be signed in to change notification settings - Fork 38
/
go.mod
28 lines (23 loc) · 1015 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
28
module github.com/kewka/give-me-bnb
go 1.17
require golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
require gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
require (
github.com/ethereum/go-ethereum v1.10.11
github.com/gorilla/websocket v1.5.0
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a // indirect
)
require (
github.com/StackExchange/wmi v1.2.1 // indirect
github.com/btcsuite/btcd v0.20.1-beta // indirect
github.com/deckarep/golang-set v0.0.0-20180603214616-504e848d77ea // indirect
github.com/go-ole/go-ole v1.2.5 // indirect
github.com/go-stack/stack v1.8.0 // indirect
github.com/google/uuid v1.1.5 // indirect
github.com/rjeczalik/notify v0.9.1 // indirect
github.com/shirou/gopsutil v3.21.8+incompatible // indirect
github.com/tklauser/go-sysconf v0.3.9 // indirect
github.com/tklauser/numcpus v0.3.0 // indirect
golang.org/x/crypto v0.0.0-20220518034528-6f7dac969898 // indirect
gopkg.in/natefinch/npipe.v2 v2.0.0-20160621034901-c1b8fa8bdcce // indirect
)