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.
10 lines
246 B
Modula-2
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
|
|
)
|