dcrd/addrmgr/go.mod
Sef Boukenken 32a14f8d7f addrmgr: Start v2 module dev cycle.
Upcoming changes constitute breaking public API changes to the addrmgr
module, therefore, this follows the process for introducing major API
breaks which consists of:

- Bump the major version in the go.mod of the affected module if not
  already done since the last release tag
- Add a replacement to the go.mod in the main module if not already done
  since the last release tag
- Update all imports in the repo to use the new major version as
  necessary
- Make necessary modifications to allow all other modules to use the new
  version in the same commit
- Repeat the process for any other modules that require a new major as a
  result of consuming the new major(s)
2021-02-12 12:15:54 -06:00

10 lines
180 B
Modula-2

module github.com/decred/dcrd/addrmgr/v2
go 1.11
require (
github.com/decred/dcrd/chaincfg/chainhash v1.0.2
github.com/decred/dcrd/wire v1.4.0
github.com/decred/slog v1.1.0
)