-
Notifications
You must be signed in to change notification settings - Fork 1
/
go.mod
executable file
·44 lines (41 loc) · 1.84 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
module github.com/cryptoriums/wallger
go 1.18
require (
github.com/alecthomas/kong v0.7.0
github.com/btcsuite/btcd v0.22.0-beta.0.20220330201728-074266215c26
github.com/btcsuite/btcd/btcutil v1.1.1
github.com/cryptoriums/packages v0.0.0-20240112154437-df32d8e273bd
github.com/ethereum/go-ethereum v1.10.25
github.com/go-kit/log v0.2.1
github.com/jinzhu/copier v0.3.6-0.20220210061904-7948fe2be217
github.com/pkg/errors v0.9.1
github.com/posener/complete v1.2.3
github.com/tyler-smith/go-bip39 v1.1.1-0.20201031083441-3423700f9707
github.com/willabides/kongplete v0.3.0
)
require (
github.com/bluele/gcache v0.0.2 // indirect
github.com/btcsuite/btcd/btcec/v2 v2.2.0 // indirect
github.com/btcsuite/btcd/chaincfg/chainhash v1.0.1 // indirect
github.com/deckarep/golang-set v1.8.0 // indirect
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1 // indirect
github.com/go-logfmt/logfmt v0.5.1 // indirect
github.com/go-ole/go-ole v1.2.6 // indirect
github.com/go-stack/stack v1.8.1 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/gorilla/websocket v1.5.0 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-multierror v1.1.1 // indirect
github.com/mattn/go-runewidth v0.0.13 // indirect
github.com/peterh/liner v1.2.2 // indirect
github.com/rivo/uniseg v0.2.0 // indirect
github.com/riywo/loginshell v0.0.0-20200815045211-7d26008be1ab // indirect
github.com/rjeczalik/notify v0.9.2 // indirect
github.com/shirou/gopsutil v3.21.11+incompatible // indirect
github.com/tklauser/go-sysconf v0.3.9 // indirect
github.com/tklauser/numcpus v0.4.0 // indirect
github.com/yusufpapurcu/wmi v1.2.2 // indirect
golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88 // indirect
golang.org/x/sys v0.0.0-20221013171732-95e765b1cc43 // indirect
gopkg.in/natefinch/npipe.v2 v2.0.0-20160621034901-c1b8fa8bdcce // indirect
)