-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathgo.mod
More file actions
23 lines (20 loc) · 796 Bytes
/
go.mod
File metadata and controls
23 lines (20 loc) · 796 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
module github.com/vulpemventures/nigiri
go 1.24.0
require (
github.com/btcsuite/btcd/btcutil v1.1.5
github.com/logrusorgru/aurora v2.0.3+incompatible
github.com/urfave/cli/v2 v2.3.0
gopkg.in/yaml.v2 v2.4.0
)
require (
github.com/btcsuite/btcd v0.24.2 // indirect
github.com/btcsuite/btcd/btcec/v2 v2.3.2 // indirect
github.com/btcsuite/btcd/chaincfg/chainhash v1.1.0 // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d // indirect
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.1.0 // indirect
github.com/russross/blackfriday/v2 v2.0.1 // indirect
github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect
golang.org/x/crypto v0.45.0 // indirect
golang.org/x/sys v0.38.0 // indirect
gopkg.in/check.v1 v1.0.0-20141024133853-64131543e789 // indirect
)