vspd/client/go.mod
jholdstock 2db761e072 client: Remove autoclient & bump to v3
Adding the autoclient to vspd created a circular dependency between vspd
and dcrwallet which is cumbersome and not worth the maintence burden.

At this point there are no known consumers of the vspd version of
autoclient, so removing it is not expected to cause problems for
anybody.

The autoclient will continue to live in the dcrwallet repo.
2023-08-18 14:32:37 +01:00

26 lines
882 B
Modula-2

module github.com/decred/vspd/client/v3
go 1.19
require (
github.com/decred/dcrd/txscript/v4 v4.1.0
github.com/decred/slog v1.2.0
github.com/decred/vspd/types/v2 v2.0.0
)
require (
github.com/agl/ed25519 v0.0.0-20170116200512-5312a6153412 // indirect
github.com/dchest/siphash v1.2.3 // indirect
github.com/decred/base58 v1.0.5 // indirect
github.com/decred/dcrd/chaincfg/chainhash v1.0.4 // indirect
github.com/decred/dcrd/crypto/blake256 v1.0.1 // indirect
github.com/decred/dcrd/crypto/ripemd160 v1.0.2 // indirect
github.com/decred/dcrd/dcrec v1.0.1 // indirect
github.com/decred/dcrd/dcrec/edwards/v2 v2.0.3 // indirect
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0 // indirect
github.com/decred/dcrd/wire v1.6.0 // indirect
github.com/klauspost/cpuid/v2 v2.2.5 // indirect
golang.org/x/sys v0.9.0 // indirect
lukechampine.com/blake3 v1.2.1 // indirect
)