52 lines
1.8 KiB
Modula-2
52 lines
1.8 KiB
Modula-2
module pool
|
|
|
|
go 1.23.0
|
|
|
|
toolchain go1.23.1
|
|
|
|
require (
|
|
github.com/btcsuite/btcd v0.24.2
|
|
github.com/btcsuite/btcd/chaincfg/chainhash v1.1.0
|
|
github.com/btcsuite/btcutil v1.0.2
|
|
github.com/decred/dcrd/chaincfg/chainhash v1.0.4
|
|
github.com/go-sql-driver/mysql v1.8.1
|
|
github.com/mattn/go-sqlite3 v1.14.22
|
|
github.com/redis/go-redis/v9 v9.5.4
|
|
github.com/rs/zerolog v1.33.0
|
|
github.com/zeromq/goczmq v4.1.0+incompatible
|
|
go.uber.org/zap v1.27.0
|
|
gopkg.in/natefinch/lumberjack.v2 v2.2.1
|
|
)
|
|
|
|
require (
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/golang/protobuf v1.5.4 // indirect
|
|
github.com/jrick/logrotate v1.0.0 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
golang.org/x/net v0.30.0 // indirect
|
|
golang.org/x/text v0.23.0 // indirect
|
|
google.golang.org/genproto v0.0.0-20210604141403-392c879c8b08 // indirect
|
|
google.golang.org/grpc v1.69.2 // indirect
|
|
google.golang.org/protobuf v1.35.1 // indirect
|
|
)
|
|
|
|
require (
|
|
filippo.io/edwards25519 v1.1.0 // indirect
|
|
github.com/btcsuite/btcd/btcec/v2 v2.1.3 // indirect
|
|
github.com/btcsuite/btcd/btcutil v1.1.5 // indirect
|
|
github.com/btcsuite/btclog v0.0.0-20170628155309-84c8d2346e9f // indirect
|
|
github.com/btcsuite/go-socks v0.0.0-20170105172521-4720035b7bfd // indirect
|
|
github.com/btcsuite/websocket v0.0.0-20150119174127-31079b680792 // indirect
|
|
github.com/cespare/xxhash/v2 v2.3.0 // indirect
|
|
github.com/decred/dcrd/crypto/blake256 v1.0.1 // indirect
|
|
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1 // indirect
|
|
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
|
|
github.com/gorilla/websocket v1.5.3
|
|
github.com/kaspanet/kaspad v0.12.20
|
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
|
github.com/mattn/go-isatty v0.0.19 // indirect
|
|
go.uber.org/multierr v1.10.0 // indirect
|
|
golang.org/x/crypto v0.36.0 // indirect
|
|
golang.org/x/sys v0.31.0 // indirect
|
|
)
|