Better README
[?]
Apr 13, 2019, 2:37 PM
DCGEFPRCTSAZNMGCTU5ZMS7W5RVS73IN5LVWI6HDGNS2RIZKSA2QCDependencies
- [2]
UO4WTU6UUpdate dependencies - [3]
L3D22A5JPrepare to check incoming presence - [4]
J7VX56FWToDo - [5]
EBETRYK7Add counter for id. Check for jid in roster - [6]
HKSQO7JZEnable hyper http server and configuration - [7]
MAC6WCSXFix pipelines - [8]
QTCUURXNAdd additional requirement for command stream - [9]
V5HDBSZMUse jid for receiver address - [10]
QYY3KRGLUse failure instead Box<dyn Error> - [11]
XOAM22TTSimplify xmpp incoming stanzas processing without futures - [12]
ZI4GJ72VAdd message to xmpp command - [13]
VS6AHRWIMove XMPP to separate dir - [14]
AA2ZWGRLEnter to MUC - [15]
CBWCXUZZPrepare adding new items to roster - [16]
FVVPKFTLInitial commit - [17]
AYQZ2UIAUpdate deps - [18]
ACXUIS63Update dependecies - [19]
IK3YDPTYUpdate deps - [20]
5GINRCKLSend ping XEP-0199 - [21]
5OBTKGDLUpdate deps - [22]
5Y6YJ6UHAdd shutdown function to make actions before offline - [23]
6E5IC33ZTry to test 2018 edition - [24]
77USPY5ISending messages works! - [25]
QWE26TMVupdate deps - [26]
OANBCLN5Move xmpp client into XmppState - [27]
WBU7UOQWRead chatroom from config - [28]
OB3HA2MDUse Client::new_with_jid to parse jid only once - [29]
DISBBP3IUpdate dependencies - [30]
VW7NVWAGLeave MUC properly - [31]
HU3NZX5ZProcess self-presence via new processing code - [32]
37OMJ4CKSend MUC message - [33]
ALP2YJIURename XmppState to XmppProcessState - [34]
UMTLHH77Process commands in the separate function - [35]
YZVEEOYTUpdate dependencies - [36]
XGP44R5HRework stopping xmpp connection - [37]
RGOSS73UConvert self-presence to xmpp_parser's type - [38]
NDDQQP2PUpdate deps - [39]
FWJDW3G5Allow process xmpp incoming stanzas with futures - [40]
FCPF2FV6Break connection on iq error - [41]
5IKA4GO7Rename xmpp client field from "inner" to "client" - [42]
SYH7UQP6Make xmpp command enum to allow different commands Save subscription ask status. Don't ask if already requested subscription. - [43]
2VZBEEXAMessages fixed - [44]
BWDUANCVSecond part of processing result is only about stop_future - [45]
EOHEZXX3Move request processing to structure - [46]
FV6BJ5K6Send self-presence and store account info in Rc so it willbe used in some future in parallel - [47]
OGMBXBKPMove online to XmppConnection - [48]
TPVUBB3FAnswer to ping requests - [49]
X6L47BHQUse different structure for established xmpp connection
Change contents
- edit in src/xmpp/stanzas.rs at line 4
use xmpp_parsers::ping::Ping; - replacement in src/xmpp/stanzas.rs at line 17
Iq::from_get(id,Roster {items: vec![],ver: None,},).into()let mut get_roster = Iq::from_get(Roster {items: vec![],ver: None,});get_roster.id = Some(id.to_string());get_roster.into() - replacement in src/xmpp/stanzas.rs at line 26
Iq::from_set(id,Roster {items: vec![Item {jid,name: None,subscription: xmpp_parsers::roster::Subscription::None,ask: xmpp_parsers::roster::Ask::None,groups: vec![],}],ver: None,},).into()let mut add_roster = Iq::from_set(Roster {items: vec![Item {jid,name: None,subscription: xmpp_parsers::roster::Subscription::None,ask: xmpp_parsers::roster::Ask::None,groups: vec![],}],ver: None,});add_roster.id = Some(id.to_string());add_roster.into() - edit in src/xmpp/stanzas.rs at line 68[3.309]→[3.309:527](∅→∅),[3.527]→[3.909:929](∅→∅),[3.909]→[3.909:929](∅→∅),[3.254]→[3.31:33](∅→∅),[3.33]→[3.528:594](∅→∅),[3.594]→[2.481:524](∅→∅),[2.524]→[3.669:768](∅→∅),[3.669]→[3.669:768](∅→∅),[3.768]→[2.525:685](∅→∅),[2.685]→[3.967:1031](∅→∅),[3.967]→[3.967:1031](∅→∅)
pub fn make_muc_presence_leave(from: xmpp_parsers::Jid, to: xmpp_parsers::Jid) -> Element {let mut presence = Presence::new(PresenceType::Unavailable);presence.from = Some(from);presence.to = Some(to);presence.into()}pub fn make_ping(id: &str, from: xmpp_parsers::Jid) -> Element {let mut ping = Iq::from_get(id, Ping);ping.to = Some(from.clone().into_domain_jid());ping.from = Some(from);ping.into()}pub fn make_pong(id: &str, from: xmpp_parsers::Jid, to: Option<xmpp_parsers::Jid>) -> Element {let mut pong = Iq::from_result(id, None as Option<Roster>);pong.from = Some(from);pong.to = to;pong.into()} - replacement in src/xmpp/mod.rs at line 150
/// Returns false on error to disconnectfn xmpp_processing(&mut self, event: &Event) -> bool {fn xmpp_processing(mut self,event: &Event,) -> impl Future<Item = Self, Error = std::rc::Rc<config::Account>> { - replacement in src/xmpp/mod.rs at line 160
if let Some(iq) = stanza.clone().try_into().ok() as Option<xmpp_parsers::iq::Iq> {if let Some((_, jid)) =self.state.data.pending_add_roster_ids.remove_entry(&iq.id){if let xmpp_parsers::iq::IqType::Result(None) = iq.payload {if self.state.data.roster.contains_key(&jid) {info!("Jid {} updated to roster", jid);if let Some(iq) = stanza.try_into().ok() as Option<xmpp_parsers::iq::Iq> {if let Some(id) = iq.id {if let Some((_, jid)) =self.state.data.pending_add_roster_ids.remove_entry(&id){if let xmpp_parsers::iq::IqType::Result(None) = iq.payload {if self.state.data.roster.contains_key(&jid) {info!("Jid {} updated to roster", jid);} else {info!("Jid {} added in roster", jid);self.state.data.roster.insert(jid.clone(),(xmpp_parsers::roster::Subscription::None,xmpp_parsers::roster::Ask::None,),);}self.process_jid(&jid); - replacement in src/xmpp/mod.rs at line 180
info!("Jid {} added in roster", jid);self.state.data.roster.insert(jid.clone(),(xmpp_parsers::roster::Subscription::None,xmpp_parsers::roster::Ask::None,),warn!("Wrong payload when adding {} to roster: {:?}",jid, iq.payload - edit in src/xmpp/mod.rs at line 185
self.process_jid(&jid);} else {warn!("Wrong payload when adding {} to roster: {:?}",jid, iq.payload); - replacement in src/xmpp/mod.rs at line 187
match iq.payload {xmpp_parsers::iq::IqType::Set(element) => {if let Some(roster) =element.try_into().ok() as Option<xmpp_parsers::roster::Roster>{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;} else {info!("Add {} to roster", i.jid);self.state.data.roster.insert(i.jid.clone(), (i.subscription, i.ask));}self.process_jid(&i.jid);if let xmpp_parsers::iq::IqType::Set(element) = iq.payload {if let Some(roster) =element.try_into().ok() as Option<xmpp_parsers::roster::Roster>{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;} else {info!("Add {} to roster", i.jid);self.state.data.roster.insert(i.jid.clone(), (i.subscription, i.ask)); - edit in src/xmpp/mod.rs at line 204
self.process_jid(&i.jid); - edit in src/xmpp/mod.rs at line 207[3.8466]→[3.1187:1376](∅→∅),[3.1376]→[3.1364:1666](∅→∅),[3.1666]→[2.1764:1808](∅→∅),[2.1808]→[3.1709:1988](∅→∅),[3.1709]→[3.1709:1988](∅→∅),[3.1988]→[3.1376:1419](∅→∅),[3.1376]→[3.1376:1419](∅→∅)
xmpp_parsers::iq::IqType::Error(e) => {error!("iq error: {:?}", e);return false;}xmpp_parsers::iq::IqType::Get(element) => {if let Some(_ping) =element.try_into().ok() as Option<xmpp_parsers::ping::Ping>{let pong = stanzas::make_pong(&iq.id,self.state.client.jid.clone(),iq.from,);self.state.data.send_queue.push_back(pong);}}_ => (), // ignore - edit in src/xmpp/mod.rs at line 208
} 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 209
truefuture::ok(self) - replacement in src/xmpp/mod.rs at line 211
Event::Online => true,Event::Online => future::ok(self), - replacement in src/xmpp/mod.rs at line 214
falsefuture::err(self.account) - replacement in src/xmpp/mod.rs at line 306
let mut xmpp = XmppConnection {let xmpp = XmppConnection { - replacement in src/xmpp/mod.rs at line 310
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))))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)),)), - replacement in src/xmpp/mod.rs at line 330
} else {future::err((xmpp.account, Ok(Either::A(b))))}Err(account) => {future::err((account, Ok(Either::A(b))))}}))as Box<dyn Future<Item = _, Error = _>> - replacement in src/xmpp/mod.rs at line 336
future::err((account, Ok(Either::A(b))))Box::new(future::err((account, Ok(Either::A(b))))) - replacement in src/xmpp/mod.rs at line 340
if let Some(client) = a.into_inner() {Box::new(if let Some(client) = a.into_inner() { - replacement in src/xmpp/mod.rs at line 350
}}) - replacement in src/xmpp/mod.rs at line 354
future::err((account, Ok(Either::A(b))))Box::new(future::err((account, Ok(Either::A(b))))) - replacement in src/xmpp/mod.rs at line 357
if let Some(client) = a.into_inner() {Box::new(if let Some(client) = a.into_inner() { - replacement in src/xmpp/mod.rs at line 367
}}) - replacement in src/xmpp/mod.rs at line 400
if iq.id == id_init_roster {match iq.payload {xmpp_parsers::iq::IqType::Error(_e) => {error!("Get error instead of roster");Err(())}xmpp_parsers::iq::IqType::Result(Some(result)) => {match result.try_into() as Result<xmpp_parsers::roster::Roster, _> {Ok(roster) => {self.state.data.roster.clear();info!("Got first roster:");for i in roster.items {info!(" >>> {:?}", i);self.state.data.roster.insert(i.jid, (i.subscription, i.ask));if let Some(id) = iq.id {if id == id_init_roster {match iq.payload {xmpp_parsers::iq::IqType::Error(_e) => {error!("Get error instead of roster");Err(())}xmpp_parsers::iq::IqType::Result(Some(result)) => {match result.try_into()as Result<xmpp_parsers::roster::Roster, _>{Ok(roster) => {self.state.data.roster.clear();info!("Got first roster:");for i in roster.items {info!(" >>> {:?}", i);self.state.data.roster.insert(i.jid, (i.subscription, i.ask));}Ok(true) - replacement in src/xmpp/mod.rs at line 423
Ok(true)}Err(e) => {error!("Cann't parse roster: {}", e);Err(())Err(e) => {error!("Cann't parse roster: {}", e);Err(())} - replacement in src/xmpp/mod.rs at line 429
}_ => {error!("Unknown result of roster");Err(())_ => {error!("Unknown result of roster");Err(())} - edit in src/xmpp/mod.rs at line 434
} else {Ok(false) - replacement in src/xmpp/mod.rs at line 438
Ok(false)error!("Iq stanza without id");Err(()) - edit in src/xmpp/mod.rs at line 614
XmppCommand::Ping => {self.state.data.counter += 1;let id_ping = format!("id_ping{}", self.state.data.counter);let ping = stanzas::make_ping(&id_ping, self.state.client.jid.clone());self.state.data.send_queue.push_back(ping);} - edit in src/xmpp/mod.rs at line 615[3.1823]→[3.12359:12365](∅→∅),[3.23196]→[3.12359:12365](∅→∅),[3.801]→[3.12365:12366](∅→∅),[3.12365]→[3.12365:12366](∅→∅),[3.12366]→[3.4594:4706](∅→∅),[3.4706]→[3.12601:12655](∅→∅),[3.12601]→[3.12601:12655](∅→∅),[3.12737]→[3.1420:1445](∅→∅),[3.1445]→[3.4707:4769](∅→∅),[3.4769]→[3.1492:1613](∅→∅),[3.1492]→[3.1492:1613](∅→∅),[3.1613]→[3.4770:4836](∅→∅),[3.4836]→[3.1792:1823](∅→∅),[3.1792]→[3.1792:1823](∅→∅),[3.1823]→[3.4837:4925](∅→∅),[3.1269]→[3.13299:13300](∅→∅),[3.4925]→[3.13299:13300](∅→∅),[3.1982]→[3.13299:13300](∅→∅),[3.13299]→[3.13299:13300](∅→∅),[3.13300]→[3.4926:4997](∅→∅),[3.4997]→[3.2029:2234](∅→∅),[3.13346]→[3.2029:2234](∅→∅),[3.2234]→[3.4998:5020](∅→∅),[3.5020]→[3.2263:2368](∅→∅),[3.2263]→[3.2263:2368](∅→∅),[3.2368]→[3.5021:5042](∅→∅)
}fn shutdown(self) -> impl Future<Item = (), Error = failure::Error> {info!("Shutdown connection");let XmppConnection { account, state } = self;stream::iter_ok(state.data.mucs.values().map(std::clone::Clone::clone).collect::<Vec<_>>(),).fold(state, move |XmppState { client, data }, muc_jid| {let muc_presence =stanzas::make_muc_presence_leave(account.jid.clone(), muc_jid.clone());info!("Sending muc leave presence... {:?}", muc_presence);use tokio::prelude::Sink;client.send(Packet::Stanza(muc_presence)).map_err(|e| {error!("Error on send muc presence: {}", e);e}).and_then(|client| future::ok(XmppState { client, data }))}).map(|_| ()) - edit in src/xmpp/mod.rs at line 673
Ping, - replacement in src/xmpp/mod.rs at line 722
error!("Command receiver is gone");future::ok(future::Loop::Break(Some(conn)))future::err(format_err!("Command receiver is gone")) - replacement in src/xmpp/mod.rs at line 735
future::ok(future::Loop::Break(Some(conn)))future::ok(future::Loop::Break(())) - replacement in src/xmpp/mod.rs at line 738
Err(_) => {error!("Command receiver is broken");future::ok(future::Loop::Break(Some(conn)))}Err(_) => future::err(format_err!("Command receiver is broken")), - replacement in src/xmpp/mod.rs at line 761
future::ok(future::Loop::Break(None))future::ok(future::Loop::Break(())) - edit in src/xmpp/mod.rs at line 768
}).and_then(|opt_conn| {if let Some(conn) = opt_conn {Box::new(conn.shutdown()) as Box<dyn Future<Item = (), Error = _>>} else {Box::new(future::ok(()))} - replacement in src/main.rs at line 40
.map_err(std::convert::Into::into).map_err(|e| e.into()) - replacement in src/main.rs at line 66
.map_err(std::convert::Into::into).and_then(|s| std::str::FromStr::from_str(s).map_err(std::convert::Into::into)).map_err(|e| e.into()).and_then(|s| {std::str::FromStr::from_str(s).map_err(|e: xmpp_parsers::JidParseError| e.into())}) - replacement in src/main.rs at line 77
.map(|h| h.to_str().map(std::string::ToString::to_string));.map(|h| h.to_str().map(|s| s.to_string())); - replacement in src/main.rs at line 86
.map_err(std::convert::Into::into),.map_err(|e| e.into()), - replacement in src/main.rs at line 114
.map_err(std::convert::Into::into),.map_err(|e| e.into()), - replacement in src/main.rs at line 122
.map_err(std::convert::Into::into),.map_err(|e| e.into()), - replacement in src/main.rs at line 153
.map_err(std::convert::Into::into),.map_err(|e| e.into()), - replacement in src/main.rs at line 161
.map_err(std::convert::Into::into),.map_err(|e| e.into()), - replacement in src/main.rs at line 173
.map_err(std::convert::Into::into),.map_err(|e| e.into()), - replacement in src/main.rs at line 232
.serve(MakeServiceCmd {cmd_send: cmd_send.clone(),}).serve(MakeServiceCmd { cmd_send }) - edit in src/main.rs at line 238
if let Some(ping) = config.account.ping {let ping = tokio::timer::Interval::new_interval(std::time::Duration::from_secs(ping));rt.spawn(ping.map_err(|e| {error!("Ping error: {}", e);}).for_each(move |_| {cmd_send.clone().send(XmppCommand::Ping).map_err(|e| {error!("Ping command error: {}", e);}).map(|_| ())}).select(ctrl_c.clone().map(|_| ()).map_err(|e| error!("ping server error: {}", e)),).map(|_| ()).map_err(|_| ()),);} - edit in src/config.rs at line 0
use std::collections::HashMap; - edit in src/config.rs at line 9
#[serde(default, deserialize_with = "deserialize_jid_map")]pub chatrooms: HashMap<String, xmpp_parsers::Jid>,pub ping: Option<u64>, - edit in src/config.rs at line 35
}fn deserialize_jid_map<'de, D>(deserializer: D,) -> Result<HashMap<String, xmpp_parsers::Jid>, D::Error>whereD: serde::Deserializer<'de>,{use serde::Deserialize;let s = HashMap::<String, String>::deserialize(deserializer)?;let size = s.len();s.into_iter().map(|(k, v)| (k, std::str::FromStr::from_str(&v))).take_while(|(_k, r)| r.is_ok()).fold(Ok(HashMap::with_capacity(size)), |res, (k, r)| match res {Ok(mut res) => match r {Ok(v) => {res.insert(k, v);Ok(res)}Err(e) => Err(e),},Err(e) => Err(e),}).map_err(serde::de::Error::custom) - replacement in README.md at line 0
### XMPP client daemon# XMPP client daemon## XMPP### XMPP CoreEnsures granted subscription before delivering messages - replacement in README.md at line 8
#### Sending messages### XEPs#### XEP-0045: Multi-User ChatEnters to all MUC in `account.chatrooms` at start.#### XEP-0199: XMPP Ping - edit in README.md at line 16
Sends ping each `account.ping` seconds to XMPP server.Answers to incoming pings.## HTTP API### Sending messages - replacement in README.md at line 28
#### Sending messages to MUC### Sending messages to MUC - replacement in Cargo.toml at line 15
toml = "0.5"toml = "0.4" - replacement in Cargo.toml at line 21
xmpp-parsers = "0.13"xmpp-parsers = "0.12.2" - edit in Cargo.lock at line 0
# This file is automatically @generated by Cargo.# It is not intended for manual editing. - replacement in Cargo.lock at line 5
"libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 10
version = "0.6.10"version = "0.6.9" - replacement in Cargo.lock at line 13
"memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)","memchr 2.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 42
"libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 54
version = "0.3.14"version = "0.3.13" - replacement in Cargo.lock at line 59
"cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)","cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 70
"cc 1.0.31 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)","cc 1.0.29 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 100
version = "0.7.0"version = "0.7.2" - replacement in Cargo.lock at line 129
version = "0.4.12"version = "0.4.11" - replacement in Cargo.lock at line 143
version = "1.0.31"version = "1.0.29" - replacement in Cargo.lock at line 148
version = "0.1.7"version = "0.1.6" - replacement in Cargo.lock at line 189
"libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 197
"libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 201
name = "crossbeam-deque"version = "0.7.1"name = "crossbeam"version = "0.6.0" - edit in Cargo.lock at line 205
"cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)","crossbeam-channel 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)","crossbeam-deque 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)", - edit in Cargo.lock at line 209
"crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)","lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)","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)",][[package]]name = "crossbeam-channel"version = "0.3.8"source = "registry+https://github.com/rust-lang/crates.io-index"dependencies = [ - edit in Cargo.lock at line 221
"smallvec 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 225[3.13840]→[3.13840:13865](∅→∅),[3.13840]→[3.13840:13865](∅→∅),[3.13840]→[3.13840:13865](∅→∅),[3.13840]→[3.13840:13865](∅→∅),[3.13840]→[3.13840:13865](∅→∅),[3.13840]→[3.13840:13865](∅→∅),[3.13840]→[3.13840:13865](∅→∅),[3.13840]→[3.13840:13865](∅→∅),[3.13840]→[3.13840:13865](∅→∅),[3.13840]→[3.13840:13865](∅→∅),[3.13840]→[3.13840:13865](∅→∅),[3.13840]→[3.13840:13865](∅→∅),[3.13840]→[3.13840:13865](∅→∅),[3.13840]→[3.13840:13865](∅→∅),[3.13840]→[3.13840:13865](∅→∅),[3.13840]→[3.13840:13865](∅→∅),[3.13840]→[3.13840:13865](∅→∅),[3.13865]→[3.22758:22776](∅→∅)
name = "crossbeam-epoch"version = "0.7.1"name = "crossbeam-deque"version = "0.6.3" - replacement in Cargo.lock at line 229
"arrayvec 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)","cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)","crossbeam-epoch 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - edit in Cargo.lock at line 231[3.22936]→[3.15657:15735](∅→∅),[3.4208]→[3.14273:14426](∅→∅),[3.15735]→[3.14273:14426](∅→∅),[3.7630]→[3.14273:14426](∅→∅),[3.1986]→[3.14273:14426](∅→∅),[3.7764]→[3.14273:14426](∅→∅),[3.14273]→[3.14273:14426](∅→∅)
"lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)","memoffset 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)","scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 234
name = "crossbeam-queue"version = "0.1.2"name = "crossbeam-epoch"version = "0.7.1" - edit in Cargo.lock at line 238
"arrayvec 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)","cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - edit in Cargo.lock at line 241
"lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)","memoffset 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)","scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 251
"cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)","lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)","cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)","lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 284
version = "0.8.17"version = "0.8.15" - replacement in Cargo.lock at line 287
"cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)","cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 292
version = "0.6.1"version = "0.6.0" - replacement in Cargo.lock at line 298
"regex 1.1.2 (registry+https://github.com/rust-lang/crates.io-index)","regex 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 307
"backtrace 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)","backtrace 0.3.13 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 315
"backtrace 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)","backtrace 0.3.13 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 326
"syn 0.15.29 (registry+https://github.com/rust-lang/crates.io-index)","syn 0.15.26 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 378
"new_debug_unreachable 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)","new_debug_unreachable 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 392
"num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)","num_cpus 1.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 405
version = "0.1.17"version = "0.1.16" - replacement in Cargo.lock at line 409
"bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)","bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 412
"http 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)","http 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 417
"tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)","tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 434
"libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 440
version = "0.1.16"version = "0.1.15" - replacement in Cargo.lock at line 443
"bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)","bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 463
version = "0.12.25"version = "0.12.23" - replacement in Cargo.lock at line 466
"bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)","bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 469
"h2 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)","http 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)","h2 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)","http 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", - edit in Cargo.lock at line 476
"rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 477
"tokio 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)","tokio 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 479
"tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)","tokio-reactor 0.1.9 (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)", - replacement in Cargo.lock at line 482
"tokio-threadpool 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)","tokio-threadpool 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 507
"libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 554
version = "1.3.0"version = "1.2.0" - replacement in Cargo.lock at line 564
version = "0.2.50"version = "0.2.48" - replacement in Cargo.lock at line 569
version = "0.5.2"version = "0.4.2" - replacement in Cargo.lock at line 586
"cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)","cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 591
version = "0.1.2"version = "0.1.1" - replacement in Cargo.lock at line 594
"linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)","linked-hash-map 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 609
"serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)","serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)","serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)","serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)","serde_derive 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)","serde_json 1.0.38 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 624
version = "2.2.0"version = "2.1.3" - edit in Cargo.lock at line 626
dependencies = ["cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)",] - replacement in Cargo.lock at line 643
"quick-xml 0.13.3 (registry+https://github.com/rust-lang/crates.io-index)","quick-xml 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 656
"libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 670
"libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 690
"lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)","lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 693
"openssl 0.10.20 (registry+https://github.com/rust-lang/crates.io-index)","openssl 0.10.16 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 695
"openssl-sys 0.9.43 (registry+https://github.com/rust-lang/crates.io-index)","schannel 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)","openssl-sys 0.9.40 (registry+https://github.com/rust-lang/crates.io-index)","schannel 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 699
"tempfile 3.0.7 (registry+https://github.com/rust-lang/crates.io-index)","tempfile 3.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 707
"cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)","cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 714
version = "1.0.3"version = "1.0.1" - edit in Cargo.lock at line 716
dependencies = ["unreachable 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",] - replacement in Cargo.lock at line 740
version = "1.10.0"version = "1.9.0" - replacement in Cargo.lock at line 743
"libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 753
version = "0.10.20"version = "0.10.16" - replacement in Cargo.lock at line 757
"cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)","cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 759
"lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)","openssl-sys 0.9.43 (registry+https://github.com/rust-lang/crates.io-index)","lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)","openssl-sys 0.9.40 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 771
version = "0.9.43"version = "0.9.40" - replacement in Cargo.lock at line 774
"cc 1.0.31 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)","cc 1.0.29 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", - edit in Cargo.lock at line 777
"rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 802
"libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 805
"smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)","smallvec 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 882
version = "0.13.3"version = "0.13.2" - replacement in Cargo.lock at line 885
"encoding_rs 0.8.17 (registry+https://github.com/rust-lang/crates.io-index)","encoding_rs 0.8.15 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 888
"memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)","memchr 2.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 911
"libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 922
"libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 928
"rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)","rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)","rand_os 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)","rand_pcg 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 977
"libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 984
version = "0.1.3"version = "0.1.2" - replacement in Cargo.lock at line 989
"libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 997
version = "0.1.2"version = "0.1.1" - replacement in Cargo.lock at line 1000
"autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)","rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)","rand_core 0.3.1 (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 1035
version = "1.1.2"version = "1.1.0" - replacement in Cargo.lock at line 1038
"aho-corasick 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)","memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)","aho-corasick 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)","memchr 2.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1096
"rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)","rand_os 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1103
version = "0.1.15"version = "0.1.14" - replacement in Cargo.lock at line 1106
"lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)","lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1122
"libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1133
"libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1154
"env_logger 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)","env_logger 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1156
"hyper 0.12.25 (registry+https://github.com/rust-lang/crates.io-index)","hyper 0.12.23 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1159
"serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)","serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)","tokio 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)","serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)","serde_derive 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)","tokio 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1165
"toml 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)","toml 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1167
"xmpp-parsers 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)","xmpp-parsers 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1172
version = "1.0.89"version = "1.0.87" - replacement in Cargo.lock at line 1177
version = "1.0.89"version = "1.0.87" - replacement in Cargo.lock at line 1182
"syn 0.15.29 (registry+https://github.com/rust-lang/crates.io-index)","syn 0.15.26 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1187
version = "1.0.39"version = "1.0.38" - replacement in Cargo.lock at line 1192
"serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)","serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1200
"block-buffer 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)","block-buffer 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1211
"block-buffer 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)","block-buffer 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1222
"block-buffer 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)","block-buffer 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1231
version = "0.1.8"version = "0.1.7" - replacement in Cargo.lock at line 1235
"libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1250
version = "0.6.9"version = "0.6.8" - edit in Cargo.lock at line 1252
dependencies = ["unreachable 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",] - replacement in Cargo.lock at line 1261
"cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)","cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1282
"lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)","new_debug_unreachable 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)","lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)","new_debug_unreachable 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1286
"serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)","serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1330
version = "0.15.29"version = "0.15.26" - replacement in Cargo.lock at line 1353
"syn 0.15.29 (registry+https://github.com/rust-lang/crates.io-index)","syn 0.15.26 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1359
version = "3.0.7"version = "3.0.6" - replacement in Cargo.lock at line 1362
"cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)","cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1393
"libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1411
"lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)","lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1419
"libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1426
version = "0.1.17"version = "0.1.15" - replacement in Cargo.lock at line 1429
"bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)","bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1432
"num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)","num_cpus 1.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1434
"tokio-current-thread 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)","tokio-current-thread 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1436
"tokio-fs 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)","tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)","tokio-reactor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)","tokio-sync 0.1.4 (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-sync 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1441
"tokio-threadpool 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)","tokio-threadpool 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", - edit in Cargo.lock at line 1443
"tokio-trace-core 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1460
"bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)","bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1462
"tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)","tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1467
version = "0.1.5"version = "0.1.4" - replacement in Cargo.lock at line 1485
version = "0.1.6"version = "0.1.5" - replacement in Cargo.lock at line 1489
"tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)","tokio-threadpool 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)","tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)","tokio-threadpool 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1495
version = "0.1.12"version = "0.1.11" - replacement in Cargo.lock at line 1498
"bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)","bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1505
version = "0.1.9"version = "0.1.8" - replacement in Cargo.lock at line 1510
"lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)","lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1513
"num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)","num_cpus 1.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1517
"tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)","tokio-sync 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)","tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1526
"libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1529
"signal-hook 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)","signal-hook 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1531
"tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)","tokio-reactor 0.1.9 (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)", - replacement in Cargo.lock at line 1538
version = "0.1.4"version = "0.1.1" - edit in Cargo.lock at line 1541
"fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1549
"bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)","bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1553
"tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)","tokio-reactor 0.1.9 (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)", - replacement in Cargo.lock at line 1559
version = "0.1.12"version = "0.1.11" - replacement in Cargo.lock at line 1562
"crossbeam-deque 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)","crossbeam-queue 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)","crossbeam 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)","crossbeam-channel 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)","crossbeam-deque 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1568
"num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)","num_cpus 1.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1592
"tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)","tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", - edit in Cargo.lock at line 1596
name = "tokio-trace-core"version = "0.1.0"source = "registry+https://github.com/rust-lang/crates.io-index"dependencies = ["lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",][[package]] - replacement in Cargo.lock at line 1600
"bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)","bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1605
"tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)","tokio-reactor 0.1.9 (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)", - replacement in Cargo.lock at line 1614
"bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)","bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1617
"libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1622
"tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)","tokio-reactor 0.1.9 (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)", - replacement in Cargo.lock at line 1631
"bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)","bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1636
"quick-xml 0.13.3 (registry+https://github.com/rust-lang/crates.io-index)","quick-xml 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1638
"tokio 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)","tokio 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1640
"tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)","tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1650
version = "0.5.0"version = "0.4.10" - replacement in Cargo.lock at line 1653
"serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)","serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1665
"lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)","lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1668
"smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)","smallvec 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1671
"tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)","tokio-reactor 0.1.9 (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)", - replacement in Cargo.lock at line 1684
"cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)","cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1688
"lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)","lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1690
"lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)","lru-cache 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1692
"smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)","tokio 0.1.17 (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.15 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1707
"cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)","cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - replacement in Cargo.lock at line 1733
"smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)","smallvec 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)", - edit in Cargo.lock at line 1752
name = "unreachable"version = "1.0.0"source = "registry+https://github.com/rust-lang/crates.io-index"dependencies = ["void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",][[package]] - edit in Cargo.lock at line 1790
name = "void"version = "1.0.2"source = "registry+https://github.com/rust-lang/crates.io-index"[[package]] - edit in Cargo.lock at line 1908
[[package]]name = "xmpp-parsers"version = "0.13.0"source = "registry+https://github.com/rust-lang/crates.io-index"dependencies = ["base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)","blake2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)","chrono 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)","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)",] - replacement in Cargo.lock at line 1910
"checksum aho-corasick 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)" = "81ce3d38065e618af2d7b77e10c5ad9a069859b4be3c2250f674af3840d9c8a5""checksum aho-corasick 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)" = "1e9a933f4e58658d7b12defcf96dc5c720f20832deebe3e0a19efd3b6aaeeb9e" - replacement in Cargo.lock at line 1916
"checksum backtrace 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)" = "cd5a90e2b463010cd0e0ce9a11d4a9d5d58d9f41d4a6ba3dcaf9e68b466e88b4""checksum backtrace 0.3.13 (registry+https://github.com/rust-lang/crates.io-index)" = "b5b493b66e03090ebc4343eb02f94ff944e0cbc9ac6571491d170ba026741eb5" - replacement in Cargo.lock at line 1921
"checksum block-buffer 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "49665c62e0e700857531fa5d3763e91b539ff1abeebd56808d378b495870d60d""checksum block-buffer 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "509de513cca6d92b6aacf9c61acfe7eaa160837323a81068d690cc1f8e5740da" - replacement in Cargo.lock at line 1925
"checksum bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)" = "206fdffcfa2df7cbe15601ef46c813fce0965eb3286db6b56c583b814b51c81c""checksum bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)" = "40ade3d27603c2cb345eb0912aec461a6dec7e06a4ae48589904e808335c7afa" - replacement in Cargo.lock at line 1927
"checksum cc 1.0.31 (registry+https://github.com/rust-lang/crates.io-index)" = "c9ce8bb087aacff865633f0bd5aeaed910fe2fe55b55f4739527f2e023a2e53d""checksum cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "11d43355396e872eefb45ce6342e4374ed7bc2b3a502d1b28e36d6e23c05d1f4""checksum cc 1.0.29 (registry+https://github.com/rust-lang/crates.io-index)" = "4390a3b5f4f6bce9c1d0c00128379df433e53777fdd30e92f16a529332baec4e""checksum cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "082bb9b28e00d3c9d39cc03e64ce4cea0f1bb9b3fde493f0cbc008472d22bdf4" - replacement in Cargo.lock at line 1934
"checksum crossbeam-deque 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b18cd2e169ad86297e6bc0ad9aa679aee9daa4f19e8163860faf7c164e4f5a71""checksum crossbeam 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ad4c7ea749d9fb09e23c5cb17e3b70650860553a0e2744e38446b1803bf7db94""checksum crossbeam-channel 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)" = "0f0ed1a4de2235cabda8558ff5840bffb97fcb64c97827f354a451307df5f72b""checksum crossbeam-deque 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)" = "05e44b8cf3e1a625844d1750e1f7820da46044ff6d28f4d43e455ba3e5bb2c13" - edit in Cargo.lock at line 1938
"checksum crossbeam-queue 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7c979cd6cfe72335896575c6b5688da489e420d36a27a0b9eb0c73db574b4a4b" - replacement in Cargo.lock at line 1942
"checksum encoding_rs 0.8.17 (registry+https://github.com/rust-lang/crates.io-index)" = "4155785c79f2f6701f185eb2e6b4caf0555ec03477cb4c70db67b465311620ed""checksum env_logger 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b61fa891024a945da30a9581546e8cfaf5602c7b3f4c137a2805cf388f92075a""checksum encoding_rs 0.8.15 (registry+https://github.com/rust-lang/crates.io-index)" = "fd251508d65030820f3a4317af2248180db337fdb25d89967956242580277813""checksum env_logger 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "afb070faf94c85d17d50ca44f6ad076bce18ae92f0037d350947240a36e9d42e" - replacement in Cargo.lock at line 1958
"checksum h2 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)" = "910a5e7be6283a9c91b3982fa5188368c8719cce2a3cf3b86048673bf9d9c36b""checksum h2 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)" = "ddb2b25a33e231484694267af28fec74ac63b5ccf51ee2065a5e313b834d836e" - replacement in Cargo.lock at line 1961
"checksum http 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)" = "fe67e3678f2827030e89cc4b9e7ecd16d52f132c0b940ab5005f88e821500f6a""checksum http 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)" = "1a10e5b573b9a0146545010f50772b9e8b1dd0a256564cc4307694c68832a2f5" - replacement in Cargo.lock at line 1964
"checksum hyper 0.12.25 (registry+https://github.com/rust-lang/crates.io-index)" = "7d5b6658b016965ae301fa995306db965c93677880ea70765a84235a96eae896""checksum hyper 0.12.23 (registry+https://github.com/rust-lang/crates.io-index)" = "860faf61a9957c9cb0e23e69f1c8290e92f6eb660fcdd1f2d6777043a2ae1a46" - replacement in Cargo.lock at line 1973
"checksum lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bc5729f27f159ddd61f4df6228e827e86643d4d3e7c32183cb30a1c08f604a14""checksum lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a374c89b9db55895453a74c1e38861d9deec0b01b405a82516e9d5de4820dea1" - replacement in Cargo.lock at line 1975
"checksum libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)" = "aab692d7759f5cd8c859e169db98ae5b52c924add2af5fbbca11d12fefb567c1""checksum linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "ae91b68aebc4ddb91978b11a1b02ddd8602a05ec19002801c5666000e05e0f83""checksum libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)" = "e962c7641008ac010fa60a7dfdc1712449f29c44ef2d4702394aea943ee75047""checksum linked-hash-map 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7860ec297f7008ff7a1e3382d7f7e1dcd69efc94751a2284bafc3d013c2aa939" - replacement in Cargo.lock at line 1979
"checksum lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "31e24f1ad8321ca0e8a1e0ac13f23cb668e6f5466c2c57319f6a5cf1cc8e3b1c""checksum lru-cache 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4d06ff7ff06f729ce5f4e227876cb88d10bc59cd4ae1e09fbb2bde15c850dc21" - replacement in Cargo.lock at line 1983
"checksum memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2efc7bc57c883d4a4d6e3246905283d8dae951bb3bd32f49d6ef297f546e1c39""checksum memchr 2.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "e1dd4eaac298c32ce07eb6ed9242eda7d82955b9170b7d6db59b2e02cc63fcb8" - replacement in Cargo.lock at line 1991
"checksum new_debug_unreachable 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "f40f005c60db6e03bae699e414c58bf9aa7ea02a2d0b9bfbcf19286cc4c82b30""checksum new_debug_unreachable 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0cdc457076c78ab54d5e0d6fa7c47981757f1e34dc39ff92787f217dede586c4" - replacement in Cargo.lock at line 1995
"checksum num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1a23f0ed30a54abaa0c7e83b1d2d87ada7c3c23078d1d87815af3e3b6385fbba""checksum num_cpus 1.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5a69d464bdc213aaaff628444e99578ede64e9c854025aa43b9796530afa9238" - replacement in Cargo.lock at line 1997
"checksum openssl 0.10.20 (registry+https://github.com/rust-lang/crates.io-index)" = "5a0d6b781aac4ac1bd6cafe2a2f0ad8c16ae8e1dd5184822a16c50139f8838d9""checksum openssl 0.10.16 (registry+https://github.com/rust-lang/crates.io-index)" = "ec7bd7ca4cce6dbdc77e7c1230682740d307d1218a87fb0349a571272be749f9" - replacement in Cargo.lock at line 1999
"checksum openssl-sys 0.9.43 (registry+https://github.com/rust-lang/crates.io-index)" = "33c86834957dd5b915623e94f2f4ab2c70dd8f6b70679824155d5ae21dbd495d""checksum openssl-sys 0.9.40 (registry+https://github.com/rust-lang/crates.io-index)" = "1bb974e77de925ef426b6bc82fce15fd45bdcbeb5728bffcfc7cdeeb7ce1c2d6" - replacement in Cargo.lock at line 2013
"checksum quick-xml 0.13.3 (registry+https://github.com/rust-lang/crates.io-index)" = "22fcc48ecef4609b243e8c01ff4695d08ee0fc9d5bdbc54630e1a5fe8bb40953""checksum quick-xml 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)" = "98d8d2d671bd29c6122a98b45ce3106391e89ba378f731274de677f1eff06e5f" - replacement in Cargo.lock at line 2024
"checksum rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071""checksum rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44""checksum rand_os 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "b7c690732391ae0abafced5015ffb53656abfaec61b342290e5eb56b286a679d""checksum rand_pcg 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "086bd09a33c7044e56bb44d5bdde5a60e7f119a9e95b0775f545de759a32fe05" - replacement in Cargo.lock at line 2030
"checksum regex 1.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "53ee8cfdddb2e0291adfb9f13d31d3bbe0a03c9a402c01b1e24188d86c35b24f""checksum regex 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "37e7cbbd370869ce2e8dff25c7018702d10b21a20ef7135316f8daecd6c25b7f" - replacement in Cargo.lock at line 2038
"checksum schannel 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)" = "f2f6abf258d99c3c1c5c2131d99d064e94b7b3dd5f416483057f308fea253339""checksum schannel 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)" = "0e1a231dc10abf6749cfa5d7767f25888d484201accbd919b66ab5413c502d56" - replacement in Cargo.lock at line 2044
"checksum serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)" = "92514fb95f900c9b5126e32d020f5c6d40564c27a5ea6d1d7d9f157a96623560""checksum serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)" = "bb6eabf4b5914e88e24eea240bb7c9f9a2cbc1bbbe8d961d381975ec3c6b806c""checksum serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)" = "5a23aa71d4a4d43fdbfaac00eff68ba8a06a51759a89ac3304323e800c4dd40d""checksum serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)" = "2e20fde37801e83c891a2dc4ebd3b81f0da4d1fb67a9e0a2a3b921e2536a58ee""checksum serde_derive 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)" = "633e97856567e518b59ffb2ad7c7a4fd4c5d91d9c7f32dd38a27b2bf7e8114ea""checksum serde_json 1.0.38 (registry+https://github.com/rust-lang/crates.io-index)" = "27dce848e7467aa0e2fcaf0a413641499c0b745452aaca1194d24dedde9e13c9" - replacement in Cargo.lock at line 2050
"checksum signal-hook 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "97a47ae722318beceb0294e6f3d601205a1e6abaa4437d9d33e3a212233e3021""checksum signal-hook 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "1f272d1b7586bec132ed427f532dd418d8beca1ca7f2caf7df35569b1415a4b4" - replacement in Cargo.lock at line 2053
"checksum smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)" = "c4488ae950c49d403731982257768f48fada354a5203fe81f9bb6f43ca9002be""checksum smallvec 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)" = "88aea073965ab29f6edb5493faf96ad662fb18aa9eeb186a3b7057951605ed15" - replacement in Cargo.lock at line 2063
"checksum syn 0.15.29 (registry+https://github.com/rust-lang/crates.io-index)" = "1825685f977249735d510a242a6727b46efe914bb67e38d30c071b1b72b1d5c2""checksum syn 0.15.26 (registry+https://github.com/rust-lang/crates.io-index)" = "f92e629aa1d9c827b2bb8297046c1ccffc57c99b947a680d3ccff1f136a3bee9" - replacement in Cargo.lock at line 2066
"checksum tempfile 3.0.7 (registry+https://github.com/rust-lang/crates.io-index)" = "b86c784c88d98c801132806dadd3819ed29d8600836c4088e855cdf3e178ed8a""checksum tempfile 3.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "37daa55a7240c4931c84559f03b3cad7d19535840d1c4a0cc4e9b2fb0dcf70ff" - replacement in Cargo.lock at line 2073
"checksum tokio 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)" = "1021bb1f4150435ab8f222eb7ed37c60b2d57037def63ba43085a79f387512d7""checksum tokio 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)" = "e0500b88064f08bebddd0c0bed39e19f5c567a5f30975bee52b0c0d3e2eeb38c" - replacement in Cargo.lock at line 2076
"checksum tokio-current-thread 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "c756b04680eea21902a46fca4e9f410a2332c04995af590e07ff262e2193a9a3""checksum tokio-current-thread 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "331c8acc267855ec06eb0c94618dcbbfea45bed2d20b77252940095273fb58f6" - replacement in Cargo.lock at line 2078
"checksum tokio-fs 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "3fe6dc22b08d6993916647d108a1a7d15b9cd29c4f4496c62b92c45b5041b7af""checksum tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)" = "5090db468dad16e1a7a54c8c67280c5e4b544f3d3e018f0b913b400261f85926""checksum tokio-reactor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "6af16bfac7e112bea8b0442542161bfc41cbfa4466b580bdda7d18cb88b911ce""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" - replacement in Cargo.lock at line 2082
"checksum tokio-sync 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "fda385df506bf7546e70872767f71e81640f1f251bdf2fd8eb81a0eaec5fe022""checksum tokio-sync 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3742b64166c1ee9121f1921aea5a726098458926a6b732d906ef23b1f3ef6f4f" - replacement in Cargo.lock at line 2084
"checksum tokio-threadpool 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)" = "742e511f6ce2298aeb86fc9ea0d8df81c2388c6ebae3dc8a7316e8c9df0df801""checksum tokio-threadpool 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)" = "c3fd86cb15547d02daa2b21aadaf4e37dee3368df38a526178a5afa3c034d2fb" - edit in Cargo.lock at line 2087
"checksum tokio-trace-core 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "350c9edade9830dc185ae48ba45667a445ab59f6167ef6d0254ec9d2430d9dd3" - replacement in Cargo.lock at line 2090
"checksum toml 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "87c5890a989fa47ecdc7bcb4c63a77a82c18f306714104b1decfd722db17b39e""checksum toml 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)" = "758664fc71a3a69038656bee8b6be6477d2a6c315a6b81f7081f591bffa4111f" - edit in Cargo.lock at line 2102
"checksum unreachable 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "382810877fe448991dfc7f0dd6e3ae5d58088fd0ea5e35189655f84e6814fa56" - edit in Cargo.lock at line 2108
"checksum void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d" - edit in Cargo.lock at line 2123
"checksum xmpp-parsers 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c467bb13e01718be793cb7a1c3d38d0e9ba45898db306aa43e70657a8aa3c2f2"