forked from wakiyamap/monad
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathgo.mod
69 lines (61 loc) · 1.7 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
module github.com/monasuite/monad
require (
github.com/btcsuite/btclog v0.0.0-20170628155309-84c8d2346e9f
github.com/btcsuite/go-socks v0.0.0-20170105172521-4720035b7bfd
github.com/btcsuite/websocket v0.0.0-20150119174127-31079b680792
github.com/btcsuite/winsvc v1.0.0
github.com/davecgh/go-spew v1.1.1
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1
github.com/decred/dcrd/lru v1.0.0
github.com/jessevdk/go-flags v1.4.0
github.com/jrick/logrotate v1.0.0
github.com/monasuite/monad/btcec/v2 v2.2.0
github.com/monasuite/monad/chaincfg/chainhash v1.0.2
github.com/monasuite/monad/monautil v1.1.2-0.20220529200742-de38c6468c62
github.com/shopspring/decimal v1.3.1
github.com/stretchr/testify v1.7.0
github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7
github.com/wakiyamap/lyra2rev2 v0.1.2
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519
golang.org/x/sys v0.0.0-20211019181941-9d821ace8654
)
require (
github.com/aead/siphash v1.0.1 // indirect
github.com/aead/skein v0.0.0-20160722084837-9365ae6e95d2 // indirect
github.com/dchest/blake256 v1.1.0 // indirect
github.com/decred/dcrd/crypto/blake256 v1.0.0 // indirect
github.com/golang/snappy v0.0.4 // indirect
github.com/kkdai/bstream v1.0.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
gopkg.in/yaml.v3 v3.0.0 // indirect
)
replace github.com/monasuite/monad/monautil => ./monautil
// The retract statements below fixes an accidental push of the tags of a btcd
// fork.
retract (
v0.18.1
v0.18.0
v0.17.1
v0.17.0
v0.16.5
v0.16.4
v0.16.3
v0.16.2
v0.16.1
v0.16.0
v0.15.2
v0.15.1
v0.15.0
v0.14.7
v0.14.6
v0.14.6
v0.14.5
v0.14.4
v0.14.3
v0.14.2
v0.14.1
v0.14.0
v0.13.0-beta2
v0.13.0-beta
)
go 1.17