Upcoming changes constitute breaking public API changes to both the client and types modules, therefore this bumps the version numbers of both modules and adds local replacements to go.mod files such that the new versions can be used before they are publicly tagged.
81 lines
3.2 KiB
Modula-2
81 lines
3.2 KiB
Modula-2
module github.com/decred/vspd
|
|
|
|
go 1.20
|
|
|
|
require (
|
|
decred.org/dcrwallet/v3 v3.1.0
|
|
github.com/decred/dcrd/blockchain/stake/v5 v5.0.0
|
|
github.com/decred/dcrd/blockchain/standalone/v2 v2.2.0
|
|
github.com/decred/dcrd/chaincfg/chainhash v1.0.4
|
|
github.com/decred/dcrd/chaincfg/v3 v3.2.0
|
|
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0
|
|
github.com/decred/dcrd/dcrutil/v4 v4.0.1
|
|
github.com/decred/dcrd/gcs/v4 v4.0.0
|
|
github.com/decred/dcrd/hdkeychain/v3 v3.1.1
|
|
github.com/decred/dcrd/rpc/jsonrpc/types/v4 v4.1.0
|
|
github.com/decred/dcrd/txscript/v4 v4.1.0
|
|
github.com/decred/dcrd/wire v1.6.0
|
|
github.com/decred/slog v1.2.0
|
|
github.com/decred/vspd/client/v4 v4.0.0
|
|
github.com/decred/vspd/types/v3 v3.0.0
|
|
github.com/dustin/go-humanize v1.0.1
|
|
github.com/gin-gonic/gin v1.10.0
|
|
github.com/gorilla/sessions v1.2.2
|
|
github.com/jessevdk/go-flags v1.5.0
|
|
github.com/jrick/bitset v1.0.0
|
|
github.com/jrick/logrotate v1.0.0
|
|
github.com/jrick/wsrpc/v2 v2.3.5
|
|
go.etcd.io/bbolt v1.3.9
|
|
)
|
|
|
|
replace (
|
|
github.com/decred/vspd/client/v4 => ./client
|
|
github.com/decred/vspd/types/v3 => ./types
|
|
)
|
|
|
|
require (
|
|
github.com/agl/ed25519 v0.0.0-20170116200512-5312a6153412 // indirect
|
|
github.com/bytedance/sonic v1.11.6 // indirect
|
|
github.com/bytedance/sonic/loader v0.1.1 // indirect
|
|
github.com/cloudwego/base64x v0.1.4 // indirect
|
|
github.com/cloudwego/iasm v0.2.0 // indirect
|
|
github.com/dchest/siphash v1.2.3 // indirect
|
|
github.com/decred/base58 v1.0.5 // 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/database/v3 v3.0.1 // 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/dcrjson/v4 v4.0.1 // indirect
|
|
github.com/gabriel-vasile/mimetype v1.4.3 // indirect
|
|
github.com/gin-contrib/sse v0.1.0 // indirect
|
|
github.com/go-playground/locales v0.14.1 // indirect
|
|
github.com/go-playground/universal-translator v0.18.1 // indirect
|
|
github.com/go-playground/validator/v10 v10.20.0 // indirect
|
|
github.com/goccy/go-json v0.10.2 // indirect
|
|
github.com/gorilla/securecookie v1.1.2 // indirect
|
|
github.com/gorilla/websocket v1.5.0 // indirect
|
|
github.com/json-iterator/go v1.1.12 // indirect
|
|
github.com/klauspost/cpuid/v2 v2.2.7 // indirect
|
|
github.com/kr/text v0.2.0 // indirect
|
|
github.com/leodido/go-urn v1.4.0 // indirect
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
|
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
|
|
github.com/modern-go/reflect2 v1.0.2 // indirect
|
|
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
|
|
github.com/pelletier/go-toml/v2 v2.2.2 // indirect
|
|
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
|
|
github.com/ugorji/go/codec v1.2.12 // indirect
|
|
golang.org/x/arch v0.8.0 // indirect
|
|
golang.org/x/crypto v0.23.0 // indirect
|
|
golang.org/x/net v0.25.0 // indirect
|
|
golang.org/x/sys v0.20.0 // indirect
|
|
golang.org/x/text v0.15.0 // indirect
|
|
golang.org/x/time v0.3.0
|
|
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
|
|
google.golang.org/protobuf v1.34.1 // indirect
|
|
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
lukechampine.com/blake3 v1.2.1 // indirect
|
|
)
|