This modifies all of the modules, with the exception of the root module, to remove all replacement directives from their go.mod files and update the requirements and module sums accordingly. While it is nice to be able to build and test directly from each module directory and have it pull in the latest untagged changes when developing, having all of the overrides in each module makes it infeasible to use the module tools to help maintain the modules and thus makes it quite difficult to ensure they are all independently accurate for external consumers. By maintaining all of the overrides in the root module and invoking all builds and tests from it, the overrides will apply to ensure the latest code is being built and tested. This also modifies the tests script used with in CI to run all of the tests from the root module accordingly.
24 lines
1.0 KiB
Modula-2
24 lines
1.0 KiB
Modula-2
module github.com/decred/dcrd/database
|
|
|
|
require (
|
|
github.com/btcsuite/goleveldb v1.0.0
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/decred/dcrd/chaincfg v1.3.0
|
|
github.com/decred/dcrd/chaincfg/chainhash v1.0.1
|
|
github.com/decred/dcrd/dcrec v0.0.0-20190130161649-59ed4247a1d5 // indirect
|
|
github.com/decred/dcrd/dcrec/edwards v0.0.0-20190130161649-59ed4247a1d5 // indirect
|
|
github.com/decred/dcrd/dcrutil v1.2.0
|
|
github.com/decred/dcrd/wire v1.2.0
|
|
github.com/decred/slog v1.0.0
|
|
github.com/jessevdk/go-flags v1.4.0
|
|
github.com/kr/pretty v0.1.0 // indirect
|
|
github.com/onsi/ginkgo v1.7.0 // indirect
|
|
github.com/onsi/gomega v1.4.3 // indirect
|
|
golang.org/x/crypto v0.0.0-20190131182504-b8fe1690c613 // indirect
|
|
golang.org/x/net v0.0.0-20190125091013-d26f9f9a57f3 // indirect
|
|
golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4 // indirect
|
|
golang.org/x/sys v0.0.0-20190203050204-7ae0202eb74c // indirect
|
|
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
|
|
gopkg.in/yaml.v2 v2.2.2 // indirect
|
|
)
|