76 lines
3.1 KiB
Modula-2
76 lines
3.1 KiB
Modula-2
module github.com/decred/vspd
|
|
|
|
go 1.24.0
|
|
|
|
require (
|
|
decred.org/dcrwallet/v5 v5.0.0
|
|
github.com/decred/dcrd/blockchain/stake/v5 v5.0.2
|
|
github.com/decred/dcrd/blockchain/standalone/v2 v2.2.2
|
|
github.com/decred/dcrd/chaincfg/chainhash v1.0.5
|
|
github.com/decred/dcrd/chaincfg/v3 v3.3.0
|
|
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.4.0
|
|
github.com/decred/dcrd/dcrutil/v4 v4.0.3
|
|
github.com/decred/dcrd/gcs/v4 v4.1.1
|
|
github.com/decred/dcrd/hdkeychain/v3 v3.1.3
|
|
github.com/decred/dcrd/rpc/jsonrpc/types/v4 v4.4.0
|
|
github.com/decred/dcrd/txscript/v4 v4.1.2
|
|
github.com/decred/dcrd/wire v1.7.1
|
|
github.com/decred/slog v1.2.0
|
|
github.com/decred/vspd/client/v4 v4.0.1
|
|
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.4.0
|
|
github.com/jessevdk/go-flags v1.6.1
|
|
github.com/jrick/bitset v1.0.0
|
|
github.com/jrick/logrotate v1.1.2
|
|
github.com/jrick/wsrpc/v2 v2.3.8
|
|
go.etcd.io/bbolt v1.4.0
|
|
)
|
|
|
|
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.6 // indirect
|
|
github.com/decred/dcrd/crypto/blake256 v1.1.0 // indirect
|
|
github.com/decred/dcrd/crypto/rand v1.0.1 // indirect
|
|
github.com/decred/dcrd/crypto/ripemd160 v1.0.2 // indirect
|
|
github.com/decred/dcrd/database/v3 v3.0.3 // indirect
|
|
github.com/decred/dcrd/dcrec v1.0.1 // indirect
|
|
github.com/decred/dcrd/dcrec/edwards/v2 v2.0.4 // indirect
|
|
github.com/decred/dcrd/dcrjson/v4 v4.2.0 // 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.1 // indirect
|
|
github.com/json-iterator/go v1.1.12 // indirect
|
|
github.com/klauspost/cpuid/v2 v2.2.8 // 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.45.0 // indirect
|
|
golang.org/x/net v0.47.0 // indirect
|
|
golang.org/x/sys v0.38.0 // indirect
|
|
golang.org/x/text v0.31.0 // indirect
|
|
golang.org/x/time v0.3.0
|
|
google.golang.org/protobuf v1.36.10 // indirect
|
|
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
lukechampine.com/blake3 v1.3.0 // indirect
|
|
)
|