Prepare to check incoming presence
[?]
Jan 23, 2019, 12:13 PM
L3D22A5JKX3SBZQHULAKZDCEXAOYVPSU2CHPRE5G6MVVLTFVSZVACDependencies
- [2]
SYH7UQP6Make xmpp command enum to allow different commands Save subscription ask status. Don't ask if already requested subscription. - [3]
BWDUANCVSecond part of processing result is only about stop_future - [4]
5IKA4GO7Rename xmpp client field from "inner" to "client" - [5]
HKSQO7JZEnable hyper http server and configuration - [6]
WBU7UOQWRead chatroom from config - [7]
QYY3KRGLUse failure instead Box<dyn Error> - [8]
ZI4GJ72VAdd message to xmpp command - [9]
5OBTKGDLUpdate deps - [10]
IK3YDPTYUpdate deps - [11]
V5HDBSZMUse jid for receiver address - [12]
NDDQQP2PUpdate deps - [13]
EOHEZXX3Move request processing to structure - [14]
QTCUURXNAdd additional requirement for command stream - [15]
RGOSS73UConvert self-presence to xmpp_parser's type - [16]
MAC6WCSXFix pipelines - [17]
OGMBXBKPMove online to XmppConnection - [18]
FWJDW3G5Allow process xmpp incoming stanzas with futures - [19]
XGP44R5HRework stopping xmpp connection - [20]
ACXUIS63Update dependecies - [21]
FVVPKFTLInitial commit - [22]
VS6AHRWIMove XMPP to separate dir - [23]
AA2ZWGRLEnter to MUC - [24]
HU3NZX5ZProcess self-presence via new processing code - [25]
ALP2YJIURename XmppState to XmppProcessState - [26]
X6L47BHQUse different structure for established xmpp connection - [27]
5Y6YJ6UHAdd shutdown function to make actions before offline - [28]
6E5IC33ZTry to test 2018 edition - [29]
77USPY5ISending messages works! - [30]
AYQZ2UIAUpdate deps - [31]
UMTLHH77Process commands in the separate function - [32]
QWE26TMVupdate deps - [33]
OANBCLN5Move xmpp client into XmppState - [34]
TDOR5XQUAccept destination - [35]
OB3HA2MDUse Client::new_with_jid to parse jid only once - [36]
FV6BJ5K6Send self-presence and store account info in Rc so it willbe used in some future in parallel - [37]
EBETRYK7Add counter for id. Check for jid in roster - [38]
XOAM22TTSimplify xmpp incoming stanzas processing without futures - [39]
5A5UVGNMMove receiver closing logic out of xmpp processing
Change contents
- edit in src/xmpp/stanzas.rs at line 3
use xmpp_parsers::message::{Body, Message, MessageType}; - replacement in src/xmpp/stanzas.rs at line 24
pub fn make_add_roster(id: &str, jid: xmpp_parsers::Jid) -> Element {pub fn make_add_roster(id: &str, jid: jid::Jid) -> Element { - edit in src/xmpp/stanzas.rs at line 30
ask: xmpp_parsers::roster::Ask::None, - edit in src/xmpp/stanzas.rs at line 37
pub fn make_ask_subscribe(jid: xmpp_parsers::Jid) -> Element {let mut presence = Presence::new(PresenceType::Subscribe);presence.to = Some(jid);presence.into()}pub fn make_chat_message(jid: xmpp_parsers::Jid, text: String) -> Element {let mut message = Message::new(Some(jid));message.bodies.insert(String::new(), Body(text));message.type_ = MessageType::Chat;message.into()} - replacement in src/xmpp/mod.rs at line 15
roster: HashMap<xmpp_parsers::Jid,(xmpp_parsers::roster::Subscription,xmpp_parsers::roster::Ask,Vec<String>,),>,roster: HashMap<jid::Jid, ()>, - replacement in src/xmpp/mod.rs at line 20
pending_add_roster_ids: HashMap<String, (xmpp_parsers::Jid, String)>,pending_add_roster_ids: HashMap<String, (jid::Jid, String)>, - replacement in src/xmpp/mod.rs at line 86
as Box<dyn Future<Item = _, Error = _>>as Box<Future<Item = _, Error = _>> - replacement in src/xmpp/mod.rs at line 97
as Box<dyn Future<Item = _, Error = _>>,as Box<Future<Item = _, Error = _>>, - replacement in src/xmpp/mod.rs at line 149
fn xmpp_processing(mut self,event: &Event,) -> impl Future<Item = Self, Error = std::rc::Rc<config::Account>> {/// Returns false on error to disconnectfn xmpp_processing(&mut self, event: &Event) -> bool { - replacement in src/xmpp/mod.rs at line 157
if let Some(iq) = stanza.try_into().ok() as Option<xmpp_parsers::iq::Iq> {if let Some(iq) = stanza.clone().try_into().ok() as Option<xmpp_parsers::iq::Iq> { - replacement in src/xmpp/mod.rs at line 159
if let Some((_, (jid, message))) =if let Some((_, (jid, _message))) = - replacement in src/xmpp/mod.rs at line 163[3.5217]→[3.3042:3142](∅→∅),[3.3142]→[2.2463:2598](∅→∅),[2.2598]→[3.3201:3242](∅→∅),[3.3201]→[3.3201:3242](∅→∅),[3.3242]→[2.2599:2673](∅→∅),[2.2673]→[3.3242:3354](∅→∅),[3.3242]→[3.3242:3354](∅→∅),[3.3354]→[2.2674:2981](∅→∅),[2.2981]→[3.3453:3773](∅→∅),[3.3453]→[3.3453:3773](∅→∅)
if let Some(ref mut rdata) = self.state.data.roster.get_mut(&jid) {info!("Jid {} updated to roster", jid);rdata.2.push(message);} else {info!("Jid {} added in roster", jid);self.state.data.roster.insert(jid,(xmpp_parsers::roster::Subscription::None,xmpp_parsers::roster::Ask::None,vec![message],),);}} else {warn!("Wrong payload when adding {} to roster: {:?}",jid, iq.payload);info!("Jid {} added to roster", jid); - replacement in src/xmpp/mod.rs at line 171[3.6271]→[3.3774:4095](∅→∅),[3.4095]→[2.2982:3096](∅→∅),[2.3096]→[3.4156:4788](∅→∅),[3.4156]→[3.4156:4788](∅→∅),[3.4788]→[2.3097:3179](∅→∅),[2.3179]→[3.4870:5069](∅→∅),[3.4870]→[3.4870:5069](∅→∅),[3.5069]→[2.3180:3275](∅→∅),[2.3275]→[3.5118:5586](∅→∅),[3.5118]→[3.5118:5586](∅→∅)
for i in roster.items {if let Some(ref mut rdata) = self.state.data.roster.get_mut(&i.jid){info!("Update {} in roster", i.jid);rdata.0 = i.subscription;rdata.1 = i.ask;if !rdata.2.is_empty() {let sub_to = match rdata.0 {xmpp_parsers::roster::Subscription::To => true,xmpp_parsers::roster::Subscription::Both => true,_ => false,};if sub_to {info!("Subscribed to {}", i.jid);let jid = i.jid.clone();self.state.data.send_queue.extend(rdata.2.drain(..).map(|message| {stanzas::make_chat_message(jid.clone(), message)}),)} else if rdata.1 == xmpp_parsers::roster::Ask::None {info!("Not subscribed to {}", i.jid);self.state.data.send_queue.push_back(stanzas::make_ask_subscribe(i.jid));}}} else {self.state.data.roster.extend(roster.items.into_iter().map(|i| { - replacement in src/xmpp/mod.rs at line 176[3.8153]→[3.5587:5728](∅→∅),[3.5728]→[2.3276:3365](∅→∅),[2.3365]→[3.5810:5874](∅→∅),[3.5810]→[3.5810:5874](∅→∅)
self.state.data.roster.insert(i.jid, (i.subscription, i.ask, vec![]));}}(i.jid, ())})); - edit in src/xmpp/mod.rs at line 180
} else if let Some(_presence) =stanza.try_into().ok() as Option<xmpp_parsers::presence::Presence>{// to do something with presence - replacement in src/xmpp/mod.rs at line 185
future::ok(self)true - replacement in src/xmpp/mod.rs at line 187
Event::Online => future::ok(self),Event::Online => true, - replacement in src/xmpp/mod.rs at line 190
future::err(self.account)false - replacement in src/xmpp/mod.rs at line 279
let xmpp = XmppConnection {let mut xmpp = XmppConnection { - replacement in src/xmpp/mod.rs at line 283
Box::new(xmpp.xmpp_processing(&event).then(|r| match r {Ok(mut xmpp) => {match stop_condition(&mut xmpp, event) {Ok(true) => future::ok(future::Loop::Break((xmpp,Ok(Either::A(b)),))),Ok(false) => {future::ok(future::Loop::Continue((xmpp,b,stop_condition,)))}Err(_e) => future::err((xmpp.account,Ok(Either::A(b)),)),if xmpp.xmpp_processing(&event) {match stop_condition(&mut xmpp, event) {Ok(true) => future::ok(future::Loop::Break((xmpp,Ok(Either::A(b)),))),Ok(false) => future::ok(future::Loop::Continue((xmpp,b,stop_condition,))),Err(_e) => {future::err((xmpp.account, Ok(Either::A(b)))) - replacement in src/xmpp/mod.rs at line 299
Err(account) => {future::err((account, Ok(Either::A(b))))}}))as Box<dyn Future<Item = _, Error = _>>} else {future::err((xmpp.account, Ok(Either::A(b))))} - replacement in src/xmpp/mod.rs at line 303
Box::new(future::err((account, Ok(Either::A(b)))))future::err((account, Ok(Either::A(b)))) - replacement in src/xmpp/mod.rs at line 307
Box::new(if let Some(client) = a.into_inner() {if let Some(client) = a.into_inner() { - replacement in src/xmpp/mod.rs at line 317
})} - replacement in src/xmpp/mod.rs at line 321
Box::new(future::err((account, Ok(Either::A(b)))))future::err((account, Ok(Either::A(b)))) - replacement in src/xmpp/mod.rs at line 324
Box::new(if let Some(client) = a.into_inner() {if let Some(client) = a.into_inner() { - replacement in src/xmpp/mod.rs at line 334
})} - replacement in src/xmpp/mod.rs at line 383
self.state.data.roster.insert(i.jid, (i.subscription, i.ask, vec![]));self.state.data.roster.insert(i.jid, ()); - replacement in src/xmpp/mod.rs at line 514
match cmd {XmppCommand::Chat { xmpp_to, message } => {if let Some(ref mut rdata) = self.state.data.roster.get_mut(&xmpp_to) {info!("Jid {} in roster", xmpp_to);let sub_to = match rdata.0 {xmpp_parsers::roster::Subscription::To => true,xmpp_parsers::roster::Subscription::Both => true,_ => false,};if sub_to {info!("Subscribed to {}", xmpp_to);self.state.data.send_queue.push_back(stanzas::make_chat_message(xmpp_to, message));} else if rdata.1 == xmpp_parsers::roster::Ask::None {info!("Not subscribed to {}", xmpp_to);rdata.2.push(message);self.state.data.send_queue.push_back(stanzas::make_ask_subscribe(xmpp_to));}} else {info!("Jid {} not in roster", xmpp_to);if self.state.data.roster.get(&cmd.xmpp_to).is_some() {info!("Jid {} in roster", cmd.xmpp_to);} else {info!("Jid {} not in roster", cmd.xmpp_to); - replacement in src/xmpp/mod.rs at line 519
self.state.data.counter += 1;let id_add_roster = format!("id_add_roster{}", self.state.data.counter);let add_roster = stanzas::make_add_roster(&id_add_roster, xmpp_to.clone());self.state.data.pending_add_roster_ids.insert(id_add_roster, (xmpp_to, message));info!("Adding jid to roster... {:?}", add_roster);self.state.data.counter += 1;let id_add_roster = format!("id_add_roster{}", self.state.data.counter);let add_roster = stanzas::make_add_roster(&id_add_roster, cmd.xmpp_to.clone());self.state.data.pending_add_roster_ids.insert(id_add_roster, (cmd.xmpp_to, cmd.message));info!("Adding jid to roster... {:?}", add_roster); - replacement in src/xmpp/mod.rs at line 528
self.state.data.send_queue.push_back(add_roster);}}self.state.data.send_queue.push_back(add_roster); - replacement in src/xmpp/mod.rs at line 534
pub enum XmppCommand {Chat {xmpp_to: xmpp_parsers::Jid,message: String,},}pub struct XmppCommand; - edit in src/main.rs at line 2
#![deny(bare_trait_objects)] - edit in src/main.rs at line 7
extern crate minidom; - edit in src/main.rs at line 22
use hyper::service::service_fn; - replacement in src/main.rs at line 28
use tokio::prelude::{Future, Sink, Stream};use tokio::prelude::Sink; - edit in src/main.rs at line 38[3.4337]→[3.8877:11076](∅→∅),[3.11076]→[2.5404:5490](∅→∅),[2.5490]→[3.11156:13165](∅→∅),[3.11156]→[3.11156:13165](∅→∅)
struct ServiceCmd {cmd_send: tokio_channel::mpsc::Sender<XmppCommand>,}impl hyper::service::Service for ServiceCmd {type ReqBody = Body;type ResBody = Body;type Error = failure::Error;type Future =Box<dyn Future<Item = Response<Self::ResBody>, Error = Self::Error> + Send + 'static>;fn call(&mut self, req: Request<Self::ReqBody>) -> Self::Future {let xmpp_to_opt = req.headers().get("X-XMPP-To");let xmpp_to_res: Result<xmpp_parsers::Jid, failure::Error> = xmpp_to_opt.map_or_else(|| Err(format_err!("No X-XMPP-To header")),|xmpp_to| {std::str::from_utf8(xmpp_to.as_bytes()).map_err(|e| e.into()).and_then(|s| {std::str::FromStr::from_str(s).map_err(|e: xmpp_parsers::JidParseError| e.into())})},);match xmpp_to_res {Err(err) => {warn!("Unknown destination: {}", err);Box::new(tokio::prelude::future::result(Response::builder().status(hyper::StatusCode::BAD_REQUEST).body(Body::from(format!("Unknown destination: {}", err))).map_err(|e| e.into()),)) as Box<dyn Future<Item = _, Error = _> + Send + 'static>}Ok(xmpp_to) => {info!("Got request. Reading body...");let cmd_send = self.cmd_send.clone();Box::new(req.into_body().map_err(|e| e.into()).fold(String::new(), |mut acc, ch| {std::str::from_utf8(&*ch).map(|s| {acc.push_str(s);acc})}).and_then(move |message: String| {if !message.is_empty() {Box::new(cmd_send.clone().send(XmppCommand::Chat { xmpp_to, message }).then(|r| match r {Ok(_) => tokio::prelude::future::ok(Response::new(Body::from("Accepted"),)),Err(e) => {error!("Command sent error: {}", e);tokio::prelude::future::result(Response::builder().status(hyper::StatusCode::BAD_REQUEST).body(Body::from(format!("Command sent error: {}",e))),)}}).map_err(|e| e.into()),)} else {warn!("Empty message");Box::new(tokio::prelude::future::result(Response::builder().status(hyper::StatusCode::BAD_REQUEST).body(Body::from("Empty message")).map_err(|e| e.into()),))as Box<dyn Future<Item = _, Error = _> + Send + 'static>}}),) as Box<dyn Future<Item = _, Error = _> + Send + 'static>}}}}struct MakeServiceCmd {cmd_send: tokio_channel::mpsc::Sender<XmppCommand>,} - edit in src/main.rs at line 39
impl<Ctx> hyper::service::MakeService<Ctx> for MakeServiceCmd {type ReqBody = Body;type ResBody = Body;type Error = failure::Error;type Service = ServiceCmd;type Future = tokio::prelude::future::FutureResult<ServiceCmd, Self::MakeError>;type MakeError = hyper::http::Error;fn make_service(&mut self, _ctx: Ctx) -> Self::Future {tokio::prelude::future::ok(ServiceCmd {cmd_send: self.cmd_send.clone(),})}} - replacement in src/main.rs at line 72
.serve(MakeServiceCmd { cmd_send }).serve(move || {let cmd_send = cmd_send.clone();service_fn(move |_req: Request<Body>| {info!("Got request");cmd_send.clone().send(XmppCommand {}).then(|r| match r {Ok(_) => tokio::prelude::future::ok(Response::new(Body::from("Accepted"))),Err(e) => {error!("Command sent error: {}", e);tokio::prelude::future::result(Response::builder().status(hyper::StatusCode::BAD_REQUEST).body(Body::from(format!("Command sent error: {}", e))),)}})})}) - replacement in Cargo.toml at line 12
tokio-xmpp = "0.2.3"failure = "0.1.5"tokio-xmpp = "0.2"failure = "0.1" - replacement in Cargo.toml at line 21
xmpp-parsers = "0.12.2"minidom = "=0.10.0" # xmpp-parserstry_from = "=0.3.2" # xmpp-parsers[3.6425]minidom = "=0.9.1" # dependency of tokio-xmppxmpp-parsers = "0.11"try_from = "=0.2.2" # dependency of xmpp-parsers - edit in Cargo.lock at line 0
[[package]]name = "MacTypes-sys"version = "2.1.0"source = "registry+https://github.com/rust-lang/crates.io-index"dependencies = ["libc 0.2.47 (registry+https://github.com/rust-lang/crates.io-index)",] - replacement in Cargo.lock at line 5
"memchr 2.1.3 (registry+https://github.com/rust-lang/crates.io-index)","memchr 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 18
version = "0.3.7"version = "0.3.6"source = "registry+https://github.com/rust-lang/crates.io-index"[[package]]name = "arrayref"version = "0.3.5" - replacement in Cargo.lock at line 28
version = "0.4.10"version = "0.4.8" - replacement in Cargo.lock at line 39
"libc 0.2.47 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 45
name = "autocfg"version = "0.1.2"name = "backtrace"version = "0.2.3" - edit in Cargo.lock at line 48
dependencies = ["backtrace-sys 0.1.24 (registry+https://github.com/rust-lang/crates.io-index)","cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)","dbghelp-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)","kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)","rustc-demangle 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)","winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",] - replacement in Cargo.lock at line 60
version = "0.3.13"version = "0.3.9" - replacement in Cargo.lock at line 63
"autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)","backtrace-sys 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)","backtrace-sys 0.1.24 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 65
"libc 0.2.47 (registry+https://github.com/rust-lang/crates.io-index)","rustc-demangle 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)","rustc-demangle 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 72
version = "0.1.28"version = "0.1.24" - replacement in Cargo.lock at line 75
"cc 1.0.28 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.47 (registry+https://github.com/rust-lang/crates.io-index)","cc 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 81
version = "0.10.0"version = "0.9.3" - replacement in Cargo.lock at line 84
"byteorder 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)","byteorder 1.2.7 (registry+https://github.com/rust-lang/crates.io-index)","safemem 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 95
version = "0.8.0"version = "0.7.1" - replacement in Cargo.lock at line 98
"byte-tools 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)","crypto-mac 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)","digest 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)","opaque-debug 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)","byte-tools 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)","crypto-mac 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)","digest 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 105
version = "0.7.0"version = "0.3.3" - replacement in Cargo.lock at line 108
"block-padding 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)","byte-tools 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)","byteorder 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)","generic-array 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)","arrayref 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)","byte-tools 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - edit in Cargo.lock at line 113[3.15890]→[3.15890:15931](∅→∅),[3.3118]→[3.15564:15646](∅→∅),[3.15931]→[3.15564:15646](∅→∅),[3.33692]→[3.15564:15646](∅→∅),[3.9675]→[3.15564:15646](∅→∅),[3.15564]→[3.15564:15646](∅→∅),[3.15646]→[3.15932:16009](∅→∅),[3.3271]→[3.15960:15975](∅→∅),[3.16009]→[3.15960:15975](∅→∅),[3.33770]→[3.15960:15975](∅→∅),[3.9828]→[3.15960:15975](∅→∅),[3.15960]→[3.15960:15975](∅→∅)
name = "block-padding"version = "0.1.2"source = "registry+https://github.com/rust-lang/crates.io-index"dependencies = ["byte-tools 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",][[package]] - replacement in Cargo.lock at line 114
version = "0.3.0"version = "0.2.0" - replacement in Cargo.lock at line 119
version = "1.3.0"version = "1.2.7" - replacement in Cargo.lock at line 127
"byteorder 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)","byteorder 1.2.7 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 138
version = "1.0.28"version = "1.0.25" - replacement in Cargo.lock at line 153
"time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)","time 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)", - edit in Cargo.lock at line 177
[[package]]name = "constant_time_eq"version = "0.1.3"source = "registry+https://github.com/rust-lang/crates.io-index" - replacement in Cargo.lock at line 189
"libc 0.2.47 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)", - edit in Cargo.lock at line 195
source = "registry+https://github.com/rust-lang/crates.io-index"dependencies = ["libc 0.2.47 (registry+https://github.com/rust-lang/crates.io-index)",][[package]]name = "crossbeam-channel"version = "0.3.6" - replacement in Cargo.lock at line 197
"crossbeam-utils 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)","parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)","rand 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)","smallvec 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 202
version = "0.6.3"version = "0.6.2" - replacement in Cargo.lock at line 205
"crossbeam-epoch 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)","crossbeam-utils 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)","crossbeam-epoch 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)","crossbeam-utils 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 211
version = "0.7.0"version = "0.6.1" - replacement in Cargo.lock at line 214
"arrayvec 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)","arrayvec 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 216
"crossbeam-utils 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)","crossbeam-utils 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 224
version = "0.6.3"version = "0.6.1" - replacement in Cargo.lock at line 232
version = "0.7.0"version = "0.5.2"source = "registry+https://github.com/rust-lang/crates.io-index"dependencies = ["constant_time_eq 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)","generic-array 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",][[package]]name = "dbghelp-sys"version = "0.2.0" - replacement in Cargo.lock at line 244
"generic-array 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)","subtle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)","winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)","winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 260
version = "0.8.0"version = "0.7.6" - replacement in Cargo.lock at line 263
"generic-array 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)","generic-array 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 268
version = "0.8.14"version = "0.8.12" - replacement in Cargo.lock at line 282
"regex 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)","regex 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - edit in Cargo.lock at line 288
version = "0.1.12"source = "registry+https://github.com/rust-lang/crates.io-index"dependencies = ["backtrace 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",][[package]]name = "error-chain" - replacement in Cargo.lock at line 299
"backtrace 0.3.13 (registry+https://github.com/rust-lang/crates.io-index)","backtrace 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 304
version = "0.1.5"version = "0.1.3" - replacement in Cargo.lock at line 307
"backtrace 0.3.13 (registry+https://github.com/rust-lang/crates.io-index)","failure_derive 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)","backtrace 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)","failure_derive 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 313
version = "0.1.5"version = "0.1.3" - replacement in Cargo.lock at line 316
"proc-macro2 0.4.26 (registry+https://github.com/rust-lang/crates.io-index)","quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)","syn 0.15.26 (registry+https://github.com/rust-lang/crates.io-index)","proc-macro2 0.4.24 (registry+https://github.com/rust-lang/crates.io-index)","quote 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)","syn 0.15.22 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 379
"num_cpus 1.9.0 (registry+https://github.com/rust-lang/crates.io-index)","num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 384
version = "0.12.0"version = "0.9.0" - replacement in Cargo.lock at line 392
version = "0.1.15"version = "0.1.14" - replacement in Cargo.lock at line 395
"byteorder 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)","byteorder 1.2.7 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 402
"slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)","string 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)","tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)","slab 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)","string 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)","tokio-io 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - edit in Cargo.lock at line 408[3.18490]→[3.18490:18754](∅→∅),[3.6144]→[3.18560:18575](∅→∅),[3.18754]→[3.18560:18575](∅→∅),[3.36515]→[3.18560:18575](∅→∅),[3.12475]→[3.18560:18575](∅→∅),[3.18560]→[3.18560:18575](∅→∅)
name = "hmac"version = "0.7.0"source = "registry+https://github.com/rust-lang/crates.io-index"dependencies = ["crypto-mac 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)","digest 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",][[package]] - replacement in Cargo.lock at line 412
"libc 0.2.47 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 441
version = "0.12.21"version = "0.12.17" - replacement in Cargo.lock at line 447
"h2 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)","h2 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 454
"time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)","tokio 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)","tokio-executor 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)","tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)","tokio-reactor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)","tokio-tcp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)","tokio-threadpool 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)","time 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)","tokio 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)","tokio-executor 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)","tokio-io 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)","tokio-reactor 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)","tokio-tcp 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)","tokio-threadpool 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 485
"libc 0.2.47 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 508
version = "0.5.3"version = "0.5.2" - replacement in Cargo.lock at line 511
"failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)","failure_derive 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)","minidom 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)","failure 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)","failure_derive 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)","minidom 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 542
version = "0.2.47"version = "0.2.44" - replacement in Cargo.lock at line 582
version = "0.7.5"version = "0.7.3" - replacement in Cargo.lock at line 585
"phf 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","phf_codegen 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","serde 1.0.85 (registry+https://github.com/rust-lang/crates.io-index)","serde_derive 1.0.85 (registry+https://github.com/rust-lang/crates.io-index)","serde_json 1.0.36 (registry+https://github.com/rust-lang/crates.io-index)","phf 0.7.23 (registry+https://github.com/rust-lang/crates.io-index)","phf_codegen 0.7.23 (registry+https://github.com/rust-lang/crates.io-index)","serde 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)","serde_derive 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)","serde_json 1.0.33 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 592
"tendril 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)","tendril 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 602
version = "2.1.3"version = "2.1.1" - replacement in Cargo.lock at line 606
"libc 0.2.47 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)","version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 617
version = "0.10.0"version = "0.9.1" - replacement in Cargo.lock at line 620
"failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)","failure_derive 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)","quick-xml 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)","failure 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)","failure_derive 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)","quick-xml 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 635
"libc 0.2.47 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 639
"slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)","slab 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 649
"libc 0.2.47 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 670
"libc 0.2.47 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 672
"openssl 0.10.16 (registry+https://github.com/rust-lang/crates.io-index)","openssl 0.10.15 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 674
"openssl-sys 0.9.40 (registry+https://github.com/rust-lang/crates.io-index)","openssl-sys 0.9.39 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 676
"security-framework 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)","security-framework-sys 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)","security-framework 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)","security-framework-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 687
"libc 0.2.47 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 719
version = "1.9.0"version = "1.8.0" - replacement in Cargo.lock at line 722
"libc 0.2.47 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)", - edit in Cargo.lock at line 726
name = "opaque-debug"version = "0.2.1"source = "registry+https://github.com/rust-lang/crates.io-index"[[package]] - replacement in Cargo.lock at line 727
version = "0.10.16"version = "0.10.15" - replacement in Cargo.lock at line 734
"libc 0.2.47 (registry+https://github.com/rust-lang/crates.io-index)","openssl-sys 0.9.40 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)","openssl-sys 0.9.39 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 745
version = "0.9.40"version = "0.9.39" - replacement in Cargo.lock at line 748
"cc 1.0.28 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.47 (registry+https://github.com/rust-lang/crates.io-index)","cc 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 764
version = "0.7.1"version = "0.6.4" - replacement in Cargo.lock at line 768
"parking_lot_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)","parking_lot_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 773
version = "0.4.0"version = "0.3.1" - replacement in Cargo.lock at line 776
"libc 0.2.47 (registry+https://github.com/rust-lang/crates.io-index)","rand 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)","rand 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 779
"smallvec 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)","smallvec 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", - edit in Cargo.lock at line 784
name = "pbkdf2"version = "0.3.0"source = "registry+https://github.com/rust-lang/crates.io-index"dependencies = ["byteorder 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)","crypto-mac 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",][[package]] - replacement in Cargo.lock at line 790
version = "0.7.24"version = "0.7.23" - replacement in Cargo.lock at line 793
"phf_shared 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","phf_shared 0.7.23 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 798
version = "0.7.24"version = "0.7.23" - replacement in Cargo.lock at line 801
"phf_generator 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","phf_shared 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","phf_generator 0.7.23 (registry+https://github.com/rust-lang/crates.io-index)","phf_shared 0.7.23 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 807
version = "0.7.24"version = "0.7.23" - replacement in Cargo.lock at line 810
"phf_shared 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","rand 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)","phf_shared 0.7.23 (registry+https://github.com/rust-lang/crates.io-index)","rand 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 816
version = "0.7.24"version = "0.7.23" - replacement in Cargo.lock at line 834
version = "0.4.26"version = "0.4.24" - replacement in Cargo.lock at line 847
version = "0.13.2"version = "0.12.4" - replacement in Cargo.lock at line 850
"encoding_rs 0.8.14 (registry+https://github.com/rust-lang/crates.io-index)","failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)","encoding_rs 0.8.12 (registry+https://github.com/rust-lang/crates.io-index)","failure 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 853
"memchr 2.1.3 (registry+https://github.com/rust-lang/crates.io-index)","memchr 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 863
version = "0.6.11"version = "0.6.10" - replacement in Cargo.lock at line 866
"proc-macro2 0.4.26 (registry+https://github.com/rust-lang/crates.io-index)","proc-macro2 0.4.24 (registry+https://github.com/rust-lang/crates.io-index)",][[package]]name = "rand"version = "0.4.3"source = "registry+https://github.com/rust-lang/crates.io-index"dependencies = ["fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)","winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 886
"libc 0.2.47 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 893
version = "0.6.4"version = "0.6.1" - replacement in Cargo.lock at line 896
"autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.47 (registry+https://github.com/rust-lang/crates.io-index)","rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)","fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)","rand_chacha 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - edit in Cargo.lock at line 903
"rand_os 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 904
"rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","rand_xorshift 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)","rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 911
version = "0.1.1"version = "0.1.0" - edit in Cargo.lock at line 914
"autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - edit in Cargo.lock at line 915
"rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - edit in Cargo.lock at line 941
version = "0.1.1"source = "registry+https://github.com/rust-lang/crates.io-index"dependencies = ["rand_core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",][[package]]name = "rand_os" - edit in Cargo.lock at line 944
"cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)","fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.47 (registry+https://github.com/rust-lang/crates.io-index)", - edit in Cargo.lock at line 945
"rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)","winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 958
version = "0.1.1"version = "0.1.0" - edit in Cargo.lock at line 965
name = "rdrand"version = "0.4.0"source = "registry+https://github.com/rust-lang/crates.io-index"dependencies = ["rand_core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",][[package]] - replacement in Cargo.lock at line 966
version = "0.1.51"version = "0.1.43" - replacement in Cargo.lock at line 974
"redox_syscall 0.1.51 (registry+https://github.com/rust-lang/crates.io-index)","redox_syscall 0.1.43 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 979
version = "1.1.0"version = "1.0.6" - replacement in Cargo.lock at line 983
"memchr 2.1.3 (registry+https://github.com/rust-lang/crates.io-index)","regex-syntax 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)","memchr 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)","regex-syntax 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 991
version = "0.6.4"version = "0.6.3" - replacement in Cargo.lock at line 1007
version = "0.6.2"version = "0.6.1" - replacement in Cargo.lock at line 1016
version = "0.1.13"version = "0.1.9" - edit in Cargo.lock at line 1033
name = "safemem"version = "0.3.0"source = "registry+https://github.com/rust-lang/crates.io-index"[[package]] - replacement in Cargo.lock at line 1039
version = "0.4.3"version = "0.4.2" - replacement in Cargo.lock at line 1042
"base64 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)","hmac 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)","pbkdf2 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)","rand_os 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","sha-1 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)","sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)","base64 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)","openssl 0.10.15 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1062
version = "0.2.2"version = "0.2.1" - replacement in Cargo.lock at line 1067
"libc 0.2.47 (registry+https://github.com/rust-lang/crates.io-index)","security-framework-sys 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)","security-framework-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1073
version = "0.2.3"version = "0.2.1" - edit in Cargo.lock at line 1076
"MacTypes-sys 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1077
"libc 0.2.47 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1099
"failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)","hyper 0.12.21 (registry+https://github.com/rust-lang/crates.io-index)","failure 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)","hyper 0.12.17 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1102
"minidom 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)","serde 1.0.85 (registry+https://github.com/rust-lang/crates.io-index)","serde_derive 1.0.85 (registry+https://github.com/rust-lang/crates.io-index)","tokio 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)","minidom 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)","serde 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)","serde_derive 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)","tokio 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1108
"tokio-xmpp 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)","tokio-xmpp 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1110
"try_from 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)","xmpp-parsers 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)","try_from 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)","xmpp-parsers 0.11.1 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1116
version = "1.0.85"version = "1.0.80" - replacement in Cargo.lock at line 1121
version = "1.0.85"version = "1.0.80" - replacement in Cargo.lock at line 1124
"proc-macro2 0.4.26 (registry+https://github.com/rust-lang/crates.io-index)","quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)","syn 0.15.26 (registry+https://github.com/rust-lang/crates.io-index)","proc-macro2 0.4.24 (registry+https://github.com/rust-lang/crates.io-index)","quote 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)","syn 0.15.22 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1131
version = "1.0.36"version = "1.0.33" - replacement in Cargo.lock at line 1136
"serde 1.0.85 (registry+https://github.com/rust-lang/crates.io-index)","serde 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1141
version = "0.8.1"version = "0.7.0" - replacement in Cargo.lock at line 1144
"block-buffer 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)","digest 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)","block-buffer 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)","byte-tools 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)","digest 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)", - edit in Cargo.lock at line 1148
"opaque-debug 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1152
version = "0.8.0"version = "0.7.1" - replacement in Cargo.lock at line 1155
"block-buffer 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)","digest 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)","block-buffer 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)","byte-tools 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)","digest 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)", - edit in Cargo.lock at line 1159
"opaque-debug 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1163
version = "0.8.1"version = "0.7.3" - replacement in Cargo.lock at line 1166
"block-buffer 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)","byte-tools 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)","digest 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)","block-buffer 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)","byte-tools 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)","digest 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)", - edit in Cargo.lock at line 1170
"opaque-debug 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1174
version = "0.1.7"version = "0.1.6" - replacement in Cargo.lock at line 1177
"arc-swap 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.47 (registry+https://github.com/rust-lang/crates.io-index)","arc-swap 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1188
version = "0.4.2"version = "0.4.1" - replacement in Cargo.lock at line 1193
version = "0.6.8"version = "0.6.6" - replacement in Cargo.lock at line 1205
"libc 0.2.47 (registry+https://github.com/rust-lang/crates.io-index)","redox_syscall 0.1.51 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)","redox_syscall 0.1.43 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1217
version = "0.1.3"version = "0.1.2" - replacement in Cargo.lock at line 1227
"phf_shared 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","phf_shared 0.7.23 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1229
"serde 1.0.85 (registry+https://github.com/rust-lang/crates.io-index)","serde 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1239
"phf_generator 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","phf_shared 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","proc-macro2 0.4.26 (registry+https://github.com/rust-lang/crates.io-index)","quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)","phf_generator 0.7.23 (registry+https://github.com/rust-lang/crates.io-index)","phf_shared 0.7.23 (registry+https://github.com/rust-lang/crates.io-index)","proc-macro2 0.4.24 (registry+https://github.com/rust-lang/crates.io-index)","quote 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", - edit in Cargo.lock at line 1257
name = "subtle"version = "1.0.0"source = "registry+https://github.com/rust-lang/crates.io-index"[[package]] - replacement in Cargo.lock at line 1268
version = "0.15.26"version = "0.15.22" - replacement in Cargo.lock at line 1271
"proc-macro2 0.4.26 (registry+https://github.com/rust-lang/crates.io-index)","quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)","proc-macro2 0.4.24 (registry+https://github.com/rust-lang/crates.io-index)","quote 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1289
"proc-macro2 0.4.26 (registry+https://github.com/rust-lang/crates.io-index)","quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)","syn 0.15.26 (registry+https://github.com/rust-lang/crates.io-index)","proc-macro2 0.4.24 (registry+https://github.com/rust-lang/crates.io-index)","quote 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)","syn 0.15.22 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1301
"libc 0.2.47 (registry+https://github.com/rust-lang/crates.io-index)","rand 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)","redox_syscall 0.1.51 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)","rand 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)","redox_syscall 0.1.43 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1310
version = "0.4.1"version = "0.4.0" - replacement in Cargo.lock at line 1315
"utf-8 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)","utf-8 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1331
"libc 0.2.47 (registry+https://github.com/rust-lang/crates.io-index)","redox_syscall 0.1.51 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)","redox_syscall 0.1.43 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1354
version = "0.1.42"version = "0.1.40" - replacement in Cargo.lock at line 1357
"libc 0.2.47 (registry+https://github.com/rust-lang/crates.io-index)","redox_syscall 0.1.51 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)","redox_syscall 0.1.43 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1364
version = "0.1.14"version = "0.1.13" - replacement in Cargo.lock at line 1370
"num_cpus 1.9.0 (registry+https://github.com/rust-lang/crates.io-index)","num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1373
"tokio-executor 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)","tokio-fs 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)","tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)","tokio-reactor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)","tokio-tcp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)","tokio-threadpool 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)","tokio-executor 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)","tokio-fs 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)","tokio-io 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)","tokio-reactor 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)","tokio-tcp 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)","tokio-threadpool 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1381
"tokio-uds 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)","tokio-uds 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1399
"tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)","tokio-io 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1408
"tokio-executor 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)","tokio-executor 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1413
version = "0.1.6"version = "0.1.5" - edit in Cargo.lock at line 1416
"crossbeam-utils 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1421
version = "0.1.5"version = "0.1.4" - replacement in Cargo.lock at line 1425
"tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)","tokio-threadpool 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)","tokio-io 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)","tokio-threadpool 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1431
version = "0.1.11"version = "0.1.10" - replacement in Cargo.lock at line 1441
version = "0.1.8"version = "0.1.7" - replacement in Cargo.lock at line 1444
"crossbeam-utils 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)","crossbeam-utils 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1449
"num_cpus 1.9.0 (registry+https://github.com/rust-lang/crates.io-index)","parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)","slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)","tokio-executor 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)","tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)","num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)","parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)","slab 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)","tokio-executor 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)","tokio-io 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1462
"libc 0.2.47 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1465
"signal-hook 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)","tokio-executor 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)","tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)","tokio-reactor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)","signal-hook 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)","tokio-executor 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)","tokio-io 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)","tokio-reactor 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1474
version = "0.1.3"version = "0.1.2" - replacement in Cargo.lock at line 1481
"tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)","tokio-reactor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)","tokio-io 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)","tokio-reactor 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1487
version = "0.1.10"version = "0.1.9" - replacement in Cargo.lock at line 1490
"crossbeam-channel 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)","crossbeam-deque 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)","crossbeam-utils 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)","crossbeam-deque 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)","crossbeam-utils 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1494
"num_cpus 1.9.0 (registry+https://github.com/rust-lang/crates.io-index)","rand 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)","tokio-executor 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)","num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)","rand 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)","tokio-executor 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1504
"crossbeam-utils 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)","crossbeam-utils 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1506
"slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)","tokio-executor 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)","slab 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)","tokio-executor 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1512
version = "0.2.1"version = "0.2.0" - replacement in Cargo.lock at line 1517
"tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)","tokio-io 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1530
"tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)","tokio-reactor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)","tokio-io 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)","tokio-reactor 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1536
version = "0.2.5"version = "0.2.4" - replacement in Cargo.lock at line 1542
"libc 0.2.47 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1547
"tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)","tokio-reactor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)","tokio-io 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)","tokio-reactor 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1553
version = "0.2.3"version = "0.2.0" - edit in Cargo.lock at line 1560
"jid 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)","minidom 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1563
"quick-xml 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)","sasl 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)","tokio 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)","quick-xml 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)","sasl 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)","tokio 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1567
"tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)","tokio-tls 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)","trust-dns-proto 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)","trust-dns-resolver 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)","tokio-io 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)","tokio-tls 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)","trust-dns-proto 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)","trust-dns-resolver 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)","try_from 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1573
"xmpp-parsers 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)","xmpp-parsers 0.11.1 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1581
"serde 1.0.85 (registry+https://github.com/rust-lang/crates.io-index)","serde 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1586
version = "0.6.2"version = "0.4.3" - replacement in Cargo.lock at line 1589
"byteorder 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)","failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)","byteorder 1.2.7 (registry+https://github.com/rust-lang/crates.io-index)","error-chain 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1595
"rand 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)","smallvec 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)","rand 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)","smallvec 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1598
"tokio-executor 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)","tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)","tokio-reactor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)","tokio-tcp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)","tokio-executor 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)","tokio-io 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)","tokio-reactor 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)","tokio-tcp 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1609
version = "0.10.2"version = "0.9.1" - replacement in Cargo.lock at line 1613
"failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)","error-chain 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1619
"resolv-conf 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)","smallvec 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)","tokio 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)","trust-dns-proto 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)","resolv-conf 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)","smallvec 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)","tokio 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)","trust-dns-proto 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1632
version = "0.3.2"version = "0.2.2" - edit in Cargo.lock at line 1634
dependencies = ["cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",] - replacement in Cargo.lock at line 1693
version = "0.7.5"version = "0.7.4" - edit in Cargo.lock at line 1709
source = "registry+https://github.com/rust-lang/crates.io-index"[[package]]name = "version_check"version = "0.1.5" - replacement in Cargo.lock at line 1814
"markup5ever 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)","time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)","markup5ever 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)","time 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1820
version = "0.12.2"version = "0.11.1" - replacement in Cargo.lock at line 1823
"base64 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)","blake2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)","base64 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)","blake2 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1826
"digest 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)","jid 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)","minidom 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)","sha-1 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)","sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)","sha3 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)","try_from 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)","digest 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)","jid 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)","minidom 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)","sha-1 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)","sha2 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)","sha3 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)","try_from 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - edit in Cargo.lock at line 1836
"checksum MacTypes-sys 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "eaf9f0d0b1cc33a4d2aee14fb4b2eac03462ef4db29c8ac4057327d8a71ad86f" - replacement in Cargo.lock at line 1838
"checksum arc-swap 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)" = "1025aeae2b664ca0ea726a89d574fe8f4e77dd712d443236ad1de00379450cf6""checksum arrayvec 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)" = "92c7fb76bc8826a8b33b4ee5bb07a247a81e76764ab4d55e8f73e3a4d8808c71""checksum arc-swap 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "5c5ed110e2537bdd3f5b9091707a8a5556a72ac49bbd7302ae0b28fdccb3246c""checksum arrayref 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "0d382e583f07208808f6b1249e60848879ba3543f57c32277bf52d69c2f0f0ee""checksum arrayvec 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" = "f405cc4c21cd8b784f6c8fc2adf9bc00f59558f0049b5ec21517f875963040cc" - replacement in Cargo.lock at line 1842
"checksum autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a6d640bee2da49f60a4068a7fae53acde8982514ab7bae8b8cea9e88cbcfd799""checksum backtrace 0.3.13 (registry+https://github.com/rust-lang/crates.io-index)" = "b5b493b66e03090ebc4343eb02f94ff944e0cbc9ac6571491d170ba026741eb5""checksum backtrace-sys 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)" = "797c830ac25ccc92a7f8a7b9862bde440715531514594a6154e3d4a54dd769b6""checksum base64 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "621fc7ecb8008f86d7fb9b95356cd692ce9514b80a86d85b397f32a22da7b9e2""checksum backtrace 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "346d7644f0b5f9bc73082d3b2236b69a05fd35cce0cfa3724e184e6a5c9e2a2f""checksum backtrace 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "89a47830402e9981c5c41223151efcced65a0510c13097c769cede7efb34782a""checksum backtrace-sys 0.1.24 (registry+https://github.com/rust-lang/crates.io-index)" = "c66d56ac8dabd07f6aacdaf633f4b8262f5b3601a810a0dcddffd5c22c69daa0""checksum base64 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)" = "489d6c0ed21b11d038c31b6ceccca973e65d73ba3bd8ecb9a2babf5546164643" - replacement in Cargo.lock at line 1847
"checksum blake2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "91721a6330935673395a0607df4d49a9cb90ae12d259f1b3e0a3f6e1d486872e""checksum block-buffer 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "49665c62e0e700857531fa5d3763e91b539ff1abeebd56808d378b495870d60d""checksum block-padding 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "4fc4358306e344bf9775d0197fd00d2603e5afb0771bb353538630f022068ea3""checksum byte-tools 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "980479e6fde23246dfb54d47580d66b4e99202e7579c5eaa9fe10ecb5ebd2182""checksum byteorder 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "60f0b0d4c0a382d2734228fd12b5a6b5dac185c60e938026fd31b265b94f9bd2""checksum blake2 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "73b77e29dbd0115e43938be2d5128ecf81c0353e00acaa65339a1242586951d9""checksum block-buffer 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "a076c298b9ecdb530ed9d967e74a6027d6a7478924520acddcddc24c1c8ab3ab""checksum byte-tools 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "560c32574a12a89ecd91f5e742165893f86e3ab98d21f8ea548658eb9eef5f40""checksum byteorder 1.2.7 (registry+https://github.com/rust-lang/crates.io-index)" = "94f88df23a25417badc922ab0f5716cc1330e87f71ddd9203b3a3ccd9cedf75d" - replacement in Cargo.lock at line 1853
"checksum cc 1.0.28 (registry+https://github.com/rust-lang/crates.io-index)" = "bb4a8b715cb4597106ea87c7c84b2f1d452c7492033765df7f32651e66fcf749""checksum cc 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)" = "f159dfd43363c4d08055a07703eb7a3406b0dac4d0584d96965a3262db3c9d16" - edit in Cargo.lock at line 1858
"checksum constant_time_eq 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "8ff012e225ce166d4422e0e78419d901719760f62ae2b7969ca6b564d1b54a9e" - replacement in Cargo.lock at line 1861
"checksum crossbeam-channel 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "137bc235f622ffaa0428e3854e24acb53291fc0b3ff6fb2cb75a8be6fb02f06b""checksum crossbeam-deque 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)" = "05e44b8cf3e1a625844d1750e1f7820da46044ff6d28f4d43e455ba3e5bb2c13""checksum crossbeam-epoch 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f10a4f8f409aaac4b16a5474fb233624238fcdeefb9ba50d5ea059aab63ba31c""checksum crossbeam-utils 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)" = "41ee4864f4797060e52044376f7d107429ce1fb43460021b126424b7180ee21a""checksum crypto-mac 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4434400df11d95d556bac068ddfedd482915eb18fe8bea89bc80b6e4b1c179e5""checksum crossbeam-deque 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "4fe1b6f945f824c7a25afe44f62e25d714c0cc523f8e99d8db5cd1026e1269d3""checksum crossbeam-epoch 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2449aaa4ec7ef96e5fb24db16024b935df718e9ae1cec0a1e68feeca2efca7b8""checksum crossbeam-utils 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c55913cc2799171a550e307918c0a360e8c16004820291bf3b638969b4a01816""checksum crypto-mac 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "0999b4ff4d3446d4ddb19a63e9e00c1876e75cd7000d20e57a693b4b3f08d958""checksum dbghelp-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "97590ba53bcb8ac28279161ca943a924d1fd4a8fb3fa63302591647c4fc5b850" - replacement in Cargo.lock at line 1867
"checksum digest 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "05f47366984d3ad862010e22c7ce81a7dbcaebbdfb37241a620f8b6596ee135c""checksum encoding_rs 0.8.14 (registry+https://github.com/rust-lang/crates.io-index)" = "a69d152eaa438a291636c1971b0a370212165ca8a75759eb66818c5ce9b538f7""checksum digest 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)" = "03b072242a8cbaf9c145665af9d250c59af3b958f83ed6824e13533cf76d5b90""checksum encoding_rs 0.8.12 (registry+https://github.com/rust-lang/crates.io-index)" = "ca20350a7cb5aab5b9034731123d6d412caf3e92d4985e739e411ba0955fd0eb" - edit in Cargo.lock at line 1870
"checksum error-chain 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)" = "faa976b4fd2e4c2b2f3f486874b19e61944d3de3de8b61c9fcf835d583871bcc" - replacement in Cargo.lock at line 1872
"checksum failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "795bd83d3abeb9220f257e597aa0080a508b27533824adf336529648f6abf7e2""checksum failure_derive 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "ea1063915fd7ef4309e222a5a07cf9c319fb9c7836b1f89b85458672dbb127e1""checksum failure 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "6dd377bcc1b1b7ce911967e3ec24fa19c3224394ec05b54aa7b083d498341ac7""checksum failure_derive 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "64c2d913fe8ed3b6c6518eedf4538255b989945c14c2a7d5cbff62a5e2120596" - replacement in Cargo.lock at line 1883
"checksum generic-array 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3c0f28c2f5bfb5960175af447a2da7c18900693738343dc896ffbcabd9839592""checksum h2 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)" = "30e0b8e55b4d7ffedade2b9605851f8e85f5010663e7ad170ef3c0f0681bc43f""checksum hmac 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f127a908633569f208325f86f71255d3363c79721d7f9fe31cd5569908819771""checksum generic-array 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ef25c5683767570c2bbd7deba372926a55eaae9982d7726ee2a1050239d45b9d""checksum h2 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)" = "1ac030ae20dee464c5d0f36544d8b914a6bc606da44a57e052d2b0f5dae129e0" - replacement in Cargo.lock at line 1889
"checksum hyper 0.12.21 (registry+https://github.com/rust-lang/crates.io-index)" = "6d6b1a3d01ac8035b8d2d94e0e5254eab82746f09046baed763751b00253232b""checksum hyper 0.12.17 (registry+https://github.com/rust-lang/crates.io-index)" = "c49a75385d35ff5e9202755f09beb0b878a05c4c363fcc52b23eeb5dcb6782cc" - replacement in Cargo.lock at line 1895
"checksum jid 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "24e8a3f2ab860aa08074136e3144a2425e678d8823206e5adcc6145dc136503a""checksum jid 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6c4cee633b7ce95e71202ecb99e632d15ad468de7753e616a924c93842f1a3d0" - replacement in Cargo.lock at line 1900
"checksum libc 0.2.47 (registry+https://github.com/rust-lang/crates.io-index)" = "48450664a984b25d5b479554c29cc04e3150c97aa4c01da5604a2d4ed9151476""checksum libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)" = "10923947f84a519a45c8fefb7dd1b3e8c08747993381adee176d7a82b4195311" - replacement in Cargo.lock at line 1906
"checksum markup5ever 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)" = "897636f9850c3eef4905a5540683ed53dc9393860f0846cab2c2ddf9939862ff""checksum markup5ever 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)" = "a87c4100d614080c8ab43334fb028ebe387f273fb61ed4ff0eae9189b94b6be8" - replacement in Cargo.lock at line 1908
"checksum memchr 2.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "e1dd4eaac298c32ce07eb6ed9242eda7d82955b9170b7d6db59b2e02cc63fcb8""checksum memchr 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0a3eb002f0535929f1199681417029ebea04aadc0c7a4224b46be99c7f5d6a16" - replacement in Cargo.lock at line 1910
"checksum minidom 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "275024eea6c6ff4ace22f2750843831183785288eec1cff91a4e6b8898cf94f9""checksum minidom 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c0a5296bf9d0ac9e4a6e4cb844e3ee84bf33f841c7b3ae2cc87f05ceb81b50ae" - replacement in Cargo.lock at line 1920
"checksum num_cpus 1.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5a69d464bdc213aaaff628444e99578ede64e9c854025aa43b9796530afa9238""checksum opaque-debug 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "51ecbcb821e1bd256d456fe858aaa7f380b63863eab2eb86eee1bd9f33dd6682""checksum openssl 0.10.16 (registry+https://github.com/rust-lang/crates.io-index)" = "ec7bd7ca4cce6dbdc77e7c1230682740d307d1218a87fb0349a571272be749f9""checksum num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c51a3322e4bca9d212ad9a158a02abc6934d005490c054a2778df73a70aa0a30""checksum openssl 0.10.15 (registry+https://github.com/rust-lang/crates.io-index)" = "5e1309181cdcbdb51bc3b6bedb33dfac2a83b3d585033d3f6d9e22e8c1928613" - replacement in Cargo.lock at line 1923
"checksum openssl-sys 0.9.40 (registry+https://github.com/rust-lang/crates.io-index)" = "1bb974e77de925ef426b6bc82fce15fd45bdcbeb5728bffcfc7cdeeb7ce1c2d6""checksum openssl-sys 0.9.39 (registry+https://github.com/rust-lang/crates.io-index)" = "278c1ad40a89aa1e741a1eed089a2f60b18fab8089c3139b542140fc7d674106" - replacement in Cargo.lock at line 1925
"checksum parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ab41b4aed082705d1056416ae4468b6ea99d52599ecf3169b00088d43113e337""checksum parking_lot_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "94c8c7923936b28d546dfd14d4472eaf34c99b14e1c973a32b3e6d4eb04298c9""checksum pbkdf2 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "006c038a43a45995a9670da19e67600114740e8511d4333bf97a56e66a7542d9""checksum parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)" = "f0802bff09003b291ba756dc7e79313e51cc31667e94afbe847def490424cde5""checksum parking_lot_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ad7f7e6ebdc79edff6fdcb87a55b620174f7a989e3eb31b65231f4af57f00b8c" - replacement in Cargo.lock at line 1928
"checksum phf 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)" = "b3da44b85f8e8dfaec21adae67f95d93244b2ecf6ad2a692320598dcc8e6dd18""checksum phf_codegen 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)" = "b03e85129e324ad4166b06b2c7491ae27fe3ec353af72e72cd1654c7225d517e""checksum phf_generator 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)" = "09364cc93c159b8b06b1f4dd8a4398984503483891b0c26b867cf431fb132662""checksum phf_shared 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)" = "234f71a15de2288bcb7e3b6515828d22af7ec8598ee6d24c3b526fa0a80b67a0""checksum phf 0.7.23 (registry+https://github.com/rust-lang/crates.io-index)" = "cec29da322b242f4c3098852c77a0ca261c9c01b806cae85a5572a1eb94db9a6""checksum phf_codegen 0.7.23 (registry+https://github.com/rust-lang/crates.io-index)" = "7d187f00cd98d5afbcd8898f6cf181743a449162aeb329dcd2f3849009e605ad""checksum phf_generator 0.7.23 (registry+https://github.com/rust-lang/crates.io-index)" = "03dc191feb9b08b0dc1330d6549b795b9d81aec19efe6b4a45aec8d4caee0c4b""checksum phf_shared 0.7.23 (registry+https://github.com/rust-lang/crates.io-index)" = "b539898d22d4273ded07f64a05737649dc69095d92cb87c7097ec68e3f150b93" - replacement in Cargo.lock at line 1934
"checksum proc-macro2 0.4.26 (registry+https://github.com/rust-lang/crates.io-index)" = "38fddd23d98b2144d197c0eca5705632d4fe2667d14a6be5df8934f8d74f1978""checksum proc-macro2 0.4.24 (registry+https://github.com/rust-lang/crates.io-index)" = "77619697826f31a02ae974457af0b29b723e5619e113e9397b8b82c6bd253f09" - replacement in Cargo.lock at line 1936
"checksum quick-xml 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)" = "98d8d2d671bd29c6122a98b45ce3106391e89ba378f731274de677f1eff06e5f""checksum quick-xml 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)" = "1d8065cbb01701c11cc195cde85cbf39d1c6a80705b67a157ebb3042e0e5777f" - replacement in Cargo.lock at line 1938
"checksum quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)" = "cdd8e04bd9c52e0342b406469d494fcb033be4bdbe5c606016defbb1681411e1""checksum quote 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)" = "53fa22a1994bd0f9372d7a816207d8a2677ad0325b073f5c5332760f0fb62b5c""checksum rand 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "8356f47b32624fef5b3301c1be97e5944ecdd595409cc5da11d05f211db6cfbd" - replacement in Cargo.lock at line 1941
"checksum rand 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)" = "3906503e80ac6cbcacb2c2973fa8e473f24d7e2747c8c92bb230c2441cad96b5""checksum rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef""checksum rand 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ae9d223d52ae411a33cf7e54ec6034ec165df296ccd23533d671a28252b6f66a""checksum rand_chacha 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "771b009e3a508cb67e8823dda454aaa5368c7bc1c16829fb77d3e980440dd34a" - edit in Cargo.lock at line 1947
"checksum rand_os 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f46fbd5550acf75b0c2730f5dd1873751daf9beb8f11b44027778fae50d7feca" - replacement in Cargo.lock at line 1948
"checksum rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c""checksum rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2""checksum redox_syscall 0.1.51 (registry+https://github.com/rust-lang/crates.io-index)" = "423e376fffca3dfa06c9e9790a9ccd282fafb3cc6e6397d01dbf64f9bacc6b85""checksum rand_xorshift 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "effa3fcaa47e18db002bdde6060944b6d2f9cfd8db471c30e873448ad9187be3""checksum redox_syscall 0.1.43 (registry+https://github.com/rust-lang/crates.io-index)" = "679da7508e9a6390aeaf7fbd02a800fdc64b73fe2204dd2c8ae66d22d9d5ad5d" - replacement in Cargo.lock at line 1951
"checksum regex 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "37e7cbbd370869ce2e8dff25c7018702d10b21a20ef7135316f8daecd6c25b7f""checksum regex-syntax 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)" = "4e47a2ed29da7a9e1960e1639e7a982e6edc6d49be308a3b02daf511504a16d1""checksum regex 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "ee84f70c8c08744ea9641a731c7fadb475bf2ecc52d7f627feb833e0b3990467""checksum regex-syntax 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)" = "fbc557aac2b708fe84121caf261346cc2eed71978024337e42eb46b8a252ac6e" - replacement in Cargo.lock at line 1954
"checksum resolv-conf 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "b263b4aa1b5de9ffc0054a2386f96992058bb6870aab516f8cdeb8a667d56dcb""checksum rustc-demangle 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)" = "adacaae16d02b6ec37fdc7acfcddf365978de76d1983d3ee22afc260e1ca9619""checksum resolv-conf 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c62bd95a41841efdf7fca2ae9951e64a8d8eae7e5da196d8ce489a2241491a92""checksum rustc-demangle 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "bcfe5b13211b4d78e5c2cadfebd7769197d95c639c35a50057eb4c05de811395" - replacement in Cargo.lock at line 1958
"checksum sasl 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "e457758c85b736bbad56dc099406cd2a9c19554cf81880dba7a51d092929e600""checksum safemem 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8dca453248a96cb0749e36ccdfe2b0b4e54a61bfef89fb97ec621eb8e0a93dd9""checksum sasl 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "4dbda5436dcd059da44fbf84b87a7164c5e3cad354efd0630c1f2be3c51c8859" - replacement in Cargo.lock at line 1962
"checksum security-framework 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "bfab8dda0e7a327c696d893df9ffa19cadc4bd195797997f5223cf5831beaf05""checksum security-framework-sys 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3d6696852716b589dff9e886ff83778bb635150168e83afa8ac6b8a78cb82abc""checksum security-framework 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "697d3f3c23a618272ead9e1fb259c1411102b31c6af8b93f1d64cca9c3b0e8e0""checksum security-framework-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ab01dfbe5756785b5b4d46e0289e5a18071dfa9a7c2b24213ea00b9ef9b665bf" - replacement in Cargo.lock at line 1966
"checksum serde 1.0.85 (registry+https://github.com/rust-lang/crates.io-index)" = "534b8b91a95e0f71bca3ed5824752d558da048d4248c91af873b63bd60519752""checksum serde_derive 1.0.85 (registry+https://github.com/rust-lang/crates.io-index)" = "a915306b0f1ac5607797697148c223bedeaa36bcc2e28a01441cd638cc6567b4""checksum serde_json 1.0.36 (registry+https://github.com/rust-lang/crates.io-index)" = "574378d957d6dcdf1bbb5d562a15cbd5e644159432f84634b94e485267abbcc7""checksum sha-1 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "23962131a91661d643c98940b20fcaffe62d776a823247be80a48fcb8b6fce68""checksum sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7b4d8bfd0e469f417657573d8451fb33d16cfe0989359b93baf3a1ffc639543d""checksum sha3 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "34a5e54083ce2b934bf059fdf38e7330a154177e029ab6c4e18638f2f624053a""checksum signal-hook 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "1f272d1b7586bec132ed427f532dd418d8beca1ca7f2caf7df35569b1415a4b4""checksum serde 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)" = "15c141fc7027dd265a47c090bf864cf62b42c4d228bbcf4e51a0c9e2b0d3f7ef""checksum serde_derive 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)" = "225de307c6302bec3898c51ca302fc94a7a1697ef0845fcee6448f33c032249c""checksum serde_json 1.0.33 (registry+https://github.com/rust-lang/crates.io-index)" = "c37ccd6be3ed1fdf419ee848f7c758eb31b054d7cd3ae3600e3bae0adf569811""checksum sha-1 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "51b9d1f3b5de8a167ab06834a7c883bd197f2191e1dda1a22d9ccfeedbf9aded""checksum sha2 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "9eb6be24e4c23a84d7184280d2722f7f2731fcdd4a9d886efbfe4413e4847ea0""checksum sha3 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)" = "b64dcef59ed4290b9fb562b53df07f564690d6539e8ecdd4728cf392477530bc""checksum signal-hook 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "8941ae94fa73d0f73b422774b3a40a7195cecd88d1c090f4b37ade7dc795ab66" - replacement in Cargo.lock at line 1974
"checksum slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8""checksum smallvec 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)" = "88aea073965ab29f6edb5493faf96ad662fb18aa9eeb186a3b7057951605ed15""checksum slab 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "5f9776d6b986f77b35c6cf846c11ad986ff128fe0b2b63a3628e3755e8d3102d""checksum smallvec 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)" = "622df2d454c29a4d89b30dc3b27b42d7d90d6b9e587dbf8f67652eb7514da484" - replacement in Cargo.lock at line 1978
"checksum string 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "b639411d0b9c738748b5397d5ceba08e648f4f1992231aa859af1a017f31f60b""checksum string 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "98998cced76115b1da46f63388b909d118a37ae0be0f82ad35773d4a4bc9d18d" - edit in Cargo.lock at line 1983
"checksum subtle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2d67a5a62ba6e01cb2192ff309324cb4875d0c451d55fe2319433abe7a05a8ee" - replacement in Cargo.lock at line 1984
"checksum syn 0.15.26 (registry+https://github.com/rust-lang/crates.io-index)" = "f92e629aa1d9c827b2bb8297046c1ccffc57c99b947a680d3ccff1f136a3bee9""checksum syn 0.15.22 (registry+https://github.com/rust-lang/crates.io-index)" = "ae8b29eb5210bc5cf63ed6149cbf9adfc82ac0be023d8735c176ee74a2db4da7" - replacement in Cargo.lock at line 1988
"checksum tendril 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "707feda9f2582d5d680d733e38755547a3e8fb471e7ba11452ecfd9ce93a5d3b""checksum tendril 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9de21546595a0873061940d994bbbc5c35f024ae4fd61ec5c5b159115684f508" - replacement in Cargo.lock at line 1993
"checksum time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)" = "db8dcfca086c1143c9270ac42a2bbd8a7ee477b78ac8e45b19abfb0cbede4b6f""checksum tokio 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)" = "4790d0be6f4ba6ae4f48190efa2ed7780c9e3567796abdb285003cf39840d9c5""checksum time 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)" = "d825be0eb33fda1a7e68012d51e9c7f451dc1a69391e7fdc197060bb8c56667b""checksum tokio 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)" = "a7817d4c98cc5be21360b3b37d6036fe9b7aefa5b7a201b7b16ff33423822f7d" - replacement in Cargo.lock at line 1998
"checksum tokio-executor 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "30c6dbf2d1ad1de300b393910e8a3aa272b724a400b6531da03eed99e329fbf0""checksum tokio-fs 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "0e9cbbc8a3698b7ab652340f46633364f9eaa928ddaaee79d8b8f356dd79a09d""checksum tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)" = "b53aeb9d3f5ccf2ebb29e19788f96987fa1355f8fe45ea193928eaaaf3ae820f""checksum tokio-reactor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "afbcdb0f0d2a1e4c440af82d7bbf0bf91a8a8c0575bcd20c05d15be7e9d3a02f""checksum tokio-executor 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "c117b6cf86bb730aab4834f10df96e4dd586eff2c3c27d3781348da49e255bde""checksum tokio-fs 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "60ae25f6b17d25116d2cba342083abe5255d3c2c79cb21ea11aa049c53bf7c75""checksum tokio-io 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "7392fe0a70d5ce0c882c4778116c519bd5dbaa8a7c3ae3d04578b3afafdcda21""checksum tokio-reactor 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "502b625acb4ee13cbb3b90b8ca80e0addd263ddacf6931666ef751e610b07fb5" - replacement in Cargo.lock at line 2003
"checksum tokio-tcp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "1d14b10654be682ac43efee27401d792507e30fd8d26389e1da3b185de2e4119""checksum tokio-threadpool 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "17465013014410310f9f61fa10bf4724803c149ea1d51efece131c38efca93aa""checksum tokio-tcp 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7ad235e9dadd126b2d47f6736f65aa1fdcd6420e66ca63f44177bc78df89f912""checksum tokio-threadpool 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "56c5556262383032878afad66943926a1d1f0967f17e94bd7764ceceb3b70e7f" - replacement in Cargo.lock at line 2006
"checksum tokio-tls 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "354b8cd83825b3c20217a9dc174d6a0c67441a2fae5c41bcb1ea6679f6ae0f7c""checksum tokio-tls 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e53fdbf3156f588be1676022fe794232b24922d426e8c14f4e46891c1e31c440" - replacement in Cargo.lock at line 2008
"checksum tokio-uds 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "037ffc3ba0e12a0ab4aca92e5234e0dedeb48fddf6ccd260f1f150a36a9f2445""checksum tokio-xmpp 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "838f8a47654f45fd3618288ebda6085578f783ae087d82f12c09e04f7513a690""checksum tokio-uds 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "99ce87382f6c1a24b513a72c048b2c8efe66cb5161c9061d00bee510f08dc168""checksum tokio-xmpp 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c27385c4781afc851c61ac66d79463c511bf073d3a5d71b8bfd13a816e475989" - replacement in Cargo.lock at line 2011
"checksum trust-dns-proto 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "30dde452f5d142d5e316a3b32386da95280c98b7e266639f8f3bc6fdf507d279""checksum trust-dns-resolver 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)" = "de630f95a192f793436ffae5137e88253cc4142a97d9a8e73c8d804fa85ddf0a""checksum trust-dns-proto 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "f1525ca4e26f5a09d81b79584f19225e7dba5606ae3a416311c2751c5cea60bb""checksum trust-dns-resolver 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4a821ad51a29816420b8cac4b026756b81c023630b97eaa4c8090637ee3508bd" - replacement in Cargo.lock at line 2014
"checksum try_from 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "283d3b89e1368717881a9d51dad843cc435380d8109c9e47d38780a324698d8b""checksum try_from 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "923a7ee3e97dbfe8685261beb4511cc9620a1252405d02693d43169729570111" - replacement in Cargo.lock at line 2024
"checksum utf-8 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)" = "05e42f7c18b8f902290b009cde6d651262f956c98bc51bca4cd1d511c9cd85c7""checksum utf-8 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)" = "bab35f71693630bb1953dce0f2bcd780e7cde025027124a202ac08a45ba25141" - edit in Cargo.lock at line 2028
"checksum version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "914b1a6776c4c929a602fafd8bc742e06365d4bcbe48c30f9cca5824f70dc9dd" - replacement in Cargo.lock at line 2043
"checksum xmpp-parsers 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)" = "58b4400e1ae0d246044db5fa7f2e693fdfe9cc6e8eaa72ef2a68c5dc1d3c96de"[3.32568]"checksum xmpp-parsers 0.11.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2e1e0a279d5af83a1dff442249f8a43214ac120267acfaac494b9d28c0027fea"