Update dependencies
[?]
Oct 10, 2020, 11:52 AM
YQRUGY3BXF2WBZ2JJTPIQH72R34Q75YS6A6TZECNMQTGURAGTC3QCDependencies
- [2]
F5E5NQPAFix most clippy warnings - [3]
4IPZTMFIUpdate dependencies - [4]
LNUU5R56Support disco#info from XEP-0030 Service Discovery - [5]
BYJPYYSMProcess iq ping response - [6]
YTN366WASupport disco#items - [7]
QDHDTOLMStarting support for commands XEP-0050: Ad-Hoc Commands (there no support in xmpp_parsers still) - [8]
W6GSBP3ZAdd id for presence stanzas - [9]
U3UZTFCHRe-try to subscribe if not subscribed - [10]
LL3D5CXKStaring using element processor - [11]
CCLGGFKRMove out XmppConnection into own file - [12]
GVZ4JAR5Process self-presence with incoming stanza processor - [13]
SSOKGGCEUpdate dependencies - [14]
KORYGY74Set presence to account and MUC - [15]
LQXBWNFTRemove unneeded requirement - [16]
RRLRZTMRUse element processor for iq - [17]
AEH7WP42Make element processors static - [18]
DCMDASHVMention XEP-0050 and XEP-0203 support - [19]
OFLAP2G2Fix possible utf8 errors - [20]
SH3LIQ4SStarting commands support - [21]
PJV5HPIFStarting to imlements timeouts for iqs - [22]
ZT3YEIVXConsume connection on processing command - [23]
2THKW66MIgnore .orig files - [24]
PLWPCM47Add id to initital presence - [25]
JY4F7VBCUse element processor for incoming iq set - [26]
YEMBT7TBAdd support for XEP-0092: Software Version - [27]
6UKCVM6EUse new iq processng for initial roster - [28]
FVVPKFTLInitial commit - [29]
S754Y5DFRefactor IQ processing Always answer to set and get requests. Use XML encoding for stanzas. - [30]
WDCZNZOPFix rustdoc - [31]
ZFBPXPADCleanup timeouted iq requests with ping Output elapsed time. Refactor iq handling. - [32]
Z3NQEYVIRename IqSetHandler to IqResuestHandler as it should provide both get and set handling - [33]
H3RWXT2VCleanup most warnings - [34]
3DSOPLCGAdd rustdoc - [35]
VS6AHRWIMove XMPP to separate dir - [36]
7WM64CI7Implement all previous functionality - [37]
NXDEBFWRSwitch to tokio 0.2 and async - [38]
RQZCVDFDImplement applying timeout for expired iq await - [39]
DYRPAV6TUpdate dependencies - [40]
HDLI2X4HIgnore delayed XEP-0203 messages - [41]
5WHNHD42Update dependencies - [42]
GXQCDLYQUse element processor for incoming iq get - [*]
X6L47BHQUse different structure for established xmpp connection
Change contents
- replacement in src/xmpp/xmpp_connection.rs at line 3
use tokio_xmpp::{AsyncClient, Event};use tokio_xmpp::{AsyncClient, Event, Packet}; - edit in src/xmpp/xmpp_connection.rs at line 493
}Either::Right(((result, Either::Left(_)), _)) => {if let Ok(connection) = result {break Ok(connection);} - edit in src/xmpp/xmpp_connection.rs at line 494
Either::Right(((result, Either::Left(_)), _)) => match result {Ok(connection) => break Ok(connection),Err(account) => {}}, - edit in src/xmpp/xmpp_connection.rs at line 704
let account = self.account.clone(); - replacement in src/xmpp/xmpp_connection.rs at line 747
Either::Left((stop, _)) => break (Ok(self), Either::Right(stop)),Either::Left((stop, s)) => break (Ok(self), Either::Right(stop)), - replacement in src/xmpp/xmpp_connection.rs at line 753
if self.xmpp_processing(&event) {if (self.xmpp_processing(&event)) { - replacement in src/xmpp/xmpp_connection.rs at line 842
Either::Left(((), _)) => None,Either::Left(((), send_future)) => None, - edit in src/xmpp/xmpp_connection.rs at line 859
}}fn process_jid(&mut self, xmpp_to: &xmpp_parsers::Jid) {if let Some(ref mut mailbox) = self.state.data.outgoing_mailbox.get_mut(xmpp_to) {if !mailbox.is_empty() {if let Some(ref mut rdata) = self.state.data.roster.get_mut(&std::convert::From::from(xmpp_to.clone())){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.extend(mailbox.drain(..).map(|message| {stanzas::make_chat_message(xmpp_to.clone(), message)}),);} else if rdata.1 == xmpp_parsers::roster::Ask::None {info!("Not subscribed to {}", xmpp_to);self.state.data.counter += 1;let id_presence_subscribe =format!("id_presence_subscribe{}", self.state.data.counter);self.state.data.send_queue.push_back(stanzas::make_ask_subscribe(id_presence_subscribe,xmpp_to.clone(),));} else {warn!("Not subscribed to {}. Currently in {:?} state",xmpp_to, rdata.1);self.state.data.counter += 1;let id_presence_subscribe =format!("id_presence_subscribe{}", self.state.data.counter);self.state.data.send_queue.push_back(stanzas::make_ask_subscribe(id_presence_subscribe,xmpp_to.clone(),));}let sub_from = match rdata.0 {xmpp_parsers::roster::Subscription::From => true,xmpp_parsers::roster::Subscription::Both => true,_ => false,};if !sub_from {info!("Not subscription from {}", xmpp_to);self.state.data.counter += 1;let id_presence_subscribed =format!("id_presence_subscribed{}", self.state.data.counter);self.state.data.send_queue.push_back(stanzas::make_allow_subscribe(id_presence_subscribed,xmpp_to.clone(),));}} else {info!("Jid {} not in roster", xmpp_to);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,std::convert::From::from(xmpp_to.clone()),);info!("Adding jid {} to roster id {}", xmpp_to, id_add_roster);self.state.data.pending_ids.insert(id_add_roster,IqWait::new(60,AddRosterIqHandler {jid: std::convert::From::from(xmpp_to.clone()),},),);self.state.data.send_queue.push_back(add_roster);}} - edit in src/xmpp/xmpp_connection.rs at line 864
XmppCommand::Chat { xmpp_to, message } => {self.state.data.outgoing_mailbox.entry(xmpp_to.clone()).or_default().push(message);self.process_jid(&xmpp_to);}XmppCommand::Chatroom { muc_id, message } => {if let Some(muc) = self.state.data.mucs.get(&muc_id) {self.state.data.send_queue.push_back(stanzas::make_muc_message(muc.clone(), message));} else {error!("Not found MUC {}", muc_id);}}XmppCommand::ChatroomPresence {muc_id,show,message,} => {if let Some(muc) = self.state.data.mucs.get(&muc_id) {self.state.data.counter += 1;let id_presence = format!("id_presence{}", self.state.data.counter);self.state.data.send_queue.push_back(stanzas::make_muc_presence(&id_presence,self.account.jid.clone(),muc.clone(),Some(show),Some(message),));} else {error!("Not found MUC {}", muc_id);}} - edit in src/xmpp/xmpp_connection.rs at line 917
_ => todo!(), - replacement in src/xmpp/xmpp_connection.rs at line 945
Either::Right((Ok(_), stop_future)) => {self.state.data.mucs.insert(chatroom.0.clone(), chatroom.1.clone());Some(stop_future)}Either::Right((Ok(_), stop_future)) => Some(stop_future), - replacement in src/xmpp/mod.rs at line 2
use log::{info, warn};use log::{error, info, warn}; - edit in src/xmpp/mod.rs at line 14
struct XmppProcessState<F, S> {cmd_recv: S,signal: F,conn: MaybeXmppConnection,}impl<F, S> XmppProcessState<F, S> {fn new(cmd_recv: S, signal: F, conn: MaybeXmppConnection) -> XmppProcessState<F, S> {XmppProcessState {cmd_recv,signal,conn,}}} - replacement in src/xmpp/mod.rs at line 52
(Ok(_), Either::Right(None)) => break Ok(()),(Ok(conn), Either::Right(None)) => break Ok(()), - replacement in src/xmpp/mod.rs at line 62
(Err(_), Either::Right(None)) => break Ok(()),(Err(acc), Either::Right(None)) => break Ok(()), - replacement in src/xmpp/element_processor.rs at line 0
type Func<S, T, E> = dyn Fn(&mut S, E) -> T + Sync;pub struct Processor<S: 'static, T: 'static, E: Clone + 'static> {processors: Vec<Box<Func<S, Option<T>, E>>>,default: &'static Func<S, T, E>,}impl<S: 'static, T: 'static, E: Clone + 'static> Processor<S, T, E> {pub fn new<F>(f: &'static F) -> Processor<S, T, E>whereF: Fn(&mut S, E) -> T + Sync + 'static,{Processor {processors: vec![],default: f,}}pub fn register<F, A>(&mut self, f: &'static F)whereF: Fn(&mut S, A) -> T + Sync + 'static,A: std::convert::TryFrom<E>,{self.processors.push(Box::new(move |s, e: E| {use std::convert::TryInto;(e.try_into().ok() as Option<A>).map(|a| f(s, a))}));}pub fn process(&self, s: &mut S, e: E) -> T {for processor in self.processors.iter() {match processor(s, e.clone()) {Some(t) => return t,None => continue,}}(*self.default)(s, e)}}[3.11301]type Func<S, T, E> = dyn Fn(&mut S, E) -> T + Sync;pub struct Processor<S: 'static, T: 'static, E: Clone + 'static> {processors: Vec<Box<Func<S, Option<T>, E>>>,default: &'static Func<S, T, E>,}impl<S: 'static, T: 'static, E: Clone + 'static> Processor<S, T, E> {pub fn new<F>(f: &'static F) -> Processor<S, T, E>whereF: Fn(&mut S, E) -> T + Sync + 'static,{Processor {processors: vec![],default: f,}}pub fn register<F, A>(&mut self, f: &'static F)whereF: Fn(&mut S, A) -> T + Sync + 'static,A: std::convert::TryFrom<E>,{self.processors.push(Box::new(move |s, e: E| {use std::convert::TryInto;(e.try_into().ok() as Option<A>).map(|a| f(s, a))}));}pub fn process(&self, s: &mut S, e: E) -> T {for processor in self.processors.iter() {match processor(s, e.clone()) {Some(t) => return t,None => continue,}}(*self.default)(s, e)}} - edit in src/main.rs at line 34
#[allow(clippy::type_complexity)] - replacement in src/main.rs at line 97
.body(Body::from("Accepted".to_string())).body(Body::from(format!("Accepted"))) - replacement in src/main.rs at line 103
.body(Body::from("Cann't send command".to_string())).body(Body::from(format!("Cann't get presence text"))) - replacement in src/main.rs at line 110
.body(Body::from(format!("Cann't get presence text: {}", e))).body(Body::from(format!("Cann't get presence text"))) - replacement in src/main.rs at line 115[3.7952]→[3.7952:8400](∅→∅),[3.8400]→[2.1537:1615](∅→∅),[3.8475]→[3.8475:8806](∅→∅),[2.1615]→[3.8475:8806](∅→∅),[3.8806]→[2.1616:1709](∅→∅),[3.8896]→[3.8896:9183](∅→∅),[2.1709]→[3.8896:9183](∅→∅),[3.9183]→[3.1611:1697](∅→∅),[3.9262]→[3.9262:10098](∅→∅),[3.1697]→[3.9262:10098](∅→∅),[3.10098]→[2.1710:1788](∅→∅),[3.10173]→[3.10173:10512](∅→∅),[2.1788]→[3.10173:10512](∅→∅),[3.10512]→[2.1789:1882](∅→∅),[3.10602]→[3.31338:31625](∅→∅),[2.1882]→[3.31338:31625](∅→∅),[3.31338]→[3.31338:31625](∅→∅),[3.31625]→[3.1698:1788](∅→∅),[3.1788]→[3.31708:31772](∅→∅),[3.31708]→[3.31708:31772](∅→∅),[3.50359]→[3.50359:50381](∅→∅),[3.31772]→[3.50359:50381](∅→∅),[3.50381]→[3.31773:31792](∅→∅),[3.50458]→[3.50458:50472](∅→∅),[3.31792]→[3.50458:50472](∅→∅),[3.50472]→[3.10603:11154](∅→∅),[3.11154]→[2.1883:1961](∅→∅),[3.11229]→[3.11229:11564](∅→∅),[2.1961]→[3.11229:11564](∅→∅),[3.11564]→[2.1962:2055](∅→∅),[3.11654]→[3.11654:11941](∅→∅),[2.2055]→[3.11654:11941](∅→∅),[3.11941]→[3.1789:1875](∅→∅),[3.12020]→[3.12020:12560](∅→∅),[3.1875]→[3.12020:12560](∅→∅)
(None, Ok(xmpp_to), _) => {info!("Got chat request. Reading body...");let mut cmd_send = self.cmd_send.clone();Box::pin(async move {match body_to_string(req).await {Ok(message) => {match cmd_send.send(XmppCommand::Chat { xmpp_to, message }).await {Ok(_) => Response::builder().body(Body::from("Accepted".to_string())).map_err(std::convert::Into::into),Err(e) => {error!("Cann't send chat command: {}", e);Response::builder().status(hyper::StatusCode::BAD_REQUEST).body(Body::from("Cann't send command".to_string())).map_err(std::convert::Into::into)}}}Err(e) => Response::builder().status(hyper::StatusCode::BAD_REQUEST).body(Body::from(format!("Cann't get chat text: {}", e))).map_err(std::convert::Into::into),}})}(Some(Ok(muc_id)), _, Ok(show)) => {info!("Got MUC presence request. Reading body...");let mut cmd_send = self.cmd_send.clone();Box::pin(async move {match body_to_string(req).await {Ok(message) => {match cmd_send.send(XmppCommand::ChatroomPresence {muc_id,show,message,}).await{Ok(_) => Response::builder().body(Body::from("Accepted".to_string())).map_err(std::convert::Into::into),Err(e) => {error!("Cann't send MUC presence command: {}", e);Response::builder().status(hyper::StatusCode::BAD_REQUEST).body(Body::from("Cann't send command".to_string())).map_err(std::convert::Into::into)}}}Err(e) => Response::builder().status(hyper::StatusCode::BAD_REQUEST).body(Body::from(format!("Cann't get presence text: {}", e))).map_err(std::convert::Into::into),}})}(Some(Ok(muc_id)), _, _) => {info!("Got MUC chat request. Reading body...");let mut cmd_send = self.cmd_send.clone();Box::pin(async move {match body_to_string(req).await {Ok(message) => {match cmd_send.send(XmppCommand::Chatroom { muc_id, message }).await{Ok(_) => Response::builder().body(Body::from("Accepted".to_string())).map_err(std::convert::Into::into),Err(e) => {error!("Cann't send MUC chat command: {}", e);Response::builder().status(hyper::StatusCode::BAD_REQUEST).body(Body::from("Cann't send command".to_string())).map_err(std::convert::Into::into)}}}Err(e) => Response::builder().status(hyper::StatusCode::BAD_REQUEST).body(Body::from(format!("Cann't get chat text: {}", e))).map_err(std::convert::Into::into),}})}(Some(Err(err)), _, _) => {warn!("Unknown muc destination: {}", err);Box::pin(async move {Response::builder().status(hyper::StatusCode::BAD_REQUEST).body(Body::from(format!("Unknown muc destination: {}", err,))).map_err(std::convert::Into::into)})}(None, Ok(xmpp_to), _) => Box::pin(async {Response::builder().status(hyper::StatusCode::BAD_REQUEST).body(Body::from(format!("SOON"))).map_err(std::convert::Into::into)}),(Some(Ok(muc_id)), _, Ok(show)) => Box::pin(async {Response::builder().status(hyper::StatusCode::BAD_REQUEST).body(Body::from(format!("SOON"))).map_err(std::convert::Into::into)}),(Some(Ok(muc_id)), _, _) => Box::pin(async {Response::builder().status(hyper::StatusCode::BAD_REQUEST).body(Body::from(format!("SOON"))).map_err(std::convert::Into::into)}),(Some(Err(err)), _, _) => Box::pin(async {Response::builder().status(hyper::StatusCode::BAD_REQUEST).body(Body::from(format!("SOON"))).map_err(std::convert::Into::into)}), - edit in src/main.rs at line 150
#[allow(clippy::type_complexity)] - replacement in src/main.rs at line 191
if let Err(e) = tokio::signal::ctrl_c().await {error!("Cann't wait for Ctrl+C: {}", e);}tokio::signal::ctrl_c().await; - replacement in src/main.rs at line 215
if let Err(e) = cmd_send.clone().send(XmppCommand::Ping).await {error!("Cannot send ping command: {}", e);}if let Err(e) = cmd_send.send(XmppCommand::TimeoutCleanup).await {error!("Cann't send cleanup command: {}", e);}cmd_send.clone().send(XmppCommand::Ping).await;cmd_send.send(XmppCommand::TimeoutCleanup).await; - replacement in src/main.rs at line 241
http_server.await?;http_server.await; - replacement in src/main.rs at line 245
xmpp_join.join().expect("Join to xmpp thread")xmpp_join.join().unwrap();Ok(()) - replacement in Cargo.toml at line 10
tokio-xmpp = { git = "https://gitlab.com/xmpp-rs/xmpp-rs" }tokio-xmpp = { git = "https://gitlab.com/xmpp-rs/xmpp-rs", branch = "main" } - replacement in Cargo.toml at line 29
xmpp-parsers = { git = "https://gitlab.com/xmpp-rs/xmpp-rs" }minidom = { git = "https://gitlab.com/xmpp-rs/xmpp-rs" }xmpp-parsers = { git = "https://gitlab.com/xmpp-rs/xmpp-rs", branch = "main" }minidom = { git = "https://gitlab.com/xmpp-rs/xmpp-rs", branch = "main" } - edit in Cargo.lock at line 6
checksum = "1b6a2d3371669ab3ca9797670853d61402b03d0b4b9ebf33d677dfa720203072" - replacement in Cargo.lock at line 8
"gimli 0.22.0 (registry+https://github.com/rust-lang/crates.io-index)","gimli", - edit in Cargo.lock at line 15
checksum = "ee2a4ec343196209d6594e19543ae87a39f96d5534d7174822a3ad825dd6ed7e" - edit in Cargo.lock at line 21
checksum = "043164d8ba5c4c3035fec9bbee8647c0261d788f3474306f93bb65901cae0e86" - replacement in Cargo.lock at line 23
"memchr 2.3.3 (registry+https://github.com/rust-lang/crates.io-index)","memchr", - edit in Cargo.lock at line 30
checksum = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b" - replacement in Cargo.lock at line 32
"winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)","winapi 0.3.9", - edit in Cargo.lock at line 39
checksum = "4d25d88fd6b8041580a654f9d0c581a047baee2b3efee13275f2fc392fc75034" - replacement in Cargo.lock at line 43
version = "0.1.40"version = "0.1.41" - edit in Cargo.lock at line 45
checksum = "b246867b8b3b6ae56035f1eb1ed557c1d8eae97f0d53696138a50fa0e3a3b8c0" - replacement in Cargo.lock at line 47
"proc-macro2 1.0.20 (registry+https://github.com/rust-lang/crates.io-index)","quote 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)","syn 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)","proc-macro2","quote","syn", - edit in Cargo.lock at line 56
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" - replacement in Cargo.lock at line 58
"hermit-abi 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.76 (registry+https://github.com/rust-lang/crates.io-index)","winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)","hermit-abi","libc","winapi 0.3.9", - edit in Cargo.lock at line 67
checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a" - replacement in Cargo.lock at line 71
version = "0.3.50"version = "0.3.52" - edit in Cargo.lock at line 73
checksum = "f813291114c186a042350e787af10c26534601062603d888be110f59f85ef8fa" - replacement in Cargo.lock at line 75
"addr2line 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)","cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.76 (registry+https://github.com/rust-lang/crates.io-index)","miniz_oxide 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)","object 0.20.0 (registry+https://github.com/rust-lang/crates.io-index)","rustc-demangle 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)","addr2line","cfg-if","libc","miniz_oxide","object","rustc-demangle", - edit in Cargo.lock at line 87
checksum = "0b25d992356d2eb0ed82172f5248873db5560c4721f564b13cb5193bda5e668e" - replacement in Cargo.lock at line 89
"byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)","byteorder", - edit in Cargo.lock at line 96
checksum = "3441f0f7b02788e948e47f457ca01f1d7e6d92c693bc132c22b087d3141c03ff" - edit in Cargo.lock at line 102
checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" - replacement in Cargo.lock at line 106
version = "0.8.1"version = "0.9.0" - edit in Cargo.lock at line 108
checksum = "84ce5b6108f8e154604bd4eb76a2f726066c3464d5a552a4229262a18c9bb471" - replacement in Cargo.lock at line 110
"byte-tools 0.3.1 (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.1 (registry+https://github.com/rust-lang/crates.io-index)","opaque-debug 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)","byte-tools","byteorder","crypto-mac 0.8.0","digest 0.9.0","opaque-debug 0.2.3", - edit in Cargo.lock at line 121
checksum = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b" - replacement in Cargo.lock at line 123[3.56620]→[3.38407:38487](∅→∅),[3.56635]→[3.56635:56712](∅→∅),[3.49557]→[3.56635:56712](∅→∅),[3.32156]→[3.56635:56712](∅→∅),[3.44318]→[3.56635:56712](∅→∅),[3.38370]→[3.56635:56712](∅→∅),[3.38487]→[3.56635:56712](∅→∅),[3.56712]→[3.38488:38645](∅→∅)
"block-padding 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)","byte-tools 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)","generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)","block-padding 0.1.5","byte-tools","byteorder","generic-array 0.12.3",][[package]]name = "block-buffer"version = "0.9.0"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4"dependencies = ["block-padding 0.2.1","generic-array 0.14.4", - edit in Cargo.lock at line 143
checksum = "fa79dedbb091f449f1f39e53edf88d5dbe95f895dae6135a8d7b881fb5af73f5" - replacement in Cargo.lock at line 145[3.57007]→[3.57007:57084](∅→∅),[3.57007]→[3.57007:57084](∅→∅),[3.57007]→[3.57007:57084](∅→∅),[3.57007]→[3.57007:57084](∅→∅),[3.57007]→[3.57007:57084](∅→∅)
"byte-tools 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","byte-tools", - edit in Cargo.lock at line 149
name = "block-padding"version = "0.2.1"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "8d696c370c750c948ada61c69a0ee2cbbb9c50b1019ddb86d9317157a99c2cae"[[package]] - edit in Cargo.lock at line 158
checksum = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7" - edit in Cargo.lock at line 164
checksum = "08c48aae112d48ed9f069b33538ea9e3e90aa263cfa3d1c24309612b1f7472de" - edit in Cargo.lock at line 170
checksum = "0e4cec68f03f32e44924783795810fa50a7035d8c8ebe78580ad7e6c703fba38" - replacement in Cargo.lock at line 174
version = "1.0.59"version = "1.0.61" - edit in Cargo.lock at line 176
checksum = "ed67cbde08356238e75fc4656be4749481eeffb09e19f320a25237d5221c985d" - edit in Cargo.lock at line 182
checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" - replacement in Cargo.lock at line 186
version = "0.4.15"version = "0.4.19" - edit in Cargo.lock at line 188
checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73" - replacement in Cargo.lock at line 190
"num-integer 0.1.43 (registry+https://github.com/rust-lang/crates.io-index)","num-traits 0.2.12 (registry+https://github.com/rust-lang/crates.io-index)","time 0.1.44 (registry+https://github.com/rust-lang/crates.io-index)","libc","num-integer","num-traits","time","winapi 0.3.9", - edit in Cargo.lock at line 201
checksum = "37e58ac78573c40708d45522f0d80fa2f01cc4f9b4e2bf749807255454312002" - replacement in Cargo.lock at line 203[3.58027]→[3.58027:58104](∅→∅),[3.58027]→[3.58027:58104](∅→∅),[3.58027]→[3.58027:58104](∅→∅),[3.58027]→[3.58027:58104](∅→∅),[3.58027]→[3.58027:58104](∅→∅),[3.58027]→[3.58027:58104](∅→∅),[3.58027]→[3.58027:58104](∅→∅),[3.58104]→[3.39013:39160](∅→∅),[3.32620]→[3.38947:39096](∅→∅),[3.38947]→[3.38947:39096](∅→∅),[3.39160]→[3.38947:39096](∅→∅),[3.39096]→[3.39161:39315](∅→∅)
"ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)","atty 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)","bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)","strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)","textwrap 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)","unicode-width 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)","vec_map 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)","ansi_term","atty","bitflags","strsim","textwrap","unicode-width","vec_map", - edit in Cargo.lock at line 216
checksum = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f" - replacement in Cargo.lock at line 218
"bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)","bitflags", - edit in Cargo.lock at line 225
checksum = "57d24c7a13c43e870e37c1556b74555437870a04514f7685f5b354e090567171" - replacement in Cargo.lock at line 227
"core-foundation-sys 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.76 (registry+https://github.com/rust-lang/crates.io-index)","core-foundation-sys","libc", - edit in Cargo.lock at line 235
checksum = "b3a71ab494c0b5b860bdc8407ae08978052417070c2ced38573a9157ad75b8ac" - edit in Cargo.lock at line 238
name = "cpuid-bool"version = "0.1.2"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "8aebca1129a03dc6dc2b127edd729435bbc4a37e1d5f4d7513165089ceb02634"[[package]] - edit in Cargo.lock at line 247
checksum = "4434400df11d95d556bac068ddfedd482915eb18fe8bea89bc80b6e4b1c179e5" - replacement in Cargo.lock at line 249
"generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)","subtle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)","generic-array 0.12.3","subtle 1.0.0",][[package]]name = "crypto-mac"version = "0.8.0"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "b584a330336237c1eecd3e94266efb216c56ed91225d634cb2991c5f3fd1aeab"dependencies = ["generic-array 0.14.4","subtle 2.3.0", - edit in Cargo.lock at line 267
checksum = "f3d0c8c8752312f9713efd397ff63acb9f85585afbf179282e720e7704954dd5" - replacement in Cargo.lock at line 269
"generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)","generic-array 0.12.3",][[package]]name = "digest"version = "0.9.0"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"dependencies = ["generic-array 0.14.4", - edit in Cargo.lock at line 285
checksum = "7c5f0096a91d210159eceb2ff5e1c4da18388a170e1e3ce948aac9c8fdbbf595" - replacement in Cargo.lock at line 287
"heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","proc-macro2 1.0.20 (registry+https://github.com/rust-lang/crates.io-index)","quote 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)","syn 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)","heck","proc-macro2","quote","syn", - edit in Cargo.lock at line 297
checksum = "44533bbbb3bb3c1fa17d9f2e4e38bbbaf8396ba82193c4cb1b6445d711445d36" - replacement in Cargo.lock at line 299
"atty 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)","humantime 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)","log 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)","regex 1.3.9 (registry+https://github.com/rust-lang/crates.io-index)","termcolor 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)","atty","humantime","log","regex","termcolor", - edit in Cargo.lock at line 310
checksum = "d32e9bd16cc02eae7db7ef620b392808b89f6a5e16bb3497d159c6b92a0f4f86" - replacement in Cargo.lock at line 312
"backtrace 0.3.50 (registry+https://github.com/rust-lang/crates.io-index)","failure_derive 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)","backtrace","failure_derive", - edit in Cargo.lock at line 320
checksum = "aa4da3c766cd7a0db8242e326e9e4e081edd567072893ed320008189715366a4" - replacement in Cargo.lock at line 322
"proc-macro2 1.0.20 (registry+https://github.com/rust-lang/crates.io-index)","quote 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)","syn 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)","synstructure 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)","proc-macro2","quote","syn","synstructure", - edit in Cargo.lock at line 332
checksum = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed" - edit in Cargo.lock at line 338
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" - edit in Cargo.lock at line 344
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" - replacement in Cargo.lock at line 346
"foreign-types-shared 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","foreign-types-shared", - edit in Cargo.lock at line 353
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" - edit in Cargo.lock at line 359
checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba" - edit in Cargo.lock at line 365
checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82" - replacement in Cargo.lock at line 367[3.64039]→[3.41014:41089](∅→∅),[3.33821]→[3.64114:64199](∅→∅),[3.40409]→[3.64114:64199](∅→∅),[3.64114]→[3.64114:64199](∅→∅),[3.41089]→[3.64114:64199](∅→∅)
"bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)","fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)","bitflags","fuchsia-zircon-sys", - edit in Cargo.lock at line 375
checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7" - edit in Cargo.lock at line 381
checksum = "7c9c1ce3fa9336301af935ab852c437817d14cd33690446569392e65170aac3b" - replacement in Cargo.lock at line 383[3.64452]→[3.64452:64522](∅→∅),[3.64452]→[3.64452:64522](∅→∅),[3.64452]→[3.64452:64522](∅→∅),[3.64522]→[3.41090:41178](∅→∅)
"mac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","new_debug_unreachable 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)","mac","new_debug_unreachable", - replacement in Cargo.lock at line 389
version = "0.3.5"version = "0.3.6" - edit in Cargo.lock at line 391
checksum = "5d8e3078b7b2a8a671cb7a3d17b4760e4181ea243227776ba83fd043b4ca034e" - replacement in Cargo.lock at line 393
"futures-channel 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)","futures-core 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)","futures-executor 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)","futures-io 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)","futures-sink 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)","futures-task 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)","futures-util 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)","futures-channel","futures-core","futures-executor","futures-io","futures-sink","futures-task","futures-util", - replacement in Cargo.lock at line 404
version = "0.3.5"version = "0.3.6" - edit in Cargo.lock at line 406
checksum = "a7a4d35f7401e948629c9c3d6638fb9bf94e0b2121e96c3b428cc4e631f3eb74" - replacement in Cargo.lock at line 408
"futures-core 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)","futures-sink 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)","futures-core","futures-sink", - replacement in Cargo.lock at line 414
version = "0.3.5"version = "0.3.6" - edit in Cargo.lock at line 416
checksum = "d674eaa0056896d5ada519900dbf97ead2e46a7b6621e8160d79e2f2e1e2784b" - replacement in Cargo.lock at line 420
version = "0.3.5"version = "0.3.6" - edit in Cargo.lock at line 422
checksum = "cc709ca1da6f66143b8c9bec8e6260181869893714e9b5a490b169b0414144ab" - replacement in Cargo.lock at line 424
"futures-core 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)","futures-task 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)","futures-util 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)","futures-core","futures-task","futures-util", - replacement in Cargo.lock at line 431
version = "0.3.5"version = "0.3.6" - edit in Cargo.lock at line 433
checksum = "5fc94b64bb39543b4e432f1790b6bf18e3ee3b74653c5449f63310e9a74b123c" - replacement in Cargo.lock at line 437
version = "0.3.5"version = "0.3.6" - edit in Cargo.lock at line 439
checksum = "f57ed14da4603b2554682e9f2ff3c65d7567b53188db96cb71538217fc64581b" - replacement in Cargo.lock at line 441
"proc-macro-hack 0.5.18 (registry+https://github.com/rust-lang/crates.io-index)","proc-macro2 1.0.20 (registry+https://github.com/rust-lang/crates.io-index)","quote 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)","syn 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)","proc-macro-hack","proc-macro2","quote","syn", - replacement in Cargo.lock at line 449
version = "0.3.5"version = "0.3.6" - edit in Cargo.lock at line 451
checksum = "0d8764258ed64ebc5d9ed185cf86a95db5cac810269c5d20ececb32e0088abbd" - replacement in Cargo.lock at line 455
version = "0.3.5"version = "0.3.6" - edit in Cargo.lock at line 457
checksum = "4dd26820a9f3637f1302da8bceba3ff33adbe53464b54ca24d4e2d4f1db30f94" - replacement in Cargo.lock at line 459
"once_cell 1.4.1 (registry+https://github.com/rust-lang/crates.io-index)","once_cell", - replacement in Cargo.lock at line 464
version = "0.3.5"version = "0.3.6" - edit in Cargo.lock at line 466
checksum = "8a894a0acddba51a2d49a6f4263b1e64b8c579ece8af50fa86503d52cd1eea34" - replacement in Cargo.lock at line 468
"futures-channel 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)","futures-core 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)","futures-io 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)","futures-macro 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)","futures-sink 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)","futures-task 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)","memchr 2.3.3 (registry+https://github.com/rust-lang/crates.io-index)","pin-project 0.4.23 (registry+https://github.com/rust-lang/crates.io-index)","pin-utils 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)","proc-macro-hack 0.5.18 (registry+https://github.com/rust-lang/crates.io-index)","proc-macro-nested 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)","slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)","futures-channel","futures-core","futures-io","futures-macro","futures-sink","futures-task","memchr","pin-project","pin-utils","proc-macro-hack","proc-macro-nested","slab", - edit in Cargo.lock at line 486
checksum = "c68f0274ae0e023facc3c97b2e00f076be70e254bc851d972503b328db79b2ec" - replacement in Cargo.lock at line 488
"typenum 1.12.0 (registry+https://github.com/rust-lang/crates.io-index)","typenum",][[package]]name = "generic-array"version = "0.14.4"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "501466ecc8a30d1d3b7fc9229b122b2ce8ed6e9d9223f1138d4babb253e51817"dependencies = ["typenum","version_check", - replacement in Cargo.lock at line 503
version = "0.1.14"version = "0.1.15" - edit in Cargo.lock at line 505
checksum = "fc587bc0ec293155d5bfa6b9891ec18a1e330c234f896ea47fbada4cadbe47e6" - replacement in Cargo.lock at line 507
"cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.76 (registry+https://github.com/rust-lang/crates.io-index)","wasi 0.9.0+wasi-snapshot-preview1 (registry+https://github.com/rust-lang/crates.io-index)","cfg-if","libc","wasi 0.9.0+wasi-snapshot-preview1", - edit in Cargo.lock at line 516
checksum = "aaf91faf136cb47367fa430cd46e37a788775e7fa104f8b4bcb3861dc389b724" - edit in Cargo.lock at line 522
checksum = "993f9e0baeed60001cf565546b0d3dbe6a6ad23f2bd31644a133c641eccf6d53" - replacement in Cargo.lock at line 524[3.65357]→[3.45046:45571](∅→∅),[3.60499]→[3.60499:60570](∅→∅),[3.45571]→[3.60499:60570](∅→∅),[3.60570]→[3.45572:45797](∅→∅)
"bytes 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)","fnv 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)","futures-core 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)","futures-sink 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)","futures-util 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)","http 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)","indexmap 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)","slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)","tokio 0.2.22 (registry+https://github.com/rust-lang/crates.io-index)","tokio-util 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","tracing 0.1.19 (registry+https://github.com/rust-lang/crates.io-index)","bytes","fnv","futures-core","futures-sink","futures-util","http","indexmap","slab","tokio","tokio-util","tracing", - replacement in Cargo.lock at line 539
version = "0.9.0"version = "0.9.1" - edit in Cargo.lock at line 541
checksum = "d7afe4a420e3fe79967a00898cc1f4db7c8a49a9333a29f8a4bd76a253d5cd04" - edit in Cargo.lock at line 547
checksum = "20564e78d53d2bb135c343b3f47714a56af2061f1c928fdb541dc7b9fdd94205" - replacement in Cargo.lock at line 549
"unicode-segmentation 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)","unicode-segmentation", - replacement in Cargo.lock at line 554
version = "0.1.15"version = "0.1.17" - edit in Cargo.lock at line 556
checksum = "5aca5565f760fb5b220e499d72710ed156fdb74e631659e99377d9ebfbd13ae8" - replacement in Cargo.lock at line 558
"libc 0.2.76 (registry+https://github.com/rust-lang/crates.io-index)","libc", - edit in Cargo.lock at line 565
checksum = "5dcb5e64cda4c23119ab41ba960d1e170a774c8e4b9d9e6a9bc18aabf5e59695" - replacement in Cargo.lock at line 567
"crypto-mac 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)","digest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)","crypto-mac 0.7.0","digest 0.8.1", - edit in Cargo.lock at line 575
checksum = "3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867" - replacement in Cargo.lock at line 577
"libc 0.2.76 (registry+https://github.com/rust-lang/crates.io-index)","match_cfg 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)","winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)","libc","match_cfg","winapi 0.3.9", - edit in Cargo.lock at line 586
checksum = "28d569972648b2c512421b5f2a405ad6ac9666547189d0c5477a3f200f3e02f9" - replacement in Cargo.lock at line 588
"bytes 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)","fnv 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)","itoa 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)","bytes","fnv","itoa", - edit in Cargo.lock at line 597
checksum = "13d5ff830006f7646652e057693569bfe0d51760c0085a071769d142a205111b" - replacement in Cargo.lock at line 599
"bytes 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)","http 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)","bytes","http", - edit in Cargo.lock at line 606
source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "cd179ae861f0c2e53da70d892f5f3029f9594be0c41dc5269cd371691b1dc2f9"[[package]]name = "httpdate"version = "0.3.2" - edit in Cargo.lock at line 613
checksum = "494b4d60369511e7dea41cf646832512a94e542f68bb9c49e54518e0f468eb47" - edit in Cargo.lock at line 619
checksum = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f" - replacement in Cargo.lock at line 621
"quick-error 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)","quick-error", - replacement in Cargo.lock at line 626
version = "0.13.7"version = "0.13.8" - edit in Cargo.lock at line 628
checksum = "2f3afcfae8af5ad0576a31e768415edb627824129e8e5a29b8bfccb2f234e835" - replacement in Cargo.lock at line 630
"bytes 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)","futures-channel 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)","futures-core 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)","futures-util 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)","h2 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)","http 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)","http-body 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","httparse 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)","itoa 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)","pin-project 0.4.23 (registry+https://github.com/rust-lang/crates.io-index)","socket2 0.3.12 (registry+https://github.com/rust-lang/crates.io-index)","time 0.1.44 (registry+https://github.com/rust-lang/crates.io-index)","tokio 0.2.22 (registry+https://github.com/rust-lang/crates.io-index)","tower-service 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)","tracing 0.1.19 (registry+https://github.com/rust-lang/crates.io-index)","want 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)","bytes","futures-channel","futures-core","futures-util","h2","http","http-body","httparse","httpdate","itoa","pin-project","socket2","tokio","tower-service","tracing","want", - edit in Cargo.lock at line 652
checksum = "02e2673c30ee86b5b96a9cb52ad15718aa1f966f5ab9ad54a8b95d5ca33120a9" - replacement in Cargo.lock at line 654
"matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)","unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)","unicode-normalization 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)","matches","unicode-bidi","unicode-normalization", - edit in Cargo.lock at line 663
checksum = "55e2e4c765aa53a0424761bf9f41aa7a6ac1efa87238f59560640e27fca028f2" - replacement in Cargo.lock at line 665
"autocfg 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)","hashbrown 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)","autocfg","hashbrown", - edit in Cargo.lock at line 673
checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e" - replacement in Cargo.lock at line 675
"libc 0.2.76 (registry+https://github.com/rust-lang/crates.io-index)","libc", - edit in Cargo.lock at line 682
checksum = "f7e2f18aece9709094573a9f24f483c4f65caa4298e2f7ae1b71cc65d853fad7" - replacement in Cargo.lock at line 684
"socket2 0.3.12 (registry+https://github.com/rust-lang/crates.io-index)","widestring 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)","winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)","winreg 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)","socket2","widestring","winapi 0.3.9","winreg", - edit in Cargo.lock at line 694
checksum = "dc6f3ad7b9d11a0c00842ff8de1b60ee58661048eb8049ed33c73594f359d7e6" - edit in Cargo.lock at line 700
checksum = "3d9f987c3ff1c2c7d477c9e0a3dc25cc58ea97692b19a53018089109445b4ab3" - replacement in Cargo.lock at line 702
"minidom 0.12.0 (git+https://gitlab.com/xmpp-rs/xmpp-rs)","minidom", - edit in Cargo.lock at line 709
checksum = "67c21572b4949434e4fc1e1978b99c5f77064153c59d998bf13ecd96fb5ecba7" - edit in Cargo.lock at line 715
checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d" - replacement in Cargo.lock at line 717
"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)","winapi 0.2.8","winapi-build", - edit in Cargo.lock at line 725
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" - replacement in Cargo.lock at line 729
version = "0.2.76"version = "0.2.79" - edit in Cargo.lock at line 731
checksum = "2448f6066e80e3bfc792e9c98bf705b4b0fc6e8ef5b43e5889aff0eaa9c58743" - edit in Cargo.lock at line 737
checksum = "8dd5a6d5999d9907cda8ed67bbd137d3af8085216c2ac62de5be860bd41f304a" - edit in Cargo.lock at line 743
checksum = "4fabed175da42fed1fa0746b0ea71f412aa9d35e76e95e59b192c64b9dc2bf8b" - replacement in Cargo.lock at line 745
"cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)","cfg-if", - edit in Cargo.lock at line 752
checksum = "31e24f1ad8321ca0e8a1e0ac13f23cb668e6f5466c2c57319f6a5cf1cc8e3b1c" - replacement in Cargo.lock at line 754
"linked-hash-map 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)","linked-hash-map", - edit in Cargo.lock at line 761
checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4" - edit in Cargo.lock at line 767
checksum = "aae38d669396ca9b707bfc3db254bc382ddb94f57cc5c235f34623a669a01dab" - replacement in Cargo.lock at line 769
"log 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)","phf 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)","phf_codegen 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)","serde 1.0.115 (registry+https://github.com/rust-lang/crates.io-index)","serde_derive 1.0.115 (registry+https://github.com/rust-lang/crates.io-index)","serde_json 1.0.57 (registry+https://github.com/rust-lang/crates.io-index)","string_cache 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)","string_cache_codegen 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)","tendril 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)","log","phf","phf_codegen","serde","serde_derive","serde_json","string_cache","string_cache_codegen","tendril", - edit in Cargo.lock at line 784
checksum = "ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4" - edit in Cargo.lock at line 790
checksum = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08" - edit in Cargo.lock at line 796
checksum = "3728d817d99e5ac407411fa471ff9800a778d88a24685968b36824eaf4bee400" - replacement in Cargo.lock at line 801
source = "git+https://gitlab.com/xmpp-rs/xmpp-rs#b85aa293770d22cca11fd7ca3802b5920e1ab6fa"source = "git+https://gitlab.com/xmpp-rs/xmpp-rs?branch=main#e1f2e2653a9c14409a04bc4fcd7b10ce842871ea" - replacement in Cargo.lock at line 803
"quick-xml 0.18.1 (registry+https://github.com/rust-lang/crates.io-index)","quick-xml", - replacement in Cargo.lock at line 808
version = "0.4.1"version = "0.4.3" - edit in Cargo.lock at line 810
checksum = "0f2d26ec3309788e423cfbf68ad1800f061638098d76a83681af979dc4eda19d" - replacement in Cargo.lock at line 812
"adler 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)","adler","autocfg", - edit in Cargo.lock at line 820
checksum = "fce347092656428bc8eaf6201042cb551b8d67855af7374542a92a0fbfcac430" - replacement in Cargo.lock at line 822[3.73955]→[3.50692:50766](∅→∅),[3.73955]→[3.73955:74121](∅→∅),[3.50766]→[3.73955:74121](∅→∅),[3.74121]→[3.50767:50839](∅→∅),[3.74193]→[3.74193:74272](∅→∅),[3.50839]→[3.74193:74272](∅→∅),[3.74272]→[3.50840:50983](∅→∅),[3.64110]→[3.74489:74560](∅→∅),[3.56270]→[3.74489:74560](∅→∅),[3.74489]→[3.74489:74560](∅→∅),[3.50983]→[3.74489:74560](∅→∅),[3.74560]→[3.50984:51056](∅→∅),[3.74632]→[3.64111:64182](∅→∅),[3.51056]→[3.64111:64182](∅→∅),[3.64182]→[3.74703:74776](∅→∅),[3.56342]→[3.74703:74776](∅→∅),[3.74703]→[3.74703:74776](∅→∅)
"cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)","fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)","fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)","iovec 0.1.4 (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.76 (registry+https://github.com/rust-lang/crates.io-index)","log 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)","miow 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)","net2 0.2.35 (registry+https://github.com/rust-lang/crates.io-index)","slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)","winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)","cfg-if","fuchsia-zircon","fuchsia-zircon-sys","iovec","kernel32-sys","libc","log","miow","net2","slab","winapi 0.2.8", - edit in Cargo.lock at line 839
checksum = "afcb699eb26d4332647cc848492bbc15eafb26f08d0304550d5aa1f612e066f0" - replacement in Cargo.lock at line 841
"iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.76 (registry+https://github.com/rust-lang/crates.io-index)","mio 0.6.22 (registry+https://github.com/rust-lang/crates.io-index)","iovec","libc","mio", - edit in Cargo.lock at line 850
checksum = "8c1f2f3b1cf331de6896aabf6e9d55dca90356cc9960cca7eaaf408a355ae919" - replacement in Cargo.lock at line 852[3.75252]→[3.75252:75331](∅→∅),[3.75252]→[3.75252:75331](∅→∅),[3.75252]→[3.75252:75331](∅→∅),[3.75331]→[3.51292:51364](∅→∅),[3.75403]→[3.75403:75553](∅→∅),[3.51364]→[3.75403:75553](∅→∅)
"kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)","net2 0.2.35 (registry+https://github.com/rust-lang/crates.io-index)","winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)","ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)","kernel32-sys","net2","winapi 0.2.8","ws2_32-sys", - edit in Cargo.lock at line 862
checksum = "2b0d88c06fe90d5ee94048ba40409ef1d9315d86f6f38c2efdaad4fb50c58b2d" - replacement in Cargo.lock at line 864[3.75688]→[3.51384:51681](∅→∅),[3.64552]→[3.75984:76064](∅→∅),[3.52678]→[3.75984:76064](∅→∅),[3.56712]→[3.75984:76064](∅→∅),[3.75598]→[3.75984:76064](∅→∅),[3.35874]→[3.75984:76064](∅→∅),[3.43514]→[3.75984:76064](∅→∅),[3.75984]→[3.75984:76064](∅→∅),[3.52654]→[3.75984:76064](∅→∅),[3.51681]→[3.75984:76064](∅→∅),[3.76064]→[3.51682:52086](∅→∅)
"lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.76 (registry+https://github.com/rust-lang/crates.io-index)","log 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)","openssl 0.10.30 (registry+https://github.com/rust-lang/crates.io-index)","openssl-probe 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)","openssl-sys 0.9.58 (registry+https://github.com/rust-lang/crates.io-index)","schannel 0.1.19 (registry+https://github.com/rust-lang/crates.io-index)","security-framework 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)","security-framework-sys 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)","tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)","lazy_static","libc","log","openssl","openssl-probe","openssl-sys","schannel","security-framework","security-framework-sys","tempfile", - edit in Cargo.lock at line 880
checksum = "3ebc3ec692ed7c9a255596c67808dee269f64655d8baf7b4f0638e51ba1d6853" - replacement in Cargo.lock at line 882
"cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.76 (registry+https://github.com/rust-lang/crates.io-index)","winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)","cfg-if","libc","winapi 0.3.9", - edit in Cargo.lock at line 891
checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54" - edit in Cargo.lock at line 897
checksum = "8d59457e662d541ba17869cf51cf177c0b5f0cbf476c66bdc90bf1edac4f875b" - replacement in Cargo.lock at line 899
"autocfg 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)","num-traits 0.2.12 (registry+https://github.com/rust-lang/crates.io-index)","autocfg","num-traits", - edit in Cargo.lock at line 907
checksum = "ac267bcc07f48ee5f8935ab0d24f316fb722d7a1292e2913f0cc196b29ffd611" - replacement in Cargo.lock at line 909
"autocfg 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)","autocfg", - edit in Cargo.lock at line 916
checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3" - replacement in Cargo.lock at line 918
"hermit-abi 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.76 (registry+https://github.com/rust-lang/crates.io-index)","hermit-abi","libc", - edit in Cargo.lock at line 926
checksum = "1ab52be62400ca80aa00285d25253d7f7c437b7375c4de678f5405d3afe82ca5" - edit in Cargo.lock at line 932
checksum = "260e51e7efe62b592207e9e13a68e43692a7a279171d6ba57abd208bf23645ad" - edit in Cargo.lock at line 938
checksum = "2839e79665f131bdb5782e51f2c6c9599c133c6098982a54c794358bf432529c" - edit in Cargo.lock at line 941
name = "opaque-debug"version = "0.3.0"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"[[package]] - edit in Cargo.lock at line 950
checksum = "8d575eff3665419f9b83678ff2815858ad9d11567e082f5ac1814baba4e2bcb4" - replacement in Cargo.lock at line 952[3.77844]→[3.53073:53222](∅→∅),[3.65522]→[3.77992:78072](∅→∅),[3.53320]→[3.77992:78072](∅→∅),[3.57660]→[3.77992:78072](∅→∅),[3.76353]→[3.77992:78072](∅→∅),[3.36730]→[3.77992:78072](∅→∅),[3.44724]→[3.77992:78072](∅→∅),[3.77992]→[3.77992:78072](∅→∅),[3.53312]→[3.77992:78072](∅→∅),[3.53222]→[3.77992:78072](∅→∅),[3.78072]→[3.53223:53452](∅→∅)
"bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)","cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)","foreign-types 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)","lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.76 (registry+https://github.com/rust-lang/crates.io-index)","openssl-sys 0.9.58 (registry+https://github.com/rust-lang/crates.io-index)","bitflags","cfg-if","foreign-types","lazy_static","libc","openssl-sys", - edit in Cargo.lock at line 964
checksum = "77af24da69f9d9341038eba93a073b1fdaaa1b788221b00a69bce9e762cb32de" - edit in Cargo.lock at line 970
checksum = "a842db4709b604f0fe5d1170ae3565899be2ad3d9cbc72dedc789ac0511f78de" - replacement in Cargo.lock at line 972
"autocfg 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)","cc 1.0.59 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.76 (registry+https://github.com/rust-lang/crates.io-index)","pkg-config 0.3.18 (registry+https://github.com/rust-lang/crates.io-index)","vcpkg 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)","autocfg","cc","libc","pkg-config","vcpkg", - edit in Cargo.lock at line 983
checksum = "006c038a43a45995a9670da19e67600114740e8511d4333bf97a56e66a7542d9" - replacement in Cargo.lock at line 985
"byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)","crypto-mac 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)","byteorder","crypto-mac 0.7.0", - edit in Cargo.lock at line 993
checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e" - edit in Cargo.lock at line 999
checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12" - replacement in Cargo.lock at line 1001
"phf_shared 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)","phf_shared", - edit in Cargo.lock at line 1008
checksum = "cbffee61585b0411840d3ece935cce9cb6321f01c45477d30066498cd5e1a815" - replacement in Cargo.lock at line 1010
"phf_generator 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)","phf_shared 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)","phf_generator","phf_shared", - edit in Cargo.lock at line 1018
checksum = "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526" - replacement in Cargo.lock at line 1020
"phf_shared 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)","rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)","phf_shared","rand", - edit in Cargo.lock at line 1028
checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7" - replacement in Cargo.lock at line 1030
"siphasher 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)","siphasher", - replacement in Cargo.lock at line 1035
version = "0.4.23"version = "0.4.26" - edit in Cargo.lock at line 1037
checksum = "13fbdfd6bdee3dc9be46452f86af4a4072975899cf8592466668620bebfbcc17" - replacement in Cargo.lock at line 1039
"pin-project-internal 0.4.23 (registry+https://github.com/rust-lang/crates.io-index)","pin-project-internal", - replacement in Cargo.lock at line 1044
version = "0.4.23"version = "0.4.26" - edit in Cargo.lock at line 1046
checksum = "c82fb1329f632c3552cf352d14427d57a511b1cf41db93b3a7d77906a82dcc8e" - replacement in Cargo.lock at line 1048
"proc-macro2 1.0.20 (registry+https://github.com/rust-lang/crates.io-index)","quote 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)","syn 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)","proc-macro2","quote","syn", - replacement in Cargo.lock at line 1055
version = "0.1.7"version = "0.1.10" - edit in Cargo.lock at line 1057
checksum = "e555d9e657502182ac97b539fb3dae8b79cda19e3e4f8ffb5e8de4f18df93c95" - edit in Cargo.lock at line 1063
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" - edit in Cargo.lock at line 1069
checksum = "d36492546b6af1463394d46f0c834346f31548646f6ba10849802c9c9a27ac33" - edit in Cargo.lock at line 1075
checksum = "c36fa947111f5c62a733b652544dd0016a43ce89619538a8ef92724a6f501a20" - edit in Cargo.lock at line 1081
checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" - edit in Cargo.lock at line 1087
checksum = "99c605b9a0adc77b7211c6b1f722dcb613d68d66859a44f3d485a6da332b0598" - edit in Cargo.lock at line 1093
checksum = "eba180dafb9038b050a4c280019bbedf9f2467b61e5d892dcad585bb57aadc5a" - replacement in Cargo.lock at line 1097
version = "1.0.20"version = "1.0.24" - edit in Cargo.lock at line 1099
checksum = "1e0704ee1a7e00d7bb417d0770ea303c1bccbabf0ef1667dae92b5967f5f8a71" - replacement in Cargo.lock at line 1101
"unicode-xid 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)","unicode-xid", - edit in Cargo.lock at line 1108
checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0" - edit in Cargo.lock at line 1114
checksum = "3cc440ee4802a86e357165021e3e255a9143724da31db1e2ea540214c96a0f82" - replacement in Cargo.lock at line 1116
"memchr 2.3.3 (registry+https://github.com/rust-lang/crates.io-index)","memchr", - edit in Cargo.lock at line 1123
checksum = "aa563d17ecb180e500da1cfd2b028310ac758de548efdd203e18f283af693f37" - replacement in Cargo.lock at line 1125
"proc-macro2 1.0.20 (registry+https://github.com/rust-lang/crates.io-index)","proc-macro2", - edit in Cargo.lock at line 1132
checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" - replacement in Cargo.lock at line 1134
"getrandom 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.76 (registry+https://github.com/rust-lang/crates.io-index)","rand_chacha 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)","rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)","rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)","rand_pcg 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)","getrandom","libc","rand_chacha","rand_core 0.5.1","rand_hc","rand_pcg", - edit in Cargo.lock at line 1146
checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" - replacement in Cargo.lock at line 1148
"ppv-lite86 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)","rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)","ppv-lite86","rand_core 0.5.1", - edit in Cargo.lock at line 1156
checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b" - replacement in Cargo.lock at line 1158
"rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)","rand_core 0.4.2", - edit in Cargo.lock at line 1165
checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc" - edit in Cargo.lock at line 1171
checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" - replacement in Cargo.lock at line 1173
"getrandom 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)","getrandom", - edit in Cargo.lock at line 1180
checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" - replacement in Cargo.lock at line 1182
"rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)","rand_core 0.5.1", - edit in Cargo.lock at line 1189
checksum = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071" - replacement in Cargo.lock at line 1191[3.70314]→[3.70314:70469](∅→∅),[3.70314]→[3.70314:70469](∅→∅),[3.70314]→[3.70314:70469](∅→∅),[3.70314]→[3.70314:70469](∅→∅),[3.70469]→[3.56857:57005](∅→∅),[3.70617]→[3.70617:70690](∅→∅),[3.57005]→[3.70617:70690](∅→∅),[3.70690]→[3.57006:57079](∅→∅)
"cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)","fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.76 (registry+https://github.com/rust-lang/crates.io-index)","rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)","rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)","winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)","cloudabi","fuchsia-cprng","libc","rand_core 0.4.2","rdrand","winapi 0.3.9", - edit in Cargo.lock at line 1203
checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429" - replacement in Cargo.lock at line 1205
"rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)","rand_core 0.5.1", - edit in Cargo.lock at line 1212
checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2" - replacement in Cargo.lock at line 1214
"rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","rand_core 0.3.1", - edit in Cargo.lock at line 1221
checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce" - edit in Cargo.lock at line 1227
checksum = "9c3780fcf44b193bc4d09f36d2a3c87b251da4a046c87795a0d35f4f927ad8e6" - replacement in Cargo.lock at line 1229
"aho-corasick 0.7.13 (registry+https://github.com/rust-lang/crates.io-index)","memchr 2.3.3 (registry+https://github.com/rust-lang/crates.io-index)","regex-syntax 0.6.18 (registry+https://github.com/rust-lang/crates.io-index)","thread_local 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)","aho-corasick","memchr","regex-syntax","thread_local", - edit in Cargo.lock at line 1239
checksum = "26412eb97c6b088a6997e05f69403a802a92d520de2f8e63c2b65f9e0f47c4e8" - edit in Cargo.lock at line 1245
checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7" - replacement in Cargo.lock at line 1247
"winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)","winapi 0.3.9", - edit in Cargo.lock at line 1254
checksum = "11834e137f3b14e309437a8276714eed3a80d1ef894869e510f2c0c0b98b9f4a" - replacement in Cargo.lock at line 1256
"hostname 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","quick-error 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)","hostname","quick-error", - replacement in Cargo.lock at line 1262
version = "0.1.16"version = "0.1.17" - edit in Cargo.lock at line 1264
checksum = "b2610b7f643d18c87dff3b489950269617e6601a51f1f05aa5daefee36f64f0b" - edit in Cargo.lock at line 1270
checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e" - edit in Cargo.lock at line 1276
checksum = "e457758c85b736bbad56dc099406cd2a9c19554cf81880dba7a51d092929e600" - replacement in Cargo.lock at line 1278[3.88965]→[3.72084:72158](∅→∅),[3.72158]→[3.57853:57924](∅→∅),[3.72229]→[3.72229:72302](∅→∅),[3.57924]→[3.72229:72302](∅→∅),[3.72302]→[3.47048:47122](∅→∅),[3.47122]→[3.57925:58068](∅→∅)
"base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)","hmac 0.7.1 (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.3 (registry+https://github.com/rust-lang/crates.io-index)","sha-1 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)","sha2 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)","base64 0.10.1","hmac","pbkdf2","rand_os","sha-1 0.8.2","sha2 0.8.2", - edit in Cargo.lock at line 1290
checksum = "8f05ba609c234e60bee0d547fe94a4c7e9da733d1c962cf6e59efa4cd9c8bc75" - replacement in Cargo.lock at line 1292
"lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)","winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)","lazy_static","winapi 0.3.9", - edit in Cargo.lock at line 1300
checksum = "64808902d7d99f78eaddd2b4e2509713babc3dc3c85ad6f4c447680f3c01e535" - replacement in Cargo.lock at line 1302
"bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)","core-foundation 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)","core-foundation-sys 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.76 (registry+https://github.com/rust-lang/crates.io-index)","security-framework-sys 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)","bitflags","core-foundation","core-foundation-sys","libc","security-framework-sys", - edit in Cargo.lock at line 1313
checksum = "17bf11d99252f512695eb468de5516e5cf75455521e69dfe343f3b74e4748405" - replacement in Cargo.lock at line 1315
"core-foundation-sys 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.76 (registry+https://github.com/rust-lang/crates.io-index)","core-foundation-sys","libc", - replacement in Cargo.lock at line 1323
"clap 2.33.3 (registry+https://github.com/rust-lang/crates.io-index)","env_logger 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)","failure 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)","futures-util 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)","hyper 0.13.7 (registry+https://github.com/rust-lang/crates.io-index)","lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)","log 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)","minidom 0.12.0 (git+https://gitlab.com/xmpp-rs/xmpp-rs)","pin-project 0.4.23 (registry+https://github.com/rust-lang/crates.io-index)","serde 1.0.115 (registry+https://github.com/rust-lang/crates.io-index)","serde_derive 1.0.115 (registry+https://github.com/rust-lang/crates.io-index)","tokio 0.2.22 (registry+https://github.com/rust-lang/crates.io-index)","tokio-xmpp 2.0.0 (git+https://gitlab.com/xmpp-rs/xmpp-rs)","toml 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)","xmpp-parsers 0.17.0 (git+https://gitlab.com/xmpp-rs/xmpp-rs)","clap","env_logger","failure","futures-util","hyper","lazy_static","log","minidom","pin-project","serde","serde_derive","tokio","tokio-xmpp","toml","xmpp-parsers", - replacement in Cargo.lock at line 1342
version = "1.0.115"version = "1.0.116" - edit in Cargo.lock at line 1344
checksum = "96fe57af81d28386a513cbc6858332abc6117cfdb5999647c6444b8f43a370a5" - replacement in Cargo.lock at line 1348
version = "1.0.115"version = "1.0.116" - edit in Cargo.lock at line 1350
checksum = "f630a6370fd8e457873b4bd2ffdae75408bc291ba72be773772a4c2a065d9ae8" - replacement in Cargo.lock at line 1352
"proc-macro2 1.0.20 (registry+https://github.com/rust-lang/crates.io-index)","quote 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)","syn 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)","proc-macro2","quote","syn", - replacement in Cargo.lock at line 1359
version = "1.0.57"version = "1.0.58" - edit in Cargo.lock at line 1361
checksum = "a230ea9107ca2220eea9d46de97eddcb04cd00e92d13dda78e478dd33fa82bd4" - replacement in Cargo.lock at line 1363
"itoa 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)","ryu 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)","serde 1.0.115 (registry+https://github.com/rust-lang/crates.io-index)","itoa","ryu","serde", - edit in Cargo.lock at line 1372
checksum = "f7d94d0bede923b3cea61f3f1ff57ff8cdfd77b400fb8f9998949e0cf04163df" - replacement in Cargo.lock at line 1374[3.93036]→[3.60453:60605](∅→∅),[3.74700]→[3.93188:93264](∅→∅),[3.63190]→[3.93188:93264](∅→∅),[3.93188]→[3.93188:93264](∅→∅),[3.60605]→[3.93188:93264](∅→∅),[3.93264]→[3.60606:60685](∅→∅)
"block-buffer 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)","digest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)","fake-simd 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)","opaque-debug 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)","block-buffer 0.7.3","digest 0.8.1","fake-simd","opaque-debug 0.2.3",][[package]]name = "sha-1"version = "0.9.1"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "170a36ea86c864a3f16dd2687712dd6646f7019f301e57537c7f4dc9f5916770"dependencies = ["block-buffer 0.9.0","cfg-if","cpuid-bool","digest 0.9.0","opaque-debug 0.3.0", - edit in Cargo.lock at line 1397
checksum = "a256f46ea78a0c0d9ff00077504903ac881a1dafdc20da66545699e7776b3e69" - replacement in Cargo.lock at line 1399[3.93472]→[3.60705:60857](∅→∅),[3.74952]→[3.93624:93700](∅→∅),[3.63439]→[3.93624:93700](∅→∅),[3.93624]→[3.93624:93700](∅→∅),[3.60857]→[3.93624:93700](∅→∅),[3.93700]→[3.60858:60937](∅→∅)
"block-buffer 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)","digest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)","fake-simd 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)","opaque-debug 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)","block-buffer 0.7.3","digest 0.8.1","fake-simd","opaque-debug 0.2.3",][[package]]name = "sha2"version = "0.9.1"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "2933378ddfeda7ea26f48c555bdad8bb446bf8a3d17832dc83e380d444cfb8c1"dependencies = ["block-buffer 0.9.0","cfg-if","cpuid-bool","digest 0.9.0","opaque-debug 0.3.0", - replacement in Cargo.lock at line 1420
version = "0.8.2"version = "0.9.1" - edit in Cargo.lock at line 1422
checksum = "f81199417d4e5de3f04b1e871023acea7389672c4135918f05aa9cbf2f2fa809" - replacement in Cargo.lock at line 1424[3.93908]→[3.60957:61036](∅→∅),[3.75131]→[3.75131:75208](∅→∅),[3.57012]→[3.75131:75208](∅→∅),[3.80154]→[3.75131:75208](∅→∅),[3.39968]→[3.75131:75208](∅→∅),[3.47328]→[3.75131:75208](∅→∅),[3.49072]→[3.75131:75208](∅→∅),[3.57190]→[3.75131:75208](∅→∅),[3.61036]→[3.75131:75208](∅→∅),[3.75208]→[3.61037:61110](∅→∅),[3.75281]→[3.94137:94210](∅→∅),[3.63688]→[3.94137:94210](∅→∅),[3.94137]→[3.94137:94210](∅→∅),[3.61110]→[3.94137:94210](∅→∅),[3.94210]→[3.61111:61190](∅→∅)
"block-buffer 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)","byte-tools 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","digest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)","keccak 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)","opaque-debug 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)","block-buffer 0.9.0","digest 0.9.0","keccak","opaque-debug 0.3.0", - edit in Cargo.lock at line 1434
checksum = "a3e12110bc539e657a646068aaf5eb5b63af9d0c1f7b29c97113fad80e15f035" - replacement in Cargo.lock at line 1436
"arc-swap 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.76 (registry+https://github.com/rust-lang/crates.io-index)","arc-swap","libc", - edit in Cargo.lock at line 1444
checksum = "fa8f3741c7372e75519bd9346068370c9cdaabcc1f9599cbcf2a2719352286b7" - edit in Cargo.lock at line 1450
checksum = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8" - edit in Cargo.lock at line 1456
checksum = "fbee7696b84bbf3d89a1c2eccff0850e3047ed46bfcd2e92c29a2d074d57e252" - replacement in Cargo.lock at line 1460
version = "0.3.12"version = "0.3.15" - edit in Cargo.lock at line 1462
checksum = "b1fa70dc5c8104ec096f4fe7ede7a221d35ae13dcd19ba1ad9a81d2cab9a1c44" - replacement in Cargo.lock at line 1464
"cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.76 (registry+https://github.com/rust-lang/crates.io-index)","redox_syscall 0.1.57 (registry+https://github.com/rust-lang/crates.io-index)","winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)","cfg-if","libc","redox_syscall","winapi 0.3.9", - edit in Cargo.lock at line 1474
checksum = "2940c75beb4e3bf3a494cef919a747a2cb81e52571e212bfbd185074add7208a" - replacement in Cargo.lock at line 1476[3.95716]→[3.61766:62009](∅→∅),[3.76131]→[3.95960:96043](∅→∅),[3.64555]→[3.95960:96043](∅→∅),[3.95960]→[3.95960:96043](∅→∅),[3.62009]→[3.95960:96043](∅→∅),[3.96043]→[3.62010:62084](∅→∅)
"lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)","new_debug_unreachable 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)","phf_shared 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)","precomputed-hash 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","serde 1.0.115 (registry+https://github.com/rust-lang/crates.io-index)","lazy_static","new_debug_unreachable","phf_shared","precomputed-hash","serde", - edit in Cargo.lock at line 1487
checksum = "f24c8e5e19d22a726626f1a5e16fe15b132dcf21d10177fa5a45ce7962996b97" - replacement in Cargo.lock at line 1489
"phf_generator 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)","phf_shared 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)","proc-macro2 1.0.20 (registry+https://github.com/rust-lang/crates.io-index)","quote 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)","phf_generator","phf_shared","proc-macro2","quote", - edit in Cargo.lock at line 1499
checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" - edit in Cargo.lock at line 1504
source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "2d67a5a62ba6e01cb2192ff309324cb4875d0c451d55fe2319433abe7a05a8ee"[[package]]name = "subtle"version = "2.3.0" - edit in Cargo.lock at line 1511
checksum = "343f3f510c2915908f155e94f17220b19ccfacf2a64a2a5d8004f2c3e311e7fd" - replacement in Cargo.lock at line 1515
version = "1.0.40"version = "1.0.43" - edit in Cargo.lock at line 1517
checksum = "1e2e59c50ed8f6b050b071aa7b6865293957a9af6b58b94f97c1c9434ad440ea" - replacement in Cargo.lock at line 1519
"proc-macro2 1.0.20 (registry+https://github.com/rust-lang/crates.io-index)","quote 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)","unicode-xid 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)","proc-macro2","quote","unicode-xid", - edit in Cargo.lock at line 1528
checksum = "b834f2d66f734cb897113e34aaff2f1ab4719ca946f9a7358dba8f8064148701" - replacement in Cargo.lock at line 1530
"proc-macro2 1.0.20 (registry+https://github.com/rust-lang/crates.io-index)","quote 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)","syn 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)","unicode-xid 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)","proc-macro2","quote","syn","unicode-xid", - edit in Cargo.lock at line 1540
checksum = "7a6e24d9338a0a5be79593e2fa15a648add6138caa803e2d5bc782c371732ca9" - replacement in Cargo.lock at line 1542
"cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.76 (registry+https://github.com/rust-lang/crates.io-index)","rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)","redox_syscall 0.1.57 (registry+https://github.com/rust-lang/crates.io-index)","remove_dir_all 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)","winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)","cfg-if","libc","rand","redox_syscall","remove_dir_all","winapi 0.3.9", - edit in Cargo.lock at line 1554
checksum = "707feda9f2582d5d680d733e38755547a3e8fb471e7ba11452ecfd9ce93a5d3b" - replacement in Cargo.lock at line 1556
"futf 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)","mac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","utf-8 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)","futf","mac","utf-8", - edit in Cargo.lock at line 1565
checksum = "bb6bfa289a4d7c5766392812c0a1f4c1ba45afa1ad47803c11e1f407d846d75f" - replacement in Cargo.lock at line 1567
"winapi-util 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)","winapi-util", - edit in Cargo.lock at line 1574
checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060" - replacement in Cargo.lock at line 1576
"unicode-width 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)","unicode-width", - replacement in Cargo.lock at line 1581
version = "1.0.20"version = "1.0.21" - edit in Cargo.lock at line 1583
checksum = "318234ffa22e0920fe9a40d7b8369b5f649d490980cf7aadcf1eb91594869b42" - replacement in Cargo.lock at line 1585
"thiserror-impl 1.0.20 (registry+https://github.com/rust-lang/crates.io-index)","thiserror-impl", - replacement in Cargo.lock at line 1590
version = "1.0.20"version = "1.0.21" - edit in Cargo.lock at line 1592
checksum = "cae2447b6282786c3493999f40a9be2a6ad20cb8bd268b0a0dbf5a065535c0ab" - replacement in Cargo.lock at line 1594
"proc-macro2 1.0.20 (registry+https://github.com/rust-lang/crates.io-index)","quote 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)","syn 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)","proc-macro2","quote","syn", - edit in Cargo.lock at line 1603
checksum = "d40c6d1b69745a6ec6fb1ca717914848da4b44ae29d9b3080cbee91d72a69b14" - replacement in Cargo.lock at line 1605
"lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)","lazy_static", - edit in Cargo.lock at line 1612
checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255" - replacement in Cargo.lock at line 1614
"libc 0.2.76 (registry+https://github.com/rust-lang/crates.io-index)","wasi 0.10.0+wasi-snapshot-preview1 (registry+https://github.com/rust-lang/crates.io-index)","winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)","libc","wasi 0.10.0+wasi-snapshot-preview1","winapi 0.3.9", - edit in Cargo.lock at line 1623
checksum = "238ce071d267c5710f9d31451efec16c5ee22de34df17cc05e56cbc92e967117" - edit in Cargo.lock at line 1629
checksum = "5d34ca54d84bf2b5b4d7d31e901a8464f7b60ac145a284fba25ceb801f2ddccd" - replacement in Cargo.lock at line 1631[3.104313]→[3.64490:65397](∅→∅),[3.80875]→[3.80875:80946](∅→∅),[3.65397]→[3.80875:80946](∅→∅),[3.80946]→[3.65398:65550](∅→∅)
"bytes 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)","fnv 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)","futures-core 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)","iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)","lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.76 (registry+https://github.com/rust-lang/crates.io-index)","memchr 2.3.3 (registry+https://github.com/rust-lang/crates.io-index)","mio 0.6.22 (registry+https://github.com/rust-lang/crates.io-index)","mio-uds 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)","num_cpus 1.13.0 (registry+https://github.com/rust-lang/crates.io-index)","pin-project-lite 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)","signal-hook-registry 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)","slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)","tokio-macros 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)","winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)","bytes","fnv","futures-core","iovec","lazy_static","libc","memchr","mio","mio-uds","num_cpus","pin-project-lite","signal-hook-registry","slab","tokio-macros","winapi 0.3.9", - edit in Cargo.lock at line 1652
checksum = "f0c3acc6aa564495a0f2e1d59fab677cd7f81a19994cfc7f3ad0e64301560389" - replacement in Cargo.lock at line 1654
"proc-macro2 1.0.20 (registry+https://github.com/rust-lang/crates.io-index)","quote 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)","syn 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)","proc-macro2","quote","syn", - edit in Cargo.lock at line 1663
checksum = "9a70f4fcd7b3b24fb194f837560168208f669ca8cb70d0c4b862944452396343" - replacement in Cargo.lock at line 1665
"native-tls 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)","tokio 0.2.22 (registry+https://github.com/rust-lang/crates.io-index)","native-tls","tokio", - edit in Cargo.lock at line 1671[3.66024]→[3.66024:66042](∅→∅),[3.83072]→[3.107713:107795](∅→∅),[3.70545]→[3.107713:107795](∅→∅),[3.43343]→[3.107713:107795](∅→∅),[3.54973]→[3.107713:107795](∅→∅),[3.107713]→[3.107713:107795](∅→∅),[3.66042]→[3.107713:107795](∅→∅),[3.107795]→[3.66043:66500](∅→∅),[3.83382]→[3.108104:108119](∅→∅),[3.61351]→[3.108104:108119](∅→∅),[3.70855]→[3.108104:108119](∅→∅),[3.85917]→[3.108104:108119](∅→∅),[3.55131]→[3.108104:108119](∅→∅),[3.108104]→[3.108104:108119](∅→∅),[3.63012]→[3.108104:108119](∅→∅),[3.66500]→[3.108104:108119](∅→∅),[3.108119]→[3.66501:66521](∅→∅)
version = "0.2.0"source = "registry+https://github.com/rust-lang/crates.io-index"dependencies = ["bytes 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)","futures-core 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)","futures-sink 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)","log 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)","pin-project-lite 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)","tokio 0.2.22 (registry+https://github.com/rust-lang/crates.io-index)",][[package]]name = "tokio-util" - edit in Cargo.lock at line 1673
checksum = "be8242891f2b6cbef26a2d7e8605133c2c554cd35b3e4948ea892d6d68436499" - replacement in Cargo.lock at line 1675
"bytes 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)","futures-core 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)","futures-sink 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)","log 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)","pin-project-lite 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)","tokio 0.2.22 (registry+https://github.com/rust-lang/crates.io-index)","bytes","futures-core","futures-sink","log","pin-project-lite","tokio", - replacement in Cargo.lock at line 1686
source = "git+https://gitlab.com/xmpp-rs/xmpp-rs#b85aa293770d22cca11fd7ca3802b5920e1ab6fa"source = "git+https://gitlab.com/xmpp-rs/xmpp-rs?branch=main#e1f2e2653a9c14409a04bc4fcd7b10ce842871ea" - replacement in Cargo.lock at line 1688
"bytes 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)","futures 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)","idna 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)","log 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)","native-tls 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)","sasl 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)","tokio 0.2.22 (registry+https://github.com/rust-lang/crates.io-index)","tokio-tls 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","tokio-util 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)","trust-dns-proto 0.19.5 (registry+https://github.com/rust-lang/crates.io-index)","trust-dns-resolver 0.19.5 (registry+https://github.com/rust-lang/crates.io-index)","xml5ever 0.16.1 (registry+https://github.com/rust-lang/crates.io-index)","xmpp-parsers 0.17.0 (git+https://gitlab.com/xmpp-rs/xmpp-rs)","bytes","futures","idna","log","native-tls","sasl","tokio","tokio-tls","tokio-util","trust-dns-proto","trust-dns-resolver","xml5ever","xmpp-parsers", - edit in Cargo.lock at line 1707
checksum = "ffc92d160b1eef40665be3a05630d003936a3bc7da7421277846c2613e92c71a" - replacement in Cargo.lock at line 1709
"serde 1.0.115 (registry+https://github.com/rust-lang/crates.io-index)","serde", - edit in Cargo.lock at line 1716
checksum = "e987b6bf443f4b5b3b6f38704195592cca41c5bb7aedd3c3693c7081f8289860" - replacement in Cargo.lock at line 1720
version = "0.1.19"version = "0.1.21" - edit in Cargo.lock at line 1722
checksum = "b0987850db3733619253fe60e17cb59b82d37c7e6c0236bb81e4d6b87c879f27" - replacement in Cargo.lock at line 1724
"cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)","log 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)","tracing-core 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)","cfg-if","log","pin-project-lite","tracing-core", - replacement in Cargo.lock at line 1732
version = "0.1.15"version = "0.1.17" - edit in Cargo.lock at line 1734
checksum = "f50de3927f93d202783f4513cda820ab47ef17f624b03c096e86ef00c67e6b5f" - replacement in Cargo.lock at line 1736
"lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)","lazy_static", - edit in Cargo.lock at line 1743
checksum = "cdd7061ba6f4d4d9721afedffbfd403f20f39a4301fee1b70d6fcd09cca69f28" - replacement in Cargo.lock at line 1745
"async-trait 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)","backtrace 0.3.50 (registry+https://github.com/rust-lang/crates.io-index)","enum-as-inner 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)","futures 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)","idna 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)","lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)","log 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)","rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)","smallvec 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)","thiserror 1.0.20 (registry+https://github.com/rust-lang/crates.io-index)","tokio 0.2.22 (registry+https://github.com/rust-lang/crates.io-index)","url 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)","async-trait","backtrace","enum-as-inner","futures","idna","lazy_static","log","rand","smallvec","thiserror","tokio","url", - edit in Cargo.lock at line 1763
checksum = "0f23cdfdc3d8300b3c50c9e84302d3bd6d860fb9529af84ace6cf9665f181b77" - replacement in Cargo.lock at line 1765[3.113190]→[3.69572:70021](∅→∅),[3.87220]→[3.57030:57106](∅→∅),[3.70021]→[3.57030:57106](∅→∅),[3.57106]→[3.70022:70408](∅→∅)
"backtrace 0.3.50 (registry+https://github.com/rust-lang/crates.io-index)","cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)","futures 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)","ipconfig 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)","lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)","log 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)","lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)","resolv-conf 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)","smallvec 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)","thiserror 1.0.20 (registry+https://github.com/rust-lang/crates.io-index)","tokio 0.2.22 (registry+https://github.com/rust-lang/crates.io-index)","trust-dns-proto 0.19.5 (registry+https://github.com/rust-lang/crates.io-index)","backtrace","cfg-if","futures","ipconfig","lazy_static","log","lru-cache","resolv-conf","smallvec","thiserror","tokio","trust-dns-proto", - edit in Cargo.lock at line 1783
checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" - edit in Cargo.lock at line 1789
checksum = "373c8a200f9e67a0c95e62a4f52fbf80c23b4381c05a17845531982fa99e6b33" - edit in Cargo.lock at line 1795
checksum = "49f2bd0c6468a8230e1db229cff8029217cf623c767ea5d60bfbd42729ea54d5" - replacement in Cargo.lock at line 1797
"matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)","matches", - edit in Cargo.lock at line 1804
checksum = "6fb19cf769fa8c6a80a162df694621ebeb4dafb606470b2b2fce0be40a98a977" - replacement in Cargo.lock at line 1806
"tinyvec 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)","tinyvec", - edit in Cargo.lock at line 1813
checksum = "e83e153d1053cbb5a118eeff7fd5be06ed99153f00dbcd8ae310c5fb2b22edc0" - edit in Cargo.lock at line 1819
checksum = "9337591893a19b88d8d87f2cec1e73fad5cdfd10e5a6f349f498ad6ea2ffb1e3" - edit in Cargo.lock at line 1825
checksum = "f7fe0bb3479651439c9112f72b6c505038574c9fbb575ed1bf3b797fa39dd564" - edit in Cargo.lock at line 1831
checksum = "829d4a8476c35c9bf0bbce5a3b23f4106f79728039b726d292bb93bc106787cb" - replacement in Cargo.lock at line 1833[3.115463]→[3.70672:70743](∅→∅),[3.115534]→[3.115534:115608](∅→∅),[3.70743]→[3.115534:115608](∅→∅),[3.115608]→[3.70744:70827](∅→∅)
"idna 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)","matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)","percent-encoding 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)","idna","matches","percent-encoding", - edit in Cargo.lock at line 1842
checksum = "05e42f7c18b8f902290b009cde6d651262f956c98bc51bca4cd1d511c9cd85c7" - edit in Cargo.lock at line 1848
checksum = "6454029bf181f092ad1b853286f23e2c507d8e8194d01d92da4a55c274a5508c" - edit in Cargo.lock at line 1854
checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191" - edit in Cargo.lock at line 1857
name = "version_check"version = "0.9.2"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "b5a972e5669d67ba988ce3dc826706fb0a8b01471c088cb0b6110b805cc36aed"[[package]] - edit in Cargo.lock at line 1866
checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0" - replacement in Cargo.lock at line 1868
"log 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)","try-lock 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)","log","try-lock", - edit in Cargo.lock at line 1876
checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" - edit in Cargo.lock at line 1882
checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f" - replacement in Cargo.lock at line 1886
version = "0.4.2"version = "0.4.3" - edit in Cargo.lock at line 1888
checksum = "c168940144dd21fd8046987c16a46a33d5fc84eec29ef9dcddc2ac9e31526b7c" - edit in Cargo.lock at line 1894
checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a" - edit in Cargo.lock at line 1900
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" - replacement in Cargo.lock at line 1902[3.116851]→[3.116851:117039](∅→∅),[3.116851]→[3.116851:117039](∅→∅),[3.116851]→[3.116851:117039](∅→∅),[3.116851]→[3.116851:117039](∅→∅),[3.116851]→[3.116851:117039](∅→∅),[3.116851]→[3.116851:117039](∅→∅),[3.116851]→[3.116851:117039](∅→∅)
"winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)","winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)","winapi-i686-pc-windows-gnu","winapi-x86_64-pc-windows-gnu", - edit in Cargo.lock at line 1910
checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc" - edit in Cargo.lock at line 1916
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" - edit in Cargo.lock at line 1922
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" - replacement in Cargo.lock at line 1924
"winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)","winapi 0.3.9", - edit in Cargo.lock at line 1931[3.117634][44.45713]
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" - edit in Cargo.lock at line 1937
checksum = "b2986deb581c4fe11b621998a5e53361efe6b48a151178d0cd9eeffa4dc6acc9" - replacement in Cargo.lock at line 1939
"winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)","winapi 0.3.9", - edit in Cargo.lock at line 1946
checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e" - replacement in Cargo.lock at line 1948
"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)","winapi 0.2.8","winapi-build", - edit in Cargo.lock at line 1956
checksum = "0b1b52e6e8614d4a58b8e70cf51ec0cc21b256ad8206708bcff8139b5bbd6a59" - replacement in Cargo.lock at line 1958[3.118746]→[3.71545:71616](∅→∅),[3.88555]→[3.118816:118886](∅→∅),[3.76208]→[3.118816:118886](∅→∅),[3.118816]→[3.118816:118886](∅→∅),[3.71616]→[3.118816:118886](∅→∅),[3.118886]→[3.71617:71768](∅→∅)
"log 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)","mac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","markup5ever 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)","time 0.1.44 (registry+https://github.com/rust-lang/crates.io-index)","log","mac","markup5ever","time", - replacement in Cargo.lock at line 1967
source = "git+https://gitlab.com/xmpp-rs/xmpp-rs#b85aa293770d22cca11fd7ca3802b5920e1ab6fa"source = "git+https://gitlab.com/xmpp-rs/xmpp-rs?branch=main#e1f2e2653a9c14409a04bc4fcd7b10ce842871ea" - replacement in Cargo.lock at line 1969
"base64 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)","blake2 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)","chrono 0.4.15 (registry+https://github.com/rust-lang/crates.io-index)","digest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)","jid 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)","minidom 0.12.0 (git+https://gitlab.com/xmpp-rs/xmpp-rs)","sha-1 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)","sha2 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)","sha3 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)","base64 0.12.3","blake2","chrono","digest 0.9.0","jid","minidom","sha-1 0.9.1","sha2 0.9.1","sha3", - edit in Cargo.lock at line 1979[3.120693]→[3.120693:120705](∅→∅),[3.120693]→[3.120693:120705](∅→∅),[3.120693]→[3.120693:120705](∅→∅),[3.120693]→[3.120693:120705](∅→∅),[3.120693]→[3.120693:120705](∅→∅),[3.120693]→[3.120693:120705](∅→∅),[3.120693]→[3.120693:120705](∅→∅),[3.120705]→[3.72519:72976](∅→∅),[3.90483]→[3.121015:121168](∅→∅),[3.63579]→[3.121015:121168](∅→∅),[3.77189]→[3.121015:121168](∅→∅),[3.89168]→[3.121015:121168](∅→∅),[3.58836]→[3.121015:121168](∅→∅),[3.121015]→[3.121015:121168](∅→∅),[3.66953]→[3.121015:121168](∅→∅),[3.72976]→[3.121015:121168](∅→∅),[3.121168]→[3.72977:73734](∅→∅),[3.91249]→[3.91249:91399](∅→∅),[3.73734]→[3.91249:91399](∅→∅),[3.91399]→[3.73735:74496](∅→∅),[3.91860]→[3.91860:92013](∅→∅),[3.64197]→[3.91860:92013](∅→∅),[3.46429]→[3.91860:92013](∅→∅),[3.50041]→[3.91860:92013](∅→∅),[3.59757]→[3.91860:92013](∅→∅),[3.74496]→[3.91860:92013](∅→∅),[3.92013]→[3.74497:75391](∅→∅),[3.92759]→[3.124034:124185](∅→∅),[3.64792]→[3.124034:124185](∅→∅),[3.79458]→[3.124034:124185](∅→∅),[3.90225]→[3.124034:124185](∅→∅),[3.60504]→[3.124034:124185](∅→∅),[3.124034]→[3.124034:124185](∅→∅),[3.68011]→[3.124034:124185](∅→∅),[3.75391]→[3.124034:124185](∅→∅),[3.124185]→[3.75392:75712](∅→∅),[3.93392]→[3.93392:93545](∅→∅),[3.75712]→[3.93392:93545](∅→∅),[3.93545]→[3.75713:76478](∅→∅),[3.94311]→[3.126363:126515](∅→∅),[3.81322]→[3.126363:126515](∅→∅),[3.126363]→[3.126363:126515](∅→∅),[3.76478]→[3.126363:126515](∅→∅),[3.126515]→[3.76479:76625](∅→∅),[3.126661]→[3.126661:126980](∅→∅),[3.76625]→[3.126661:126980](∅→∅),[3.126980]→[3.94312:94468](∅→∅),[3.94468]→[3.127136:127601](∅→∅),[3.127136]→[3.127136:127601](∅→∅),[3.127601]→[3.76626:81018](∅→∅),[3.95822]→[3.130002:130306](∅→∅),[3.82528]→[3.130002:130306](∅→∅),[3.130002]→[3.130002:130306](∅→∅),[3.81018]→[3.130002:130306](∅→∅),[3.130306]→[3.81019:81626](∅→∅),[3.96731]→[3.62336:62488](∅→∅),[3.81626]→[3.62336:62488](∅→∅),[3.96883]→[3.131366:131512](∅→∅),[3.66326]→[3.131366:131512](∅→∅),[3.83735]→[3.131366:131512](∅→∅),[3.92219]→[3.131366:131512](∅→∅),[3.62488]→[3.131366:131512](∅→∅),[3.131366]→[3.131366:131512](∅→∅),[3.69852]→[3.131366:131512](∅→∅),[3.131512]→[3.81627:81934](∅→∅),[3.97038]→[3.131666:131816](∅→∅),[3.83890]→[3.131666:131816](∅→∅),[3.131666]→[3.131666:131816](∅→∅),[3.81934]→[3.131666:131816](∅→∅),[3.131816]→[3.81935:82613](∅→∅),[3.132565]→[3.132565:132712](∅→∅),[3.82613]→[3.132565:132712](∅→∅),[3.132712]→[3.82614:84149](∅→∅),[3.98115]→[3.134094:134250](∅→∅),[3.66633]→[3.134094:134250](∅→∅),[3.84810]→[3.134094:134250](∅→∅),[3.92839]→[3.134094:134250](∅→∅),[3.49013]→[3.134094:134250](∅→∅),[3.63553]→[3.134094:134250](∅→∅),[3.134094]→[3.134094:134250](∅→∅),[3.70473]→[3.134094:134250](∅→∅),[3.84149]→[3.134094:134250](∅→∅),[3.134250]→[3.84150:84305](∅→∅),[3.98737]→[3.98737:98886](∅→∅),[3.84305]→[3.98737:98886](∅→∅),[3.98886]→[3.84306:86011](∅→∅),[3.135946]→[3.135946:136105](∅→∅),[3.86011]→[3.135946:136105](∅→∅),[3.136105]→[3.86012:87242](∅→∅),[3.100408]→[3.100408:100560](∅→∅),[3.87242]→[3.100408:100560](∅→∅),[3.100560]→[3.87243:87697](∅→∅),[3.49480]→[3.64170:64320](∅→∅),[3.64170]→[3.64170:64320](∅→∅),[3.87697]→[3.64170:64320](∅→∅),[3.64320]→[3.87698:87849](∅→∅),[3.101626]→[3.101626:101775](∅→∅),[3.87849]→[3.101626:101775](∅→∅),[3.101775]→[3.87850:88926](∅→∅),[3.102696]→[3.102696:102843](∅→∅),[3.50247]→[3.102696:102843](∅→∅),[3.65245]→[3.102696:102843](∅→∅),[3.88926]→[3.102696:102843](∅→∅),[3.102843]→[3.88927:90623](∅→∅),[3.142357]→[3.104379:104526](∅→∅),[3.90623]→[3.104379:104526](∅→∅),[3.104526]→[3.90624:91244](∅→∅),[3.143595]→[3.66797:66946](∅→∅),[3.91244]→[3.66797:66946](∅→∅),[3.104977]→[3.104977:105126](∅→∅),[3.68952]→[3.104977:105126](∅→∅),[3.95292]→[3.104977:105126](∅→∅),[3.66946]→[3.104977:105126](∅→∅),[3.72926]→[3.104977:105126](∅→∅),[3.105126]→[3.91245:91699](∅→∅),[3.105583]→[3.105583:105733](∅→∅),[3.95593]→[3.105583:105733](∅→∅),[3.52091]→[3.105583:105733](∅→∅),[3.67403]→[3.105583:105733](∅→∅),[3.73227]→[3.105583:105733](∅→∅),[3.91699]→[3.105583:105733](∅→∅),[3.105733]→[3.91700:91852](∅→∅),[3.52394]→[3.67706:67858](∅→∅),[3.67706]→[3.67706:67858](∅→∅),[3.91852]→[3.67706:67858](∅→∅),[3.67858]→[3.91853:94692](∅→∅),[3.109278]→[3.149404:149559](∅→∅),[3.94291]→[3.149404:149559](∅→∅),[3.149404]→[3.149404:149559](∅→∅),[3.94692]→[3.149404:149559](∅→∅),[3.149559]→[3.94693:95477](∅→∅),[3.109590]→[3.109590:109738](∅→∅),[3.95477]→[3.109590:109738](∅→∅),[3.109738]→[3.95478:96418](∅→∅),[3.151233]→[3.151233:151382](∅→∅),[3.96418]→[3.151233:151382](∅→∅),[3.151382]→[3.96419:96568](∅→∅),[3.110042]→[3.151531:151855](∅→∅),[3.70489]→[3.151531:151855](∅→∅),[3.95513]→[3.151531:151855](∅→∅),[3.97593]→[3.151531:151855](∅→∅),[3.69564]→[3.151531:151855](∅→∅),[3.151531]→[3.151531:151855](∅→∅),[3.75083]→[3.151531:151855](∅→∅),[3.96568]→[3.151531:151855](∅→∅),[3.151855]→[3.96569:96723](∅→∅),[3.110197]→[3.152009:152180](∅→∅),[3.95668]→[3.152009:152180](∅→∅),[3.152009]→[3.152009:152180](∅→∅),[3.96723]→[3.152009:152180](∅→∅),[3.152180]→[3.96724:96873](∅→∅),[3.152630]→[3.152630:152783](∅→∅),[3.96873]→[3.152630:152783](∅→∅),[3.152783]→[3.96874:97109](∅→∅)
[metadata]"checksum addr2line 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1b6a2d3371669ab3ca9797670853d61402b03d0b4b9ebf33d677dfa720203072""checksum adler 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "ee2a4ec343196209d6594e19543ae87a39f96d5534d7174822a3ad825dd6ed7e""checksum aho-corasick 0.7.13 (registry+https://github.com/rust-lang/crates.io-index)" = "043164d8ba5c4c3035fec9bbee8647c0261d788f3474306f93bb65901cae0e86""checksum ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b""checksum arc-swap 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)" = "4d25d88fd6b8041580a654f9d0c581a047baee2b3efee13275f2fc392fc75034""checksum async-trait 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)" = "687c230d85c0a52504709705fc8a53e4a692b83a2184f03dae73e38e1e93a783""checksum atty 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)" = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8""checksum autocfg 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a""checksum backtrace 0.3.50 (registry+https://github.com/rust-lang/crates.io-index)" = "46254cf2fdcdf1badb5934448c1bcbe046a56537b3987d96c51a7afc5d03f293""checksum base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0b25d992356d2eb0ed82172f5248873db5560c4721f564b13cb5193bda5e668e""checksum base64 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3441f0f7b02788e948e47f457ca01f1d7e6d92c693bc132c22b087d3141c03ff""checksum bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693""checksum blake2 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "94cb07b0da6a73955f8fb85d24c466778e70cda767a568229b104f0264089330""checksum block-buffer 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)" = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b""checksum block-padding 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "fa79dedbb091f449f1f39e53edf88d5dbe95f895dae6135a8d7b881fb5af73f5""checksum byte-tools 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7""checksum byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "08c48aae112d48ed9f069b33538ea9e3e90aa263cfa3d1c24309612b1f7472de""checksum bytes 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)" = "0e4cec68f03f32e44924783795810fa50a7035d8c8ebe78580ad7e6c703fba38""checksum cc 1.0.59 (registry+https://github.com/rust-lang/crates.io-index)" = "66120af515773fb005778dc07c261bd201ec8ce50bd6e7144c927753fe013381""checksum cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822""checksum chrono 0.4.15 (registry+https://github.com/rust-lang/crates.io-index)" = "942f72db697d8767c22d46a598e01f2d3b475501ea43d0db4f16d90259182d0b""checksum clap 2.33.3 (registry+https://github.com/rust-lang/crates.io-index)" = "37e58ac78573c40708d45522f0d80fa2f01cc4f9b4e2bf749807255454312002""checksum cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f""checksum core-foundation 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "57d24c7a13c43e870e37c1556b74555437870a04514f7685f5b354e090567171""checksum core-foundation-sys 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b3a71ab494c0b5b860bdc8407ae08978052417070c2ced38573a9157ad75b8ac""checksum crypto-mac 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4434400df11d95d556bac068ddfedd482915eb18fe8bea89bc80b6e4b1c179e5""checksum digest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f3d0c8c8752312f9713efd397ff63acb9f85585afbf179282e720e7704954dd5""checksum enum-as-inner 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7c5f0096a91d210159eceb2ff5e1c4da18388a170e1e3ce948aac9c8fdbbf595""checksum env_logger 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "44533bbbb3bb3c1fa17d9f2e4e38bbbaf8396ba82193c4cb1b6445d711445d36""checksum failure 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "d32e9bd16cc02eae7db7ef620b392808b89f6a5e16bb3497d159c6b92a0f4f86""checksum failure_derive 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "aa4da3c766cd7a0db8242e326e9e4e081edd567072893ed320008189715366a4""checksum fake-simd 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed""checksum fnv 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)" = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1""checksum foreign-types 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1""checksum foreign-types-shared 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b""checksum fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba""checksum fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82""checksum fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7""checksum futf 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "7c9c1ce3fa9336301af935ab852c437817d14cd33690446569392e65170aac3b""checksum futures 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "1e05b85ec287aac0dc34db7d4a569323df697f9c55b99b15d6b4ef8cde49f613""checksum futures-channel 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "f366ad74c28cca6ba456d95e6422883cfb4b252a83bed929c83abfdbbf2967d5""checksum futures-core 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "59f5fff90fd5d971f936ad674802482ba441b6f09ba5e15fd8b39145582ca399""checksum futures-executor 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "10d6bb888be1153d3abeb9006b11b02cf5e9b209fda28693c31ae1e4e012e314""checksum futures-io 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "de27142b013a8e869c14957e6d2edeef89e97c289e69d042ee3a49acd8b51789""checksum futures-macro 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "d0b5a30a4328ab5473878237c447333c093297bded83a4983d10f4deea240d39""checksum futures-sink 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "3f2032893cb734c7a05d85ce0cc8b8c4075278e93b24b66f9de99d6eb0fa8acc""checksum futures-task 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "bdb66b5f09e22019b1ab0830f7785bcea8e7a42148683f99214f73f8ec21a626""checksum futures-util 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "8764574ff08b701a084482c3c7031349104b07ac897393010494beaa18ce32c6""checksum generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)" = "c68f0274ae0e023facc3c97b2e00f076be70e254bc851d972503b328db79b2ec""checksum getrandom 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)" = "7abc8dd8451921606d809ba32e95b6111925cd2906060d2dcc29c070220503eb""checksum gimli 0.22.0 (registry+https://github.com/rust-lang/crates.io-index)" = "aaf91faf136cb47367fa430cd46e37a788775e7fa104f8b4bcb3861dc389b724""checksum h2 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "993f9e0baeed60001cf565546b0d3dbe6a6ad23f2bd31644a133c641eccf6d53""checksum hashbrown 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "00d63df3d41950fb462ed38308eea019113ad1508da725bbedcd0fa5a85ef5f7""checksum heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "20564e78d53d2bb135c343b3f47714a56af2061f1c928fdb541dc7b9fdd94205""checksum hermit-abi 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)" = "3deed196b6e7f9e44a2ae8d94225d80302d81208b1bb673fd21fe634645c85a9""checksum hmac 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "5dcb5e64cda4c23119ab41ba960d1e170a774c8e4b9d9e6a9bc18aabf5e59695""checksum hostname 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867""checksum http 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "28d569972648b2c512421b5f2a405ad6ac9666547189d0c5477a3f200f3e02f9""checksum http-body 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "13d5ff830006f7646652e057693569bfe0d51760c0085a071769d142a205111b""checksum httparse 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "cd179ae861f0c2e53da70d892f5f3029f9594be0c41dc5269cd371691b1dc2f9""checksum humantime 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f""checksum hyper 0.13.7 (registry+https://github.com/rust-lang/crates.io-index)" = "3e68a8dd9716185d9e64ea473ea6ef63529252e3e27623295a0378a19665d5eb""checksum idna 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "02e2673c30ee86b5b96a9cb52ad15718aa1f966f5ab9ad54a8b95d5ca33120a9""checksum indexmap 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "55e2e4c765aa53a0424761bf9f41aa7a6ac1efa87238f59560640e27fca028f2""checksum iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e""checksum ipconfig 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f7e2f18aece9709094573a9f24f483c4f65caa4298e2f7ae1b71cc65d853fad7""checksum itoa 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "dc6f3ad7b9d11a0c00842ff8de1b60ee58661048eb8049ed33c73594f359d7e6""checksum jid 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3d9f987c3ff1c2c7d477c9e0a3dc25cc58ea97692b19a53018089109445b4ab3""checksum keccak 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "67c21572b4949434e4fc1e1978b99c5f77064153c59d998bf13ecd96fb5ecba7""checksum kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d""checksum lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646""checksum libc 0.2.76 (registry+https://github.com/rust-lang/crates.io-index)" = "755456fae044e6fa1ebbbd1b3e902ae19e73097ed4ed87bb79934a867c007bc3""checksum linked-hash-map 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "8dd5a6d5999d9907cda8ed67bbd137d3af8085216c2ac62de5be860bd41f304a""checksum log 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)" = "4fabed175da42fed1fa0746b0ea71f412aa9d35e76e95e59b192c64b9dc2bf8b""checksum lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "31e24f1ad8321ca0e8a1e0ac13f23cb668e6f5466c2c57319f6a5cf1cc8e3b1c""checksum mac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4""checksum markup5ever 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "aae38d669396ca9b707bfc3db254bc382ddb94f57cc5c235f34623a669a01dab""checksum match_cfg 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4""checksum matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08""checksum memchr 2.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3728d817d99e5ac407411fa471ff9800a778d88a24685968b36824eaf4bee400""checksum minidom 0.12.0 (git+https://gitlab.com/xmpp-rs/xmpp-rs)" = "<none>""checksum miniz_oxide 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4d7559a8a40d0f97e1edea3220f698f78b1c5ab67532e49f68fde3910323b722""checksum mio 0.6.22 (registry+https://github.com/rust-lang/crates.io-index)" = "fce347092656428bc8eaf6201042cb551b8d67855af7374542a92a0fbfcac430""checksum mio-uds 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)" = "afcb699eb26d4332647cc848492bbc15eafb26f08d0304550d5aa1f612e066f0""checksum miow 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "8c1f2f3b1cf331de6896aabf6e9d55dca90356cc9960cca7eaaf408a355ae919""checksum native-tls 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "2b0d88c06fe90d5ee94048ba40409ef1d9315d86f6f38c2efdaad4fb50c58b2d""checksum net2 0.2.35 (registry+https://github.com/rust-lang/crates.io-index)" = "3ebc3ec692ed7c9a255596c67808dee269f64655d8baf7b4f0638e51ba1d6853""checksum new_debug_unreachable 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54""checksum num-integer 0.1.43 (registry+https://github.com/rust-lang/crates.io-index)" = "8d59457e662d541ba17869cf51cf177c0b5f0cbf476c66bdc90bf1edac4f875b""checksum num-traits 0.2.12 (registry+https://github.com/rust-lang/crates.io-index)" = "ac267bcc07f48ee5f8935ab0d24f316fb722d7a1292e2913f0cc196b29ffd611""checksum num_cpus 1.13.0 (registry+https://github.com/rust-lang/crates.io-index)" = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3""checksum object 0.20.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1ab52be62400ca80aa00285d25253d7f7c437b7375c4de678f5405d3afe82ca5""checksum once_cell 1.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "260e51e7efe62b592207e9e13a68e43692a7a279171d6ba57abd208bf23645ad""checksum opaque-debug 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2839e79665f131bdb5782e51f2c6c9599c133c6098982a54c794358bf432529c""checksum openssl 0.10.30 (registry+https://github.com/rust-lang/crates.io-index)" = "8d575eff3665419f9b83678ff2815858ad9d11567e082f5ac1814baba4e2bcb4""checksum openssl-probe 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "77af24da69f9d9341038eba93a073b1fdaaa1b788221b00a69bce9e762cb32de""checksum openssl-sys 0.9.58 (registry+https://github.com/rust-lang/crates.io-index)" = "a842db4709b604f0fe5d1170ae3565899be2ad3d9cbc72dedc789ac0511f78de""checksum pbkdf2 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "006c038a43a45995a9670da19e67600114740e8511d4333bf97a56e66a7542d9""checksum percent-encoding 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e""checksum phf 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12""checksum phf_codegen 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "cbffee61585b0411840d3ece935cce9cb6321f01c45477d30066498cd5e1a815""checksum phf_generator 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526""checksum phf_shared 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7""checksum pin-project 0.4.23 (registry+https://github.com/rust-lang/crates.io-index)" = "ca4433fff2ae79342e497d9f8ee990d174071408f28f726d6d83af93e58e48aa""checksum pin-project-internal 0.4.23 (registry+https://github.com/rust-lang/crates.io-index)" = "2c0e815c3ee9a031fdf5af21c10aa17c573c9c6a566328d99e3936c34e36461f""checksum pin-project-lite 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "282adbf10f2698a7a77f8e983a74b2d18176c19a7fd32a45446139ae7b02b715""checksum pin-utils 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184""checksum pkg-config 0.3.18 (registry+https://github.com/rust-lang/crates.io-index)" = "d36492546b6af1463394d46f0c834346f31548646f6ba10849802c9c9a27ac33""checksum ppv-lite86 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)" = "c36fa947111f5c62a733b652544dd0016a43ce89619538a8ef92724a6f501a20""checksum precomputed-hash 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c""checksum proc-macro-hack 0.5.18 (registry+https://github.com/rust-lang/crates.io-index)" = "99c605b9a0adc77b7211c6b1f722dcb613d68d66859a44f3d485a6da332b0598""checksum proc-macro-nested 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "eba180dafb9038b050a4c280019bbedf9f2467b61e5d892dcad585bb57aadc5a""checksum proc-macro2 1.0.20 (registry+https://github.com/rust-lang/crates.io-index)" = "175c513d55719db99da20232b06cda8bab6b83ec2d04e3283edf0213c37c1a29""checksum quick-error 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0""checksum quick-xml 0.18.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3cc440ee4802a86e357165021e3e255a9143724da31db1e2ea540214c96a0f82""checksum quote 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)" = "aa563d17ecb180e500da1cfd2b028310ac758de548efdd203e18f283af693f37""checksum rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)" = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03""checksum rand_chacha 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402""checksum rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b""checksum rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc""checksum rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19""checksum rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c""checksum rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071""checksum rand_pcg 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429""checksum rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2""checksum redox_syscall 0.1.57 (registry+https://github.com/rust-lang/crates.io-index)" = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce""checksum regex 1.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "9c3780fcf44b193bc4d09f36d2a3c87b251da4a046c87795a0d35f4f927ad8e6""checksum regex-syntax 0.6.18 (registry+https://github.com/rust-lang/crates.io-index)" = "26412eb97c6b088a6997e05f69403a802a92d520de2f8e63c2b65f9e0f47c4e8""checksum remove_dir_all 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7""checksum resolv-conf 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)" = "11834e137f3b14e309437a8276714eed3a80d1ef894869e510f2c0c0b98b9f4a""checksum rustc-demangle 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)" = "4c691c0e608126e00913e33f0ccf3727d5fc84573623b8d65b2df340b5201783""checksum ryu 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e""checksum sasl 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "e457758c85b736bbad56dc099406cd2a9c19554cf81880dba7a51d092929e600""checksum schannel 0.1.19 (registry+https://github.com/rust-lang/crates.io-index)" = "8f05ba609c234e60bee0d547fe94a4c7e9da733d1c962cf6e59efa4cd9c8bc75""checksum security-framework 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "64808902d7d99f78eaddd2b4e2509713babc3dc3c85ad6f4c447680f3c01e535""checksum security-framework-sys 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "17bf11d99252f512695eb468de5516e5cf75455521e69dfe343f3b74e4748405""checksum serde 1.0.115 (registry+https://github.com/rust-lang/crates.io-index)" = "e54c9a88f2da7238af84b5101443f0c0d0a3bbdc455e34a5c9497b1903ed55d5""checksum serde_derive 1.0.115 (registry+https://github.com/rust-lang/crates.io-index)" = "609feed1d0a73cc36a0182a840a9b37b4a82f0b1150369f0536a9e3f2a31dc48""checksum serde_json 1.0.57 (registry+https://github.com/rust-lang/crates.io-index)" = "164eacbdb13512ec2745fb09d51fd5b22b0d65ed294a1dcf7285a360c80a675c""checksum sha-1 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f7d94d0bede923b3cea61f3f1ff57ff8cdfd77b400fb8f9998949e0cf04163df""checksum sha2 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a256f46ea78a0c0d9ff00077504903ac881a1dafdc20da66545699e7776b3e69""checksum sha3 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)" = "dd26bc0e7a2e3a7c959bc494caf58b72ee0c71d67704e9520f736ca7e4853ecf""checksum signal-hook-registry 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a3e12110bc539e657a646068aaf5eb5b63af9d0c1f7b29c97113fad80e15f035""checksum siphasher 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "fa8f3741c7372e75519bd9346068370c9cdaabcc1f9599cbcf2a2719352286b7""checksum slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8""checksum smallvec 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "fbee7696b84bbf3d89a1c2eccff0850e3047ed46bfcd2e92c29a2d074d57e252""checksum socket2 0.3.12 (registry+https://github.com/rust-lang/crates.io-index)" = "03088793f677dce356f3ccc2edb1b314ad191ab702a5de3faf49304f7e104918""checksum string_cache 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2940c75beb4e3bf3a494cef919a747a2cb81e52571e212bfbd185074add7208a""checksum string_cache_codegen 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f24c8e5e19d22a726626f1a5e16fe15b132dcf21d10177fa5a45ce7962996b97""checksum strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a""checksum subtle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2d67a5a62ba6e01cb2192ff309324cb4875d0c451d55fe2319433abe7a05a8ee""checksum syn 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)" = "963f7d3cc59b59b9325165add223142bbf1df27655d07789f109896d353d8350""checksum synstructure 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)" = "b834f2d66f734cb897113e34aaff2f1ab4719ca946f9a7358dba8f8064148701""checksum tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6e24d9338a0a5be79593e2fa15a648add6138caa803e2d5bc782c371732ca9""checksum tendril 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "707feda9f2582d5d680d733e38755547a3e8fb471e7ba11452ecfd9ce93a5d3b""checksum termcolor 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bb6bfa289a4d7c5766392812c0a1f4c1ba45afa1ad47803c11e1f407d846d75f""checksum textwrap 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060""checksum thiserror 1.0.20 (registry+https://github.com/rust-lang/crates.io-index)" = "7dfdd070ccd8ccb78f4ad66bf1982dc37f620ef696c6b5028fe2ed83dd3d0d08""checksum thiserror-impl 1.0.20 (registry+https://github.com/rust-lang/crates.io-index)" = "bd80fc12f73063ac132ac92aceea36734f04a1d93c1240c6944e23a3b8841793""checksum thread_local 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d40c6d1b69745a6ec6fb1ca717914848da4b44ae29d9b3080cbee91d72a69b14""checksum time 0.1.44 (registry+https://github.com/rust-lang/crates.io-index)" = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255""checksum tinyvec 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "238ce071d267c5710f9d31451efec16c5ee22de34df17cc05e56cbc92e967117""checksum tokio 0.2.22 (registry+https://github.com/rust-lang/crates.io-index)" = "5d34ca54d84bf2b5b4d7d31e901a8464f7b60ac145a284fba25ceb801f2ddccd""checksum tokio-macros 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "f0c3acc6aa564495a0f2e1d59fab677cd7f81a19994cfc7f3ad0e64301560389""checksum tokio-tls 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "9a70f4fcd7b3b24fb194f837560168208f669ca8cb70d0c4b862944452396343""checksum tokio-util 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "571da51182ec208780505a32528fc5512a8fe1443ab960b3f2f3ef093cd16930""checksum tokio-util 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "be8242891f2b6cbef26a2d7e8605133c2c554cd35b3e4948ea892d6d68436499""checksum tokio-xmpp 2.0.0 (git+https://gitlab.com/xmpp-rs/xmpp-rs)" = "<none>""checksum toml 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)" = "ffc92d160b1eef40665be3a05630d003936a3bc7da7421277846c2613e92c71a""checksum tower-service 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e987b6bf443f4b5b3b6f38704195592cca41c5bb7aedd3c3693c7081f8289860""checksum tracing 0.1.19 (registry+https://github.com/rust-lang/crates.io-index)" = "6d79ca061b032d6ce30c660fded31189ca0b9922bf483cd70759f13a2d86786c""checksum tracing-core 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)" = "4f0e00789804e99b20f12bc7003ca416309d28a6f495d6af58d1e2c2842461b5""checksum trust-dns-proto 0.19.5 (registry+https://github.com/rust-lang/crates.io-index)" = "cdd7061ba6f4d4d9721afedffbfd403f20f39a4301fee1b70d6fcd09cca69f28""checksum trust-dns-resolver 0.19.5 (registry+https://github.com/rust-lang/crates.io-index)" = "0f23cdfdc3d8300b3c50c9e84302d3bd6d860fb9529af84ace6cf9665f181b77""checksum try-lock 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642""checksum typenum 1.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "373c8a200f9e67a0c95e62a4f52fbf80c23b4381c05a17845531982fa99e6b33""checksum unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "49f2bd0c6468a8230e1db229cff8029217cf623c767ea5d60bfbd42729ea54d5""checksum unicode-normalization 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)" = "6fb19cf769fa8c6a80a162df694621ebeb4dafb606470b2b2fce0be40a98a977""checksum unicode-segmentation 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e83e153d1053cbb5a118eeff7fd5be06ed99153f00dbcd8ae310c5fb2b22edc0""checksum unicode-width 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "9337591893a19b88d8d87f2cec1e73fad5cdfd10e5a6f349f498ad6ea2ffb1e3""checksum unicode-xid 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f7fe0bb3479651439c9112f72b6c505038574c9fbb575ed1bf3b797fa39dd564""checksum url 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "829d4a8476c35c9bf0bbce5a3b23f4106f79728039b726d292bb93bc106787cb""checksum utf-8 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)" = "05e42f7c18b8f902290b009cde6d651262f956c98bc51bca4cd1d511c9cd85c7""checksum vcpkg 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)" = "6454029bf181f092ad1b853286f23e2c507d8e8194d01d92da4a55c274a5508c""checksum vec_map 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191""checksum want 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0""checksum wasi 0.10.0+wasi-snapshot-preview1 (registry+https://github.com/rust-lang/crates.io-index)" = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f""checksum wasi 0.9.0+wasi-snapshot-preview1 (registry+https://github.com/rust-lang/crates.io-index)" = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519""checksum widestring 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a763e303c0e0f23b0da40888724762e802a8ffefbc22de4127ef42493c2ea68c""checksum winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a""checksum winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419""checksum winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc""checksum winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6""checksum winapi-util 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178""checksum winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f""checksum winreg 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "b2986deb581c4fe11b621998a5e53361efe6b48a151178d0cd9eeffa4dc6acc9""checksum ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e""checksum xml5ever 0.16.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0b1b52e6e8614d4a58b8e70cf51ec0cc21b256ad8206708bcff8139b5bbd6a59""checksum xmpp-parsers 0.17.0 (git+https://gitlab.com/xmpp-rs/xmpp-rs)" = "<none>"