dcrd/database/go.mod
Dave Collins 67c4685987
database: Refine go build module support.
Now that the goleveldb, chainhash, dcrutil, wire, and slog modules have
been defined, create a database module that only depends on them instead
of the entire dcrd module.
2018-07-23 12:20:03 -05:00

10 lines
246 B
Modula-2

module github.com/decred/dcrd/database
require (
github.com/btcsuite/goleveldb v1.0.0
github.com/decred/dcrd/chaincfg/chainhash v1.0.1
github.com/decred/dcrd/dcrutil v1.0.0
github.com/decred/dcrd/wire v1.0.1
github.com/decred/slog v1.0.0
)