dcrd/database/go.mod
Dave Collins 220d434b6e
release: Bump module versions and deps.
This bumps the various module versions as follows:

- github.com/decred/dcrd/dcrec/secp256k1@v1.0.1
- github.com/decred/dcrd/dcrjson@v1.1.0
- github.com/decred/dcrd/database@v1.0.3
- github.com/decred/dcrd/blockchain/stake@v1.1.0
- github.com/decred/dcrd/mining@v1.1.0
- github.com/decred/dcrd/certgen@v1.0.2
- github.com/decred/dcrd/connmgr@v1.0.2
- github.com/decred/dcrd/mempool@v1.1.0

In addition, it serves as a base for tagging releases of the following
module versions that have previous been bumped since the last release,
but not yet tagged:

- github.com/decred/dcrd/wire@v1.2.0
- github.com/decred/dcrd/chaincfg@v1.2.0
- github.com/decred/dcrd/dcrutil@v1.2.0
- github.com/decred/dcrd/txscript@v1.0.2
- github.com/decred/dcrd/blockchain@v1.1.0
- github.com/decred/dcrd/hdkeychain@v1.1.1
- github.com/decred/dcrd/peer@v1.1.0
- github.com/decred/dcrd/rpcclient@v1.1.0

Finally, it updates all of the dependencies for every module accordingly,
adds a few missing overrides for transitive dependencies, and tidies up
some of the go module sum files.
2018-12-10 11:18:00 -06:00

32 lines
1.2 KiB
Modula-2

module github.com/decred/dcrd/database
require (
github.com/btcsuite/goleveldb v1.0.0
github.com/decred/dcrd/chaincfg v1.2.0
github.com/decred/dcrd/chaincfg/chainhash v1.0.1
github.com/decred/dcrd/dcrutil v1.1.1
github.com/decred/dcrd/wire v1.2.0
github.com/decred/slog v1.0.0
github.com/fsnotify/fsnotify v1.4.7 // indirect
github.com/golang/protobuf v1.2.0 // indirect
github.com/hpcloud/tail v1.0.0 // indirect
github.com/jessevdk/go-flags v1.4.0
github.com/kr/pretty v0.1.0 // indirect
golang.org/x/net v0.0.0-20180808004115-f9ce57c11b24 // indirect
golang.org/x/sync v0.0.0-20181108010431-42b317875d0f // indirect
golang.org/x/sys v0.0.0-20181206074257-70b957f3b65e // indirect
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
gopkg.in/fsnotify.v1 v1.4.7 // indirect
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
)
replace (
github.com/decred/dcrd/chaincfg => ../chaincfg
github.com/decred/dcrd/chaincfg/chainhash => ../chaincfg/chainhash
github.com/decred/dcrd/dcrec => ../dcrec
github.com/decred/dcrd/dcrec/edwards => ../dcrec/edwards
github.com/decred/dcrd/dcrec/secp256k1 => ../dcrec/secp256k1
github.com/decred/dcrd/dcrutil => ../dcrutil
github.com/decred/dcrd/wire => ../wire
)