-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
So we can use sync.OnceValues
- Loading branch information
Showing
3 changed files
with
16 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,27 @@ | ||
module github.com/BitBoxSwiss/bitbox02-api-go | ||
|
||
go 1.13 | ||
go 1.21 | ||
|
||
require ( | ||
github.com/benma/miniscript-go v0.0.0-20240226152043-f7c34099edf9 | ||
github.com/btcsuite/btcd v0.24.0 | ||
github.com/btcsuite/btcd/btcec/v2 v2.3.2 | ||
github.com/btcsuite/btcd/btcutil v1.1.5 | ||
github.com/btcsuite/btcd/chaincfg/chainhash v1.1.0 | ||
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0 // indirect | ||
github.com/flynn/noise v1.1.0 | ||
github.com/karalabe/usb v0.0.0-20191104083709-911d15fe12a9 | ||
github.com/pkg/errors v0.8.1 | ||
github.com/stretchr/testify v1.8.4 | ||
golang.org/x/crypto v0.19.0 // indirect | ||
golang.org/x/crypto v0.19.0 | ||
google.golang.org/protobuf v1.32.0 | ||
) | ||
|
||
require ( | ||
github.com/btcsuite/btclog v0.0.0-20170628155309-84c8d2346e9f // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/decred/dcrd/crypto/blake256 v1.0.1 // indirect | ||
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
golang.org/x/sys v0.17.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters