forked from kaspanet/kaspad
-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* regenerated karlsenwalletd.pb.go and karlsenwalletd_grpc.pb.go using protoc-gen-go-grpc `v1.3.0` and protoc `v4.25.3` * updated go import path to `v2` * update Go modules and run go mod tidy
- Loading branch information
Showing
5 changed files
with
93 additions
and
79 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,36 +1,37 @@ | ||
module github.com/karlsen-network/karlsend/v2 | ||
|
||
go 1.18 | ||
go 1.21.0 | ||
|
||
toolchain go1.23.1 | ||
|
||
require ( | ||
github.com/btcsuite/btcutil v1.0.2 | ||
github.com/btcsuite/go-socks v0.0.0-20170105172521-4720035b7bfd | ||
github.com/btcsuite/winsvc v1.0.0 | ||
github.com/davecgh/go-spew v1.1.1 | ||
github.com/edsrzf/mmap-go v1.1.0 | ||
github.com/gofrs/flock v0.8.1 | ||
github.com/golang/protobuf v1.5.3 | ||
github.com/jessevdk/go-flags v1.5.0 | ||
github.com/jrick/logrotate v1.0.0 | ||
github.com/gofrs/flock v0.12.1 | ||
github.com/golang/protobuf v1.5.4 | ||
github.com/jessevdk/go-flags v1.6.1 | ||
github.com/jrick/logrotate v1.1.2 | ||
github.com/kaspanet/go-muhash v0.0.4 | ||
github.com/kaspanet/go-secp256k1 v0.0.7 | ||
github.com/pkg/errors v0.9.1 | ||
github.com/syndtr/goleveldb v1.0.1-0.20190923125748-758128399b1d | ||
github.com/tyler-smith/go-bip39 v1.1.0 | ||
golang.org/x/crypto v0.26.0 | ||
golang.org/x/exp v0.0.0-20240213143201-ec583247a57a | ||
golang.org/x/term v0.23.0 | ||
google.golang.org/grpc v1.61.1 | ||
google.golang.org/protobuf v1.34.2 | ||
lukechampine.com/blake3 v1.2.1 | ||
golang.org/x/crypto v0.28.0 | ||
golang.org/x/term v0.25.0 | ||
google.golang.org/grpc v1.67.1 | ||
google.golang.org/protobuf v1.35.1 | ||
lukechampine.com/blake3 v1.3.0 | ||
) | ||
|
||
require ( | ||
github.com/golang/snappy v0.0.4 // indirect | ||
github.com/klauspost/cpuid/v2 v2.2.6 // indirect | ||
golang.org/x/net v0.28.0 // indirect | ||
golang.org/x/sys v0.23.0 // indirect | ||
golang.org/x/text v0.17.0 // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20240221002015-b0ce06bbee7c // indirect | ||
github.com/klauspost/cpuid/v2 v2.2.8 // indirect | ||
golang.org/x/net v0.30.0 // indirect | ||
golang.org/x/sys v0.26.0 // indirect | ||
golang.org/x/text v0.19.0 // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20241007155032-5fefd90f89a9 // indirect | ||
gopkg.in/yaml.v2 v2.3.0 // indirect | ||
) |
Oops, something went wrong.