Move final crates to 2018 edition (#886)

This commit is contained in:
Dan Robertson
2019-01-29 10:02:29 +00:00
committed by Pierre Krieger
parent 073df709dd
commit fe4fc8c363
9 changed files with 14 additions and 11 deletions

View File

@ -30,8 +30,8 @@ use std::{
result::Result as StdResult,
str::FromStr
};
pub use errors::{Result, Error};
pub use protocol::Protocol;
pub use self::errors::{Result, Error};
pub use self::protocol::Protocol;
/// Representation of a Multiaddr.
#[derive(PartialEq, Eq, Clone, Hash)]