Run cargo fix --edition to move to Edition 2018.

This commit is contained in:
Emmanuel Gil Peyrot 2018-12-18 15:27:30 +01:00
commit 6b2dd8fe5e
46 changed files with 189 additions and 188 deletions

View file

@ -10,9 +10,9 @@ use std::net::IpAddr;
use minidom::Element;
use jid::Jid;
use error::Error;
use crate::error::Error;
use ns;
use crate::ns;
generate_attribute!(
/// The type of the connection being proposed by this candidate.
@ -275,7 +275,7 @@ impl From<Transport> for Element {
mod tests {
use super::*;
use std::str::FromStr;
use compare_elements::NamespaceAwareCompare;
use crate::compare_elements::NamespaceAwareCompare;
#[cfg(target_pointer_width = "32")]
#[test]