Unverified Commit 71e32988 authored by Marten Seemann's avatar Marten Seemann Committed by GitHub

Merge pull request #162 from multiformats/remove-go-maddr-filter-dependency

remove forced dependency on deprecated go-maddr-filter
parents 256c8f8f 940e2312
This package allows us to depend on other modules, to _force_ these other
modules to upgrade to some minimum version. This allows us to express "co
dependency" requirements in cases where this module doesn't strictly speaking
_depend_ on another module, but conflicts with some version of that module.
We are using this here to depend on deprecated modules that have been
merged into this package.
In practice, this means:
1. Packages imported here _will not_ end up in the final binary as nothing
imports this package.
2. Modules containing these packages will, unfortunately, be downloaded as
"dependencies" of this package.
3. Anyone using this module will be forced to upgrade all co-dependencies.
package codependencies
import (
// Packages imported into this package.
// go-maddr-filter < 0.1.0 conflicts with this package.
_ "github.com/libp2p/go-maddr-filter"
)
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment