Rename multiaddr and mulithash to parity-* (#737)

* Rename multiaddr and mulithash to parity-*

* Fix doctests
This commit is contained in:
Pierre Krieger
2018-12-07 15:40:02 +01:00
committed by GitHub
parent 8d8fc75a4e
commit d94a768bd9
16 changed files with 36 additions and 42 deletions

View File

@ -14,7 +14,7 @@ fnv = "1"
futures = "0.1"
libp2p-core = { path = "../../core" }
log = "0.4.1"
multiaddr = { path = "../../misc/multiaddr" }
multiaddr = { package = "parity-multiaddr", path = "../../misc/multiaddr" }
parking_lot = "0.7"
protobuf = "2.0.2"
smallvec = "0.6"

View File

@ -19,8 +19,8 @@ libp2p-identify = { path = "../../protocols/identify" }
libp2p-ping = { path = "../../protocols/ping" }
libp2p-core = { path = "../../core" }
log = "0.4"
multiaddr = { path = "../../misc/multiaddr" }
multihash = { path = "../../misc/multihash" }
multiaddr = { package = "parity-multiaddr", path = "../../misc/multiaddr" }
multihash = { package = "parity-multihash", path = "../../misc/multihash" }
parking_lot = "0.7"
protobuf = "2.0.2"
rand = "0.6.0"

View File

@ -13,7 +13,7 @@ arrayvec = "0.4"
bytes = "0.4"
libp2p-core = { path = "../../core" }
log = "0.4.1"
multiaddr = { path = "../../misc/multiaddr" }
multiaddr = { package = "parity-multiaddr", path = "../../misc/multiaddr" }
multistream-select = { path = "../../misc/multistream-select" }
futures = "0.1"
parking_lot = "0.7"