Update dependencies

[?]
Oct 10, 2020, 11:52 AM
YQRUGY3BXF2WBZ2JJTPIQH72R34Q75YS6A6TZECNMQTGURAGTC3QC

Dependencies

  • [2] F5E5NQPA Fix most clippy warnings
  • [3] 4IPZTMFI Update dependencies
  • [4] LNUU5R56 Support disco#info from XEP-0030 Service Discovery
  • [5] BYJPYYSM Process iq ping response
  • [6] YTN366WA Support disco#items
  • [7] QDHDTOLM Starting support for commands XEP-0050: Ad-Hoc Commands (there no support in xmpp_parsers still)
  • [8] W6GSBP3Z Add id for presence stanzas
  • [9] U3UZTFCH Re-try to subscribe if not subscribed
  • [10] LL3D5CXK Staring using element processor
  • [11] CCLGGFKR Move out XmppConnection into own file
  • [12] GVZ4JAR5 Process self-presence with incoming stanza processor
  • [13] SSOKGGCE Update dependencies
  • [14] KORYGY74 Set presence to account and MUC
  • [15] LQXBWNFT Remove unneeded requirement
  • [16] RRLRZTMR Use element processor for iq
  • [17] AEH7WP42 Make element processors static
  • [18] DCMDASHV Mention XEP-0050 and XEP-0203 support
  • [19] OFLAP2G2 Fix possible utf8 errors
  • [20] SH3LIQ4S Starting commands support
  • [21] PJV5HPIF Starting to imlements timeouts for iqs
  • [22] ZT3YEIVX Consume connection on processing command
  • [23] 2THKW66M Ignore .orig files
  • [24] PLWPCM47 Add id to initital presence
  • [25] JY4F7VBC Use element processor for incoming iq set
  • [26] YEMBT7TB Add support for XEP-0092: Software Version
  • [27] 6UKCVM6E Use new iq processng for initial roster
  • [28] FVVPKFTL Initial commit
  • [29] S754Y5DF Refactor IQ processing Always answer to set and get requests. Use XML encoding for stanzas.
  • [30] WDCZNZOP Fix rustdoc
  • [31] ZFBPXPAD Cleanup timeouted iq requests with ping Output elapsed time. Refactor iq handling.
  • [32] Z3NQEYVI Rename IqSetHandler to IqResuestHandler as it should provide both get and set handling
  • [33] H3RWXT2V Cleanup most warnings
  • [34] 3DSOPLCG Add rustdoc
  • [35] VS6AHRWI Move XMPP to separate dir
  • [36] 7WM64CI7 Implement all previous functionality
  • [37] NXDEBFWR Switch to tokio 0.2 and async
  • [38] RQZCVDFD Implement applying timeout for expired iq await
  • [39] DYRPAV6T Update dependencies
  • [40] HDLI2X4H Ignore delayed XEP-0203 messages
  • [41] 5WHNHD42 Update dependencies
  • [42] GXQCDLYQ Use element processor for incoming iq get
  • [*] X6L47BHQ Use different structure for established xmpp connection

Change contents

  • replacement in src/xmpp/xmpp_connection.rs at line 3
    [3.232][3.0:38]()
    use tokio_xmpp::{AsyncClient, Event};
    [3.232]
    [3.81]
    use tokio_xmpp::{AsyncClient, Event, Packet};
  • edit in src/xmpp/xmpp_connection.rs at line 493
    [3.8389][3.8389:8411](),[3.8411][2.0:204]()
    }
    Either::Right(((result, Either::Left(_)), _)) => {
    if let Ok(connection) = result {
    break Ok(connection);
    }
  • edit in src/xmpp/xmpp_connection.rs at line 494
    [2.226]
    [3.8625]
    Either::Right(((result, Either::Left(_)), _)) => match result {
    Ok(connection) => break Ok(connection),
    Err(account) => {}
    },
  • edit in src/xmpp/xmpp_connection.rs at line 704
    [3.14932]
    [3.13772]
    let account = self.account.clone();
  • replacement in src/xmpp/xmpp_connection.rs at line 747
    [3.15705][3.77:163]()
    Either::Left((stop, _)) => break (Ok(self), Either::Right(stop)),
    [3.15705]
    [3.15791]
    Either::Left((stop, s)) => break (Ok(self), Either::Right(stop)),
  • replacement in src/xmpp/xmpp_connection.rs at line 753
    [3.16029][3.164:222]()
    if self.xmpp_processing(&event) {
    [3.16029]
    [3.16089]
    if (self.xmpp_processing(&event)) {
  • replacement in src/xmpp/xmpp_connection.rs at line 842
    [3.18606][3.223:270]()
    Either::Left(((), _)) => None,
    [3.18606]
    [3.18663]
    Either::Left(((), send_future)) => None,
  • edit in src/xmpp/xmpp_connection.rs at line 859
    [3.29402][3.29402:29419](),[3.19219][3.29402:29419](),[3.29419][3.0:4341]()
    }
    }
    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
    [3.29527][3.4359:5968]()
    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
    [3.32872]
    [3.32872]
    _ => todo!(),
  • replacement in src/xmpp/xmpp_connection.rs at line 945
    [3.21530][3.5969:6274]()
    Either::Right((Ok(_), stop_future)) => {
    self.state
    .data
    .mucs
    .insert(chatroom.0.clone(), chatroom.1.clone());
    Some(stop_future)
    }
    [3.21530]
    [3.21608]
    Either::Right((Ok(_), stop_future)) => Some(stop_future),
  • replacement in src/xmpp/mod.rs at line 2
    [3.25146][3.271:294]()
    use log::{info, warn};
    [3.25146]
    [3.197]
    use log::{error, info, warn};
  • edit in src/xmpp/mod.rs at line 14
    [3.37174]
    [3.4136]
    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
    [3.25834][3.295:357]()
    (Ok(_), Either::Right(None)) => break Ok(()),
    [3.25834]
    [3.25899]
    (Ok(conn), Either::Right(None)) => break Ok(()),
  • replacement in src/xmpp/mod.rs at line 62
    [3.26288][3.358:421]()
    (Err(_), Either::Right(None)) => break Ok(()),
    [3.26288]
    [3.26353]
    (Err(acc), Either::Right(None)) => break Ok(()),
  • replacement in src/xmpp/element_processor.rs at line 0
    [3.11301][2.227:1324]()
    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>
    where
    F: Fn(&mut S, E) -> T + Sync + 'static,
    {
    Processor {
    processors: vec![],
    default: f,
    }
    }
    pub fn register<F, A>(&mut self, f: &'static F)
    where
    F: 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>
    where
    F: Fn(&mut S, E) -> T + Sync + 'static,
    {
    Processor {
    processors: vec![],
    default: f,
    }
    }
    pub fn register<F, A>(&mut self, f: &'static F)
    where
    F: 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
    [3.44840][2.1325:1363]()
    #[allow(clippy::type_complexity)]
  • replacement in src/main.rs at line 97
    [3.30833][2.1364:1442]()
    .body(Body::from("Accepted".to_string()))
    [3.30833]
    [3.30908]
    .body(Body::from(format!("Accepted")))
  • replacement in src/main.rs at line 103
    [3.31243][2.1443:1536]()
    .body(Body::from("Cann't send command".to_string()))
    [3.31243]
    [3.7463]
    .body(Body::from(format!("Cann't get presence text")))
  • replacement in src/main.rs at line 110
    [3.7750][3.1520:1610]()
    .body(Body::from(format!("Cann't get presence text: {}", e)))
    [3.7750]
    [3.7833]
    .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)
    })
    }
    [3.7952]
    [3.50966]
    (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
    [3.51215][2.2056:2094]()
    #[allow(clippy::type_complexity)]
  • replacement in src/main.rs at line 191
    [3.33699][3.1876:1995]()
    if let Err(e) = tokio::signal::ctrl_c().await {
    error!("Cann't wait for Ctrl+C: {}", e);
    }
    [3.33699]
    [3.33738]
    tokio::signal::ctrl_c().await;
  • replacement in src/main.rs at line 215
    [3.34435][3.1996:2373]()
    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);
    }
    [3.34435]
    [3.34581]
    cmd_send.clone().send(XmppCommand::Ping).await;
    cmd_send.send(XmppCommand::TimeoutCleanup).await;
  • replacement in src/main.rs at line 241
    [3.51270][3.2374:2398]()
    http_server.await?;
    [3.51270]
    [3.51329]
    http_server.await;
  • replacement in src/main.rs at line 245
    [3.35331][3.2399:2450]()
    xmpp_join.join().expect("Join to xmpp thread")
    [3.35331]
    [3.61]
    xmpp_join.join().unwrap();
    Ok(())
  • replacement in Cargo.toml at line 10
    [3.36142][3.36142:36202]()
    tokio-xmpp = { git = "https://gitlab.com/xmpp-rs/xmpp-rs" }
    [3.36142]
    [3.36202]
    tokio-xmpp = { git = "https://gitlab.com/xmpp-rs/xmpp-rs", branch = "main" }
  • replacement in Cargo.toml at line 29
    [3.36526][3.36526:36645]()
    xmpp-parsers = { git = "https://gitlab.com/xmpp-rs/xmpp-rs" }
    minidom = { git = "https://gitlab.com/xmpp-rs/xmpp-rs" }
    [3.36526]
    [3.36645]
    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
    [3.31143]
    [3.31143]
    checksum = "1b6a2d3371669ab3ca9797670853d61402b03d0b4b9ebf33d677dfa720203072"
  • replacement in Cargo.lock at line 8
    [3.31160][3.36686:36759]()
    "gimli 0.22.0 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.31160]
    [3.31232]
    "gimli",
  • edit in Cargo.lock at line 15
    [3.36871]
    [3.31234]
    checksum = "ee2a4ec343196209d6594e19543ae87a39f96d5534d7174822a3ad825dd6ed7e"
  • edit in Cargo.lock at line 21
    [3.53318]
    [3.53318]
    checksum = "043164d8ba5c4c3035fec9bbee8647c0261d788f3474306f93bb65901cae0e86"
  • replacement in Cargo.lock at line 23
    [3.53335][3.36892:36965]()
    "memchr 2.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.53335]
    [3.53408]
    "memchr",
  • edit in Cargo.lock at line 30
    [3.53526]
    [3.53526]
    checksum = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b"
  • replacement in Cargo.lock at line 32
    [3.53543][3.36966:37039]()
    "winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.53543]
    [3.53616]
    "winapi 0.3.9",
  • edit in Cargo.lock at line 39
    [3.46912]
    [3.46912]
    checksum = "4d25d88fd6b8041580a654f9d0c581a047baee2b3efee13275f2fc392fc75034"
  • replacement in Cargo.lock at line 43
    [3.37080][3.37080:37099]()
    version = "0.1.40"
    [3.37080]
    [3.53783]
    version = "0.1.41"
  • edit in Cargo.lock at line 45
    [3.53848]
    [3.53848]
    checksum = "b246867b8b3b6ae56035f1eb1ed557c1d8eae97f0d53696138a50fa0e3a3b8c0"
  • replacement in Cargo.lock at line 47
    [3.53865][3.37100:37322]()
    "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)",
    [3.53865]
    [3.53939]
    "proc-macro2",
    "quote",
    "syn",
  • edit in Cargo.lock at line 56
    [3.54052]
    [3.54052]
    checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
  • replacement in Cargo.lock at line 58
    [3.54069][3.37343:37566]()
    "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)",
    [3.54069]
    [3.54288]
    "hermit-abi",
    "libc",
    "winapi 0.3.9",
  • edit in Cargo.lock at line 67
    [3.54403]
    [3.54403]
    checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
  • replacement in Cargo.lock at line 71
    [3.54435][3.37586:37605]()
    version = "0.3.50"
    [3.54435]
    [3.54454]
    version = "0.3.52"
  • edit in Cargo.lock at line 73
    [3.54519]
    [3.54519]
    checksum = "f813291114c186a042350e787af10c26534601062603d888be110f59f85ef8fa"
  • replacement in Cargo.lock at line 75
    [3.54536][3.37606:38063]()
    "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)",
    [3.54536]
    [3.54991]
    "addr2line",
    "cfg-if",
    "libc",
    "miniz_oxide",
    "object",
    "rustc-demangle",
  • edit in Cargo.lock at line 87
    [3.55113]
    [3.55113]
    checksum = "0b25d992356d2eb0ed82172f5248873db5560c4721f564b13cb5193bda5e668e"
  • replacement in Cargo.lock at line 89
    [3.55130][3.38100:38176]()
    "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.55130]
    [3.55272]
    "byteorder",
  • edit in Cargo.lock at line 96
    [3.55387]
    [3.55482]
    checksum = "3441f0f7b02788e948e47f457ca01f1d7e6d92c693bc132c22b087d3141c03ff"
  • edit in Cargo.lock at line 102
    [3.55596]
    [3.55596]
    checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
  • replacement in Cargo.lock at line 106
    [3.55625][3.38216:38234]()
    version = "0.8.1"
    [3.55625]
    [3.55643]
    version = "0.9.0"
  • edit in Cargo.lock at line 108
    [3.55708]
    [3.55708]
    checksum = "84ce5b6108f8e154604bd4eb76a2f726066c3464d5a552a4229262a18c9bb471"
  • replacement in Cargo.lock at line 110
    [3.55725][3.56229:56383](),[3.56383][3.38235:38387]()
    "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)",
    [3.55725]
    [3.56031]
    "byte-tools",
    "byteorder",
    "crypto-mac 0.8.0",
    "digest 0.9.0",
    "opaque-debug 0.2.3",
  • edit in Cargo.lock at line 121
    [3.56603]
    [3.56603]
    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)",
    [3.56620]
    [3.56869]
    "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
    [3.56990]
    [3.56990]
    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)",
    [3.57007]
    [3.56697]
    "byte-tools",
  • edit in Cargo.lock at line 149
    [3.56712]
    [3.56712]
    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
    [3.56815]
    [3.56815]
    checksum = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7"
  • edit in Cargo.lock at line 164
    [3.56930]
    [3.56930]
    checksum = "08c48aae112d48ed9f069b33538ea9e3e90aa263cfa3d1c24309612b1f7472de"
  • edit in Cargo.lock at line 170
    [3.57042]
    [3.57209]
    checksum = "0e4cec68f03f32e44924783795810fa50a7035d8c8ebe78580ad7e6c703fba38"
  • replacement in Cargo.lock at line 174
    [3.57344][3.38703:38722]()
    version = "1.0.59"
    [3.57344]
    [3.57363]
    version = "1.0.61"
  • edit in Cargo.lock at line 176
    [3.57428]
    [3.57428]
    checksum = "ed67cbde08356238e75fc4656be4749481eeffb09e19f320a25237d5221c985d"
  • edit in Cargo.lock at line 182
    [3.57540]
    [3.57540]
    checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
  • replacement in Cargo.lock at line 186
    [3.57569][3.38743:38762]()
    version = "0.4.15"
    [3.57569]
    [3.57587]
    version = "0.4.19"
  • edit in Cargo.lock at line 188
    [3.57652]
    [3.57652]
    checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73"
  • replacement in Cargo.lock at line 190
    [3.57669][3.38763:38992]()
    "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)",
    [3.57669]
    [3.57897]
    "libc",
    "num-integer",
    "num-traits",
    "time",
    "winapi 0.3.9",
  • edit in Cargo.lock at line 201
    [3.58010]
    [3.58010]
    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)",
    [3.58027]
    [3.58554]
    "ansi_term",
    "atty",
    "bitflags",
    "strsim",
    "textwrap",
    "unicode-width",
    "vec_map",
  • edit in Cargo.lock at line 216
    [3.58670]
    [3.58670]
    checksum = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f"
  • replacement in Cargo.lock at line 218
    [3.58687][3.39316:39391]()
    "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.58687]
    [3.58762]
    "bitflags",
  • edit in Cargo.lock at line 225
    [3.58885]
    [3.58885]
    checksum = "57d24c7a13c43e870e37c1556b74555437870a04514f7685f5b354e090567171"
  • replacement in Cargo.lock at line 227
    [3.58902][3.39411:39569]()
    "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)",
    [3.58902]
    [3.59060]
    "core-foundation-sys",
    "libc",
  • edit in Cargo.lock at line 235
    [3.60305]
    [3.60406]
    checksum = "b3a71ab494c0b5b860bdc8407ae08978052417070c2ced38573a9157ad75b8ac"
  • edit in Cargo.lock at line 238
    [3.60419]
    [3.58503]
    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
    [3.60813]
    [3.60813]
    checksum = "4434400df11d95d556bac068ddfedd482915eb18fe8bea89bc80b6e4b1c179e5"
  • replacement in Cargo.lock at line 249
    [3.60830][3.39589:39670](),[3.58623][3.58623:58696](),[3.39670][3.58623:58696]()
    "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)",
    [3.60830]
    [3.60984]
    "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
    [3.61451]
    [3.61451]
    checksum = "f3d0c8c8752312f9713efd397ff63acb9f85585afbf179282e720e7704954dd5"
  • replacement in Cargo.lock at line 269
    [3.61468][3.39690:39771]()
    "generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.61468]
    [3.61549]
    "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
    [3.61669]
    [3.61669]
    checksum = "7c5f0096a91d210159eceb2ff5e1c4da18388a170e1e3ce948aac9c8fdbbf595"
  • replacement in Cargo.lock at line 287
    [3.61686][3.39814:40107]()
    "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)",
    [3.61686]
    [3.61759]
    "heck",
    "proc-macro2",
    "quote",
    "syn",
  • edit in Cargo.lock at line 297
    [3.61877]
    [3.61877]
    checksum = "44533bbbb3bb3c1fa17d9f2e4e38bbbaf8396ba82193c4cb1b6445d711445d36"
  • replacement in Cargo.lock at line 299
    [3.61894][3.40127:40494]()
    "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)",
    [3.61894]
    [3.62260]
    "atty",
    "humantime",
    "log",
    "regex",
    "termcolor",
  • edit in Cargo.lock at line 310
    [3.62588]
    [3.62588]
    checksum = "d32e9bd16cc02eae7db7ef620b392808b89f6a5e16bb3497d159c6b92a0f4f86"
  • replacement in Cargo.lock at line 312
    [3.62605][3.40514:40672]()
    "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)",
    [3.62605]
    [3.62763]
    "backtrace",
    "failure_derive",
  • edit in Cargo.lock at line 320
    [3.62885]
    [3.62885]
    checksum = "aa4da3c766cd7a0db8242e326e9e4e081edd567072893ed320008189715366a4"
  • replacement in Cargo.lock at line 322
    [3.62902][3.40692:40994]()
    "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)",
    [3.62902]
    [3.63206]
    "proc-macro2",
    "quote",
    "syn",
    "synstructure",
  • edit in Cargo.lock at line 332
    [3.63323]
    [3.63323]
    checksum = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed"
  • edit in Cargo.lock at line 338
    [3.63432]
    [3.63432]
    checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
  • edit in Cargo.lock at line 344
    [3.63551]
    [3.63551]
    checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
  • replacement in Cargo.lock at line 346
    [3.63568][3.63568:63655]()
    "foreign-types-shared 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.63568]
    [3.63655]
    "foreign-types-shared",
  • edit in Cargo.lock at line 353
    [3.63783]
    [3.63783]
    checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
  • edit in Cargo.lock at line 359
    [3.59816]
    [3.59816]
    checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba"
  • edit in Cargo.lock at line 365
    [3.64022]
    [3.64022]
    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)",
    [3.64039]
    [3.64199]
    "bitflags",
    "fuchsia-zircon-sys",
  • edit in Cargo.lock at line 375
    [3.64325]
    [3.64325]
    checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7"
  • edit in Cargo.lock at line 381
    [3.64435]
    [3.64435]
    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)",
    [3.64452]
    [3.64610]
    "mac",
    "new_debug_unreachable",
  • replacement in Cargo.lock at line 389
    [3.64642][3.41179:41197]()
    version = "0.3.5"
    [3.64642]
    [3.41197]
    version = "0.3.6"
  • edit in Cargo.lock at line 391
    [3.41262]
    [3.41262]
    checksum = "5d8e3078b7b2a8a671cb7a3d17b4760e4181ea243227776ba83fd043b4ca034e"
  • replacement in Cargo.lock at line 393
    [3.41279][3.41279:41837]()
    "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)",
    [3.41279]
    [3.41837]
    "futures-channel",
    "futures-core",
    "futures-executor",
    "futures-io",
    "futures-sink",
    "futures-task",
    "futures-util",
  • replacement in Cargo.lock at line 404
    [3.41877][3.41877:41895]()
    version = "0.3.5"
    [3.41877]
    [3.41895]
    version = "0.3.6"
  • edit in Cargo.lock at line 406
    [3.41960]
    [3.41960]
    checksum = "a7a4d35f7401e948629c9c3d6638fb9bf94e0b2121e96c3b428cc4e631f3eb74"
  • replacement in Cargo.lock at line 408
    [3.41977][3.41977:42135]()
    "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)",
    [3.41977]
    [3.42135]
    "futures-core",
    "futures-sink",
  • replacement in Cargo.lock at line 414
    [3.42172][3.42172:42190]()
    version = "0.3.5"
    [3.42172]
    [3.64661]
    version = "0.3.6"
  • edit in Cargo.lock at line 416
    [3.64726]
    [3.64726]
    checksum = "d674eaa0056896d5ada519900dbf97ead2e46a7b6621e8160d79e2f2e1e2784b"
  • replacement in Cargo.lock at line 420
    [3.42217][3.42217:42235]()
    version = "0.3.5"
    [3.42217]
    [3.42235]
    version = "0.3.6"
  • edit in Cargo.lock at line 422
    [3.42300]
    [3.42300]
    checksum = "cc709ca1da6f66143b8c9bec8e6260181869893714e9b5a490b169b0414144ab"
  • replacement in Cargo.lock at line 424
    [3.42317][3.42317:42554]()
    "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)",
    [3.42317]
    [3.42554]
    "futures-core",
    "futures-task",
    "futures-util",
  • replacement in Cargo.lock at line 431
    [3.42589][3.42589:42607]()
    version = "0.3.5"
    [3.42589]
    [3.42607]
    version = "0.3.6"
  • edit in Cargo.lock at line 433
    [3.42672]
    [3.42672]
    checksum = "5fc94b64bb39543b4e432f1790b6bf18e3ee3b74653c5449f63310e9a74b123c"
  • replacement in Cargo.lock at line 437
    [3.42708][3.42708:42726]()
    version = "0.3.5"
    [3.42708]
    [3.64782]
    version = "0.3.6"
  • edit in Cargo.lock at line 439
    [3.64847]
    [3.64847]
    checksum = "f57ed14da4603b2554682e9f2ff3c65d7567b53188db96cb71538217fc64581b"
  • replacement in Cargo.lock at line 441
    [3.64864][3.42727:43032]()
    "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)",
    [3.64864]
    [3.43032]
    "proc-macro-hack",
    "proc-macro2",
    "quote",
    "syn",
  • replacement in Cargo.lock at line 449
    [3.43069][3.43069:43087]()
    version = "0.3.5"
    [3.43069]
    [3.43087]
    version = "0.3.6"
  • edit in Cargo.lock at line 451
    [3.43152]
    [3.43152]
    checksum = "0d8764258ed64ebc5d9ed185cf86a95db5cac810269c5d20ececb32e0088abbd"
  • replacement in Cargo.lock at line 455
    [3.43187][3.43187:43205]()
    version = "0.3.5"
    [3.43187]
    [3.43205]
    version = "0.3.6"
  • edit in Cargo.lock at line 457
    [3.43270]
    [3.43270]
    checksum = "4dd26820a9f3637f1302da8bceba3ff33adbe53464b54ca24d4e2d4f1db30f94"
  • replacement in Cargo.lock at line 459
    [3.43287][3.43287:43363]()
    "once_cell 1.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.43287]
    [3.43363]
    "once_cell",
  • replacement in Cargo.lock at line 464
    [3.43400][3.43400:43418]()
    version = "0.3.5"
    [3.43400]
    [3.43418]
    version = "0.3.6"
  • edit in Cargo.lock at line 466
    [3.43483]
    [3.43483]
    checksum = "8a894a0acddba51a2d49a6f4263b1e64b8c579ece8af50fa86503d52cd1eea34"
  • replacement in Cargo.lock at line 468
    [3.43500][3.43500:44442]()
    "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)",
    [3.43500]
    [3.65015]
    "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
    [3.44527]
    [3.44527]
    checksum = "c68f0274ae0e023facc3c97b2e00f076be70e254bc851d972503b328db79b2ec"
  • replacement in Cargo.lock at line 488
    [3.44544][3.44544:44619]()
    "typenum 1.12.0 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.44544]
    [3.44619]
    "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
    [3.44653][3.44653:44672]()
    version = "0.1.14"
    [3.44653]
    [3.65072]
    version = "0.1.15"
  • edit in Cargo.lock at line 505
    [3.65137]
    [3.65137]
    checksum = "fc587bc0ec293155d5bfa6b9891ec18a1e330c234f896ea47fbada4cadbe47e6"
  • replacement in Cargo.lock at line 507
    [3.65154][3.44673:44913]()
    "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)",
    [3.65154]
    [3.65229]
    "cfg-if",
    "libc",
    "wasi 0.9.0+wasi-snapshot-preview1",
  • edit in Cargo.lock at line 516
    [3.45013]
    [3.45013]
    checksum = "aaf91faf136cb47367fa430cd46e37a788775e7fa104f8b4bcb3861dc389b724"
  • edit in Cargo.lock at line 522
    [3.65340]
    [3.65340]
    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)",
    [3.65357]
    [3.45797]
    "bytes",
    "fnv",
    "futures-core",
    "futures-sink",
    "futures-util",
    "http",
    "indexmap",
    "slab",
    "tokio",
    "tokio-util",
    "tracing",
  • replacement in Cargo.lock at line 539
    [3.45831][3.45831:45849]()
    version = "0.9.0"
    [3.45831]
    [3.45849]
    version = "0.9.1"
  • edit in Cargo.lock at line 541
    [3.45914]
    [3.45914]
    checksum = "d7afe4a420e3fe79967a00898cc1f4db7c8a49a9333a29f8a4bd76a253d5cd04"
  • edit in Cargo.lock at line 547
    [3.46024]
    [3.46024]
    checksum = "20564e78d53d2bb135c343b3f47714a56af2061f1c928fdb541dc7b9fdd94205"
  • replacement in Cargo.lock at line 549
    [3.46041][3.46041:46128]()
    "unicode-segmentation 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.46041]
    [3.46128]
    "unicode-segmentation",
  • replacement in Cargo.lock at line 554
    [3.46163][3.46163:46182]()
    version = "0.1.15"
    [3.46163]
    [3.46182]
    version = "0.1.17"
  • edit in Cargo.lock at line 556
    [3.46247]
    [3.46247]
    checksum = "5aca5565f760fb5b220e499d72710ed156fdb74e631659e99377d9ebfbd13ae8"
  • replacement in Cargo.lock at line 558
    [3.46264][3.46264:46336]()
    "libc 0.2.76 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.46264]
    [3.60719]
    "libc",
  • edit in Cargo.lock at line 565
    [3.60831]
    [3.60831]
    checksum = "5dcb5e64cda4c23119ab41ba960d1e170a774c8e4b9d9e6a9bc18aabf5e59695"
  • replacement in Cargo.lock at line 567
    [3.60848][3.60848:60925](),[3.60925][3.46356:46429]()
    "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)",
    [3.60848]
    [3.66088]
    "crypto-mac 0.7.0",
    "digest 0.8.1",
  • edit in Cargo.lock at line 575
    [3.66483]
    [3.66483]
    checksum = "3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867"
  • replacement in Cargo.lock at line 577
    [3.66500][3.46449:46670]()
    "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)",
    [3.66500]
    [3.66646]
    "libc",
    "match_cfg",
    "winapi 0.3.9",
  • edit in Cargo.lock at line 586
    [3.46754]
    [3.46754]
    checksum = "28d569972648b2c512421b5f2a405ad6ac9666547189d0c5477a3f200f3e02f9"
  • replacement in Cargo.lock at line 588
    [3.46771][3.46771:46984]()
    "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)",
    [3.46771]
    [3.46984]
    "bytes",
    "fnv",
    "itoa",
  • edit in Cargo.lock at line 597
    [3.66759]
    [3.66759]
    checksum = "13d5ff830006f7646652e057693569bfe0d51760c0085a071769d142a205111b"
  • replacement in Cargo.lock at line 599
    [3.66776][3.47037:47180]()
    "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)",
    [3.66776]
    [3.41212]
    "bytes",
    "http",
  • edit in Cargo.lock at line 606
    [3.47199]
    [3.67041]
    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
    [3.67106]
    [3.67106]
    checksum = "494b4d60369511e7dea41cf646832512a94e542f68bb9c49e54518e0f468eb47"
  • edit in Cargo.lock at line 619
    [3.67221]
    [3.67221]
    checksum = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f"
  • replacement in Cargo.lock at line 621
    [3.67238][3.47219:47297]()
    "quick-error 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.67238]
    [3.67316]
    "quick-error",
  • replacement in Cargo.lock at line 626
    [3.67346][3.47298:47317]()
    version = "0.13.7"
    [3.67346]
    [3.67366]
    version = "0.13.8"
  • edit in Cargo.lock at line 628
    [3.67431]
    [3.67431]
    checksum = "2f3afcfae8af5ad0576a31e768415edb627824129e8e5a29b8bfccb2f234e835"
  • replacement in Cargo.lock at line 630
    [3.67448][3.47318:48517]()
    "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)",
    [3.67448]
    [3.68952]
    "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
    [3.69064]
    [3.69064]
    checksum = "02e2673c30ee86b5b96a9cb52ad15718aa1f966f5ab9ad54a8b95d5ca33120a9"
  • replacement in Cargo.lock at line 654
    [3.69081][3.69081:69234](),[3.69234][3.48537:48626]()
    "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)",
    [3.69081]
    [3.69322]
    "matches",
    "unicode-bidi",
    "unicode-normalization",
  • edit in Cargo.lock at line 663
    [3.69438]
    [3.48646]
    checksum = "55e2e4c765aa53a0424761bf9f41aa7a6ac1efa87238f59560640e27fca028f2"
  • replacement in Cargo.lock at line 665
    [3.48663][3.48663:48813]()
    "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)",
    [3.48663]
    [3.48813]
    "autocfg",
    "hashbrown",
  • edit in Cargo.lock at line 673
    [3.69549]
    [3.69549]
    checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e"
  • replacement in Cargo.lock at line 675
    [3.69566][3.48835:48907]()
    "libc 0.2.76 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.69566]
    [3.69711]
    "libc",
  • edit in Cargo.lock at line 682
    [3.69827]
    [3.69827]
    checksum = "f7e2f18aece9709094573a9f24f483c4f65caa4298e2f7ae1b71cc65d853fad7"
  • replacement in Cargo.lock at line 684
    [3.69844][3.48927:49225]()
    "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)",
    [3.69844]
    [3.70219]
    "socket2",
    "widestring",
    "winapi 0.3.9",
    "winreg",
  • edit in Cargo.lock at line 694
    [3.70331]
    [3.70331]
    checksum = "dc6f3ad7b9d11a0c00842ff8de1b60ee58661048eb8049ed33c73594f359d7e6"
  • edit in Cargo.lock at line 700
    [3.70440]
    [3.70440]
    checksum = "3d9f987c3ff1c2c7d477c9e0a3dc25cc58ea97692b19a53018089109445b4ab3"
  • replacement in Cargo.lock at line 702
    [3.70457][3.49264:49324]()
    "minidom 0.12.0 (git+https://gitlab.com/xmpp-rs/xmpp-rs)",
    [3.70457]
    [3.70687]
    "minidom",
  • edit in Cargo.lock at line 709
    [3.70801]
    [3.70801]
    checksum = "67c21572b4949434e4fc1e1978b99c5f77064153c59d998bf13ecd96fb5ecba7"
  • edit in Cargo.lock at line 715
    [3.70919]
    [3.70919]
    checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d"
  • replacement in Cargo.lock at line 717
    [3.70936][3.70936:71088](),[3.70936][3.70936:71088](),[3.70936][3.70936:71088]()
    "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)",
    [3.70936]
    [3.71088]
    "winapi 0.2.8",
    "winapi-build",
  • edit in Cargo.lock at line 725
    [3.71207]
    [3.71207]
    checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
  • replacement in Cargo.lock at line 729
    [3.71348][3.49344:49363]()
    version = "0.2.76"
    [3.71348]
    [3.71367]
    version = "0.2.79"
  • edit in Cargo.lock at line 731
    [3.71432]
    [3.71432]
    checksum = "2448f6066e80e3bfc792e9c98bf705b4b0fc6e8ef5b43e5889aff0eaa9c58743"
  • edit in Cargo.lock at line 737
    [3.71667]
    [3.54759]
    checksum = "8dd5a6d5999d9907cda8ed67bbd137d3af8085216c2ac62de5be860bd41f304a"
  • edit in Cargo.lock at line 743
    [3.54868]
    [3.54868]
    checksum = "4fabed175da42fed1fa0746b0ea71f412aa9d35e76e95e59b192c64b9dc2bf8b"
  • replacement in Cargo.lock at line 745
    [3.54885][3.49403:49477]()
    "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.54885]
    [3.72039]
    "cfg-if",
  • edit in Cargo.lock at line 752
    [3.72156]
    [3.72156]
    checksum = "31e24f1ad8321ca0e8a1e0ac13f23cb668e6f5466c2c57319f6a5cf1cc8e3b1c"
  • replacement in Cargo.lock at line 754
    [3.72173][3.49478:49560]()
    "linked-hash-map 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.72173]
    [3.72255]
    "linked-hash-map",
  • edit in Cargo.lock at line 761
    [3.72366]
    [3.72366]
    checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4"
  • edit in Cargo.lock at line 767
    [3.72483]
    [3.72483]
    checksum = "aae38d669396ca9b707bfc3db254bc382ddb94f57cc5c235f34623a669a01dab"
  • replacement in Cargo.lock at line 769
    [3.72500][3.49581:50199](),[3.73047][3.63546:63620](),[3.50199][3.63546:63620]()
    "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)",
    [3.72500]
    [3.73121]
    "log",
    "phf",
    "phf_codegen",
    "serde",
    "serde_derive",
    "serde_json",
    "string_cache",
    "string_cache_codegen",
    "tendril",
  • edit in Cargo.lock at line 784
    [3.50302]
    [3.50302]
    checksum = "ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4"
  • edit in Cargo.lock at line 790
    [3.73236]
    [3.73236]
    checksum = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08"
  • edit in Cargo.lock at line 796
    [3.73348]
    [3.73348]
    checksum = "3728d817d99e5ac407411fa471ff9800a778d88a24685968b36824eaf4bee400"
  • replacement in Cargo.lock at line 801
    [3.50371][3.50371:50462]()
    source = "git+https://gitlab.com/xmpp-rs/xmpp-rs#b85aa293770d22cca11fd7ca3802b5920e1ab6fa"
    [3.50371]
    [3.50462]
    source = "git+https://gitlab.com/xmpp-rs/xmpp-rs?branch=main#e1f2e2653a9c14409a04bc4fcd7b10ce842871ea"
  • replacement in Cargo.lock at line 803
    [3.50479][3.50479:50556]()
    "quick-xml 0.18.1 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.50479]
    [3.50556]
    "quick-xml",
  • replacement in Cargo.lock at line 808
    [3.50580][3.50580:50598]()
    version = "0.4.1"
    [3.50580]
    [3.73512]
    version = "0.4.3"
  • edit in Cargo.lock at line 810
    [3.73577]
    [3.73577]
    checksum = "0f2d26ec3309788e423cfbf68ad1800f061638098d76a83681af979dc4eda19d"
  • replacement in Cargo.lock at line 812
    [3.73594][3.50599:50671]()
    "adler 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.73594]
    [3.73826]
    "adler",
    "autocfg",
  • edit in Cargo.lock at line 820
    [3.73938]
    [3.73938]
    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)",
    [3.73955]
    [3.74776]
    "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
    [3.74891]
    [3.74891]
    checksum = "afcb699eb26d4332647cc848492bbc15eafb26f08d0304550d5aa1f612e066f0"
  • replacement in Cargo.lock at line 841
    [3.74908][3.51076:51291]()
    "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)",
    [3.74908]
    [3.75123]
    "iovec",
    "libc",
    "mio",
  • edit in Cargo.lock at line 850
    [3.75235]
    [3.75235]
    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)",
    [3.75252]
    [3.75553]
    "kernel32-sys",
    "net2",
    "winapi 0.2.8",
    "ws2_32-sys",
  • edit in Cargo.lock at line 862
    [3.75671]
    [3.75671]
    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)",
    [3.75688]
    [3.76468]
    "lazy_static",
    "libc",
    "log",
    "openssl",
    "openssl-probe",
    "openssl-sys",
    "schannel",
    "security-framework",
    "security-framework-sys",
    "tempfile",
  • edit in Cargo.lock at line 880
    [3.76581]
    [3.76581]
    checksum = "3ebc3ec692ed7c9a255596c67808dee269f64655d8baf7b4f0638e51ba1d6853"
  • replacement in Cargo.lock at line 882
    [3.76598][3.52107:52326]()
    "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)",
    [3.76598]
    [3.76816]
    "cfg-if",
    "libc",
    "winapi 0.3.9",
  • edit in Cargo.lock at line 891
    [3.76945]
    [3.76945]
    checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54"
  • edit in Cargo.lock at line 897
    [3.77176]
    [3.77176]
    checksum = "8d59457e662d541ba17869cf51cf177c0b5f0cbf476c66bdc90bf1edac4f875b"
  • replacement in Cargo.lock at line 899
    [3.77193][3.52366:52518]()
    "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)",
    [3.77193]
    [3.77270]
    "autocfg",
    "num-traits",
  • edit in Cargo.lock at line 907
    [3.77388]
    [3.52539]
    checksum = "ac267bcc07f48ee5f8935ab0d24f316fb722d7a1292e2913f0cc196b29ffd611"
  • replacement in Cargo.lock at line 909
    [3.52556][3.52556:52630]()
    "autocfg 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.52556]
    [3.52630]
    "autocfg",
  • edit in Cargo.lock at line 916
    [3.77503]
    [3.77503]
    checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3"
  • replacement in Cargo.lock at line 918
    [3.77520][3.52653:52803]()
    "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)",
    [3.77520]
    [3.77592]
    "hermit-abi",
    "libc",
  • edit in Cargo.lock at line 926
    [3.52904]
    [3.52904]
    checksum = "1ab52be62400ca80aa00285d25253d7f7c437b7375c4de678f5405d3afe82ca5"
  • edit in Cargo.lock at line 932
    [3.53019]
    [3.53019]
    checksum = "260e51e7efe62b592207e9e13a68e43692a7a279171d6ba57abd208bf23645ad"
  • edit in Cargo.lock at line 938
    [3.65427]
    [3.77712]
    checksum = "2839e79665f131bdb5782e51f2c6c9599c133c6098982a54c794358bf432529c"
  • edit in Cargo.lock at line 941
    [3.77725]
    [3.77725]
    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
    [3.77827]
    [3.77827]
    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)",
    [3.77844]
    [3.78301]
    "bitflags",
    "cfg-if",
    "foreign-types",
    "lazy_static",
    "libc",
    "openssl-sys",
  • edit in Cargo.lock at line 964
    [3.78422]
    [3.78422]
    checksum = "77af24da69f9d9341038eba93a073b1fdaaa1b788221b00a69bce9e762cb32de"
  • edit in Cargo.lock at line 970
    [3.78540]
    [3.78540]
    checksum = "a842db4709b604f0fe5d1170ae3565899be2ad3d9cbc72dedc789ac0511f78de"
  • replacement in Cargo.lock at line 972
    [3.78557][3.53473:53840]()
    "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)",
    [3.78557]
    [3.78929]
    "autocfg",
    "cc",
    "libc",
    "pkg-config",
    "vcpkg",
  • edit in Cargo.lock at line 983
    [3.79047]
    [3.79047]
    checksum = "006c038a43a45995a9670da19e67600114740e8511d4333bf97a56e66a7542d9"
  • replacement in Cargo.lock at line 985
    [3.79064][3.53876:54029]()
    "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)",
    [3.79064]
    [3.79149]
    "byteorder",
    "crypto-mac 0.7.0",
  • edit in Cargo.lock at line 993
    [3.79268]
    [3.79445]
    checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
  • edit in Cargo.lock at line 999
    [3.79567]
    [3.79567]
    checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12"
  • replacement in Cargo.lock at line 1001
    [3.79584][3.54107:54184]()
    "phf_shared 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.79584]
    [3.66505]
    "phf_shared",
  • edit in Cargo.lock at line 1008
    [3.66619]
    [3.66619]
    checksum = "cbffee61585b0411840d3ece935cce9cb6321f01c45477d30066498cd5e1a815"
  • replacement in Cargo.lock at line 1010
    [3.66636][3.54225:54382]()
    "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)",
    [3.66636]
    [3.80239]
    "phf_generator",
    "phf_shared",
  • edit in Cargo.lock at line 1018
    [3.80363]
    [3.54425]
    checksum = "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526"
  • replacement in Cargo.lock at line 1020
    [3.54442][3.54442:54590]()
    "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)",
    [3.54442]
    [3.54590]
    "phf_shared",
    "rand",
  • edit in Cargo.lock at line 1028
    [3.80473]
    [3.80473]
    checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7"
  • replacement in Cargo.lock at line 1030
    [3.80490][3.54632:54708]()
    "siphasher 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.80490]
    [3.80568]
    "siphasher",
  • replacement in Cargo.lock at line 1035
    [3.54730][3.54730:54749]()
    version = "0.4.23"
    [3.54730]
    [3.80623]
    version = "0.4.26"
  • edit in Cargo.lock at line 1037
    [3.80688]
    [3.80688]
    checksum = "13fbdfd6bdee3dc9be46452f86af4a4072975899cf8592466668620bebfbcc17"
  • replacement in Cargo.lock at line 1039
    [3.80705][3.54750:54838]()
    "pin-project-internal 0.4.23 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.80705]
    [3.80864]
    "pin-project-internal",
  • replacement in Cargo.lock at line 1044
    [3.54869][3.54869:54888]()
    version = "0.4.23"
    [3.54869]
    [3.80921]
    version = "0.4.26"
  • edit in Cargo.lock at line 1046
    [3.80986]
    [3.80986]
    checksum = "c82fb1329f632c3552cf352d14427d57a511b1cf41db93b3a7d77906a82dcc8e"
  • replacement in Cargo.lock at line 1048
    [3.81003][3.54889:55111]()
    "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)",
    [3.81003]
    [3.81152]
    "proc-macro2",
    "quote",
    "syn",
  • replacement in Cargo.lock at line 1055
    [3.55138][3.55138:55156]()
    version = "0.1.7"
    [3.55138]
    [3.81206]
    version = "0.1.10"
  • edit in Cargo.lock at line 1057
    [3.81271]
    [3.55157]
    checksum = "e555d9e657502182ac97b539fb3dae8b79cda19e3e4f8ffb5e8de4f18df93c95"
  • edit in Cargo.lock at line 1063
    [3.55272]
    [3.81366]
    checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
  • edit in Cargo.lock at line 1069
    [3.55357]
    [3.55357]
    checksum = "d36492546b6af1463394d46f0c834346f31548646f6ba10849802c9c9a27ac33"
  • edit in Cargo.lock at line 1075
    [3.81483]
    [3.81483]
    checksum = "c36fa947111f5c62a733b652544dd0016a43ce89619538a8ef92724a6f501a20"
  • edit in Cargo.lock at line 1081
    [3.81605]
    [3.81605]
    checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
  • edit in Cargo.lock at line 1087
    [3.81723]
    [3.81820]
    checksum = "99c605b9a0adc77b7211c6b1f722dcb613d68d66859a44f3d485a6da332b0598"
  • edit in Cargo.lock at line 1093
    [3.81937]
    [3.81937]
    checksum = "eba180dafb9038b050a4c280019bbedf9f2467b61e5d892dcad585bb57aadc5a"
  • replacement in Cargo.lock at line 1097
    [3.55521][3.55521:55540]()
    version = "1.0.20"
    [3.55521]
    [3.81988]
    version = "1.0.24"
  • edit in Cargo.lock at line 1099
    [3.82053]
    [3.82053]
    checksum = "1e0704ee1a7e00d7bb417d0770ea303c1bccbabf0ef1667dae92b5967f5f8a71"
  • replacement in Cargo.lock at line 1101
    [3.82070][3.55541:55619]()
    "unicode-xid 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.82070]
    [3.82366]
    "unicode-xid",
  • edit in Cargo.lock at line 1108
    [3.82480]
    [3.82480]
    checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
  • edit in Cargo.lock at line 1114
    [3.82592]
    [3.82592]
    checksum = "3cc440ee4802a86e357165021e3e255a9143724da31db1e2ea540214c96a0f82"
  • replacement in Cargo.lock at line 1116
    [3.82609][3.55699:55772]()
    "memchr 2.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.82609]
    [3.82688]
    "memchr",
  • edit in Cargo.lock at line 1123
    [3.82800]
    [3.82800]
    checksum = "aa563d17ecb180e500da1cfd2b028310ac758de548efdd203e18f283af693f37"
  • replacement in Cargo.lock at line 1125
    [3.82817][3.55807:55886]()
    "proc-macro2 1.0.20 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.82817]
    [3.83193]
    "proc-macro2",
  • edit in Cargo.lock at line 1132
    [3.68175]
    [3.68175]
    checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
  • replacement in Cargo.lock at line 1134
    [3.68192][3.55906:56358]()
    "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)",
    [3.68192]
    [3.69023]
    "getrandom",
    "libc",
    "rand_chacha",
    "rand_core 0.5.1",
    "rand_hc",
    "rand_pcg",
  • edit in Cargo.lock at line 1146
    [3.83305]
    [3.83305]
    checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
  • replacement in Cargo.lock at line 1148
    [3.83322][3.56378:56531]()
    "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)",
    [3.83322]
    [3.84153]
    "ppv-lite86",
    "rand_core 0.5.1",
  • edit in Cargo.lock at line 1156
    [3.84556]
    [3.84556]
    checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b"
  • replacement in Cargo.lock at line 1158
    [3.84573][3.56532:56608]()
    "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.84573]
    [3.84649]
    "rand_core 0.4.2",
  • edit in Cargo.lock at line 1165
    [3.69408]
    [3.69408]
    checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc"
  • edit in Cargo.lock at line 1171
    [3.69521]
    [3.69521]
    checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
  • replacement in Cargo.lock at line 1173
    [3.69538][3.56666:56743]()
    "getrandom 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.69538]
    [3.69614]
    "getrandom",
  • edit in Cargo.lock at line 1180
    [3.69732]
    [3.69732]
    checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
  • replacement in Cargo.lock at line 1182
    [3.69749][3.56780:56856]()
    "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.69749]
    [3.69825]
    "rand_core 0.5.1",
  • edit in Cargo.lock at line 1189
    [3.70297]
    [3.70297]
    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)",
    [3.70314]
    [3.70763]
    "cloudabi",
    "fuchsia-cprng",
    "libc",
    "rand_core 0.4.2",
    "rdrand",
    "winapi 0.3.9",
  • edit in Cargo.lock at line 1203
    [3.70879]
    [3.70879]
    checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429"
  • replacement in Cargo.lock at line 1205
    [3.70896][3.57099:57175]()
    "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.70896]
    [3.71046]
    "rand_core 0.5.1",
  • edit in Cargo.lock at line 1212
    [3.86732]
    [3.71310]
    checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2"
  • replacement in Cargo.lock at line 1214
    [3.71327][3.71327:71403]()
    "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.71327]
    [3.71403]
    "rand_core 0.3.1",
  • edit in Cargo.lock at line 1221
    [3.87066]
    [3.87166]
    checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce"
  • edit in Cargo.lock at line 1227
    [3.87277]
    [3.87277]
    checksum = "9c3780fcf44b193bc4d09f36d2a3c87b251da4a046c87795a0d35f4f927ad8e6"
  • replacement in Cargo.lock at line 1229
    [3.87294][3.57215:57527]()
    "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)",
    [3.87294]
    [3.87682]
    "aho-corasick",
    "memchr",
    "regex-syntax",
    "thread_local",
  • edit in Cargo.lock at line 1239
    [3.87802]
    [3.87896]
    checksum = "26412eb97c6b088a6997e05f69403a802a92d520de2f8e63c2b65f9e0f47c4e8"
  • edit in Cargo.lock at line 1245
    [3.88016]
    [3.88016]
    checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
  • replacement in Cargo.lock at line 1247
    [3.88033][3.57567:57640]()
    "winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.88033]
    [3.88106]
    "winapi 0.3.9",
  • edit in Cargo.lock at line 1254
    [3.88225]
    [3.88225]
    checksum = "11834e137f3b14e309437a8276714eed3a80d1ef894869e510f2c0c0b98b9f4a"
  • replacement in Cargo.lock at line 1256
    [3.88242][3.57660:57813]()
    "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)",
    [3.88242]
    [3.88395]
    "hostname",
    "quick-error",
  • replacement in Cargo.lock at line 1262
    [3.88434][3.57814:57833]()
    version = "0.1.16"
    [3.88434]
    [3.88453]
    version = "0.1.17"
  • edit in Cargo.lock at line 1264
    [3.88518]
    [3.88518]
    checksum = "b2610b7f643d18c87dff3b489950269617e6601a51f1f05aa5daefee36f64f0b"
  • edit in Cargo.lock at line 1270
    [3.88838]
    [3.88838]
    checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e"
  • edit in Cargo.lock at line 1276
    [3.88948]
    [3.88948]
    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)",
    [3.88965]
    [3.89400]
    "base64 0.10.1",
    "hmac",
    "pbkdf2",
    "rand_os",
    "sha-1 0.8.2",
    "sha2 0.8.2",
  • edit in Cargo.lock at line 1290
    [3.89517]
    [3.89517]
    checksum = "8f05ba609c234e60bee0d547fe94a4c7e9da733d1c962cf6e59efa4cd9c8bc75"
  • replacement in Cargo.lock at line 1292
    [3.89534][3.58089:58240]()
    "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)",
    [3.89534]
    [3.89685]
    "lazy_static",
    "winapi 0.3.9",
  • edit in Cargo.lock at line 1300
    [3.89927]
    [3.89927]
    checksum = "64808902d7d99f78eaddd2b4e2509713babc3dc3c85ad6f4c447680f3c01e535"
  • replacement in Cargo.lock at line 1302
    [3.89944][3.58260:58664]()
    "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)",
    [3.89944]
    [3.90273]
    "bitflags",
    "core-foundation",
    "core-foundation-sys",
    "libc",
    "security-framework-sys",
  • edit in Cargo.lock at line 1313
    [3.90403]
    [3.90403]
    checksum = "17bf11d99252f512695eb468de5516e5cf75455521e69dfe343f3b74e4748405"
  • replacement in Cargo.lock at line 1315
    [3.90420][3.58684:58842]()
    "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)",
    [3.90420]
    [3.90657]
    "core-foundation-sys",
    "libc",
  • replacement in Cargo.lock at line 1323
    [3.91027][3.58843:59932]()
    "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)",
    [3.91027]
    [3.92082]
    "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
    [3.92112][3.59933:59953]()
    version = "1.0.115"
    [3.92112]
    [3.92131]
    version = "1.0.116"
  • edit in Cargo.lock at line 1344
    [3.92196]
    [3.92196]
    checksum = "96fe57af81d28386a513cbc6858332abc6117cfdb5999647c6444b8f43a370a5"
  • replacement in Cargo.lock at line 1348
    [3.92231][3.59954:59974]()
    version = "1.0.115"
    [3.92231]
    [3.92250]
    version = "1.0.116"
  • edit in Cargo.lock at line 1350
    [3.92315]
    [3.92315]
    checksum = "f630a6370fd8e457873b4bd2ffdae75408bc291ba72be773772a4c2a065d9ae8"
  • replacement in Cargo.lock at line 1352
    [3.92332][3.59975:60197]()
    "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)",
    [3.92332]
    [3.92556]
    "proc-macro2",
    "quote",
    "syn",
  • replacement in Cargo.lock at line 1359
    [3.92591][3.60198:60217]()
    version = "1.0.57"
    [3.92591]
    [3.92610]
    version = "1.0.58"
  • edit in Cargo.lock at line 1361
    [3.92675]
    [3.92675]
    checksum = "a230ea9107ca2220eea9d46de97eddcb04cd00e92d13dda78e478dd33fa82bd4"
  • replacement in Cargo.lock at line 1363
    [3.92692][3.60218:60433]()
    "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)",
    [3.92692]
    [3.92906]
    "itoa",
    "ryu",
    "serde",
  • edit in Cargo.lock at line 1372
    [3.93019]
    [3.93019]
    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)",
    [3.93036]
    [3.93343]
    "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
    [3.93455]
    [3.93455]
    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)",
    [3.93472]
    [3.93779]
    "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
    [3.93808][3.60938:60956]()
    version = "0.8.2"
    [3.93808]
    [3.93826]
    version = "0.9.1"
  • edit in Cargo.lock at line 1422
    [3.93891]
    [3.93891]
    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)",
    [3.93908]
    [3.94289]
    "block-buffer 0.9.0",
    "digest 0.9.0",
    "keccak",
    "opaque-debug 0.3.0",
  • edit in Cargo.lock at line 1434
    [3.49156]
    [3.49156]
    checksum = "a3e12110bc539e657a646068aaf5eb5b63af9d0c1f7b29c97113fad80e15f035"
  • replacement in Cargo.lock at line 1436
    [3.49173][3.61240:61387]()
    "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)",
    [3.49173]
    [3.49332]
    "arc-swap",
    "libc",
  • edit in Cargo.lock at line 1444
    [3.94690]
    [3.94690]
    checksum = "fa8f3741c7372e75519bd9346068370c9cdaabcc1f9599cbcf2a2719352286b7"
  • edit in Cargo.lock at line 1450
    [3.94800]
    [3.94800]
    checksum = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8"
  • edit in Cargo.lock at line 1456
    [3.94914]
    [3.94914]
    checksum = "fbee7696b84bbf3d89a1c2eccff0850e3047ed46bfcd2e92c29a2d074d57e252"
  • replacement in Cargo.lock at line 1460
    [3.94944][3.61426:61445]()
    version = "0.3.12"
    [3.94944]
    [3.94962]
    version = "0.3.15"
  • edit in Cargo.lock at line 1462
    [3.95027]
    [3.95027]
    checksum = "b1fa70dc5c8104ec096f4fe7ede7a221d35ae13dcd19ba1ad9a81d2cab9a1c44"
  • replacement in Cargo.lock at line 1464
    [3.95044][3.61446:61746]()
    "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)",
    [3.95044]
    [3.95343]
    "cfg-if",
    "libc",
    "redox_syscall",
    "winapi 0.3.9",
  • edit in Cargo.lock at line 1474
    [3.95699]
    [3.95699]
    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)",
    [3.95716]
    [3.96289]
    "lazy_static",
    "new_debug_unreachable",
    "phf_shared",
    "precomputed-hash",
    "serde",
  • edit in Cargo.lock at line 1487
    [3.96417]
    [3.96417]
    checksum = "f24c8e5e19d22a726626f1a5e16fe15b132dcf21d10177fa5a45ce7962996b97"
  • replacement in Cargo.lock at line 1489
    [3.96434][3.62104:62412]()
    "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)",
    [3.96434]
    [3.96831]
    "phf_generator",
    "phf_shared",
    "proc-macro2",
    "quote",
  • edit in Cargo.lock at line 1499
    [3.76601]
    [3.76601]
    checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
  • edit in Cargo.lock at line 1504
    [3.76648]
    [3.97228]
    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
    [3.97293]
    [3.97536]
    checksum = "343f3f510c2915908f155e94f17220b19ccfacf2a64a2a5d8004f2c3e311e7fd"
  • replacement in Cargo.lock at line 1515
    [3.97562][3.62413:62432]()
    version = "1.0.40"
    [3.97562]
    [3.97943]
    version = "1.0.43"
  • edit in Cargo.lock at line 1517
    [3.98008]
    [3.98008]
    checksum = "1e2e59c50ed8f6b050b071aa7b6865293957a9af6b58b94f97c1c9434ad440ea"
  • replacement in Cargo.lock at line 1519
    [3.98025][3.62433:62662]()
    "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)",
    [3.98025]
    [3.98103]
    "proc-macro2",
    "quote",
    "unicode-xid",
  • edit in Cargo.lock at line 1528
    [3.98224]
    [3.98224]
    checksum = "b834f2d66f734cb897113e34aaff2f1ab4719ca946f9a7358dba8f8064148701"
  • replacement in Cargo.lock at line 1530
    [3.98241][3.62683:62983]()
    "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)",
    [3.98241]
    [3.98543]
    "proc-macro2",
    "quote",
    "syn",
    "unicode-xid",
  • edit in Cargo.lock at line 1540
    [3.98659]
    [3.98659]
    checksum = "7a6e24d9338a0a5be79593e2fa15a648add6138caa803e2d5bc782c371732ca9"
  • replacement in Cargo.lock at line 1542
    [3.98676][3.63003:63455]()
    "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)",
    [3.98676]
    [3.99127]
    "cfg-if",
    "libc",
    "rand",
    "redox_syscall",
    "remove_dir_all",
    "winapi 0.3.9",
  • edit in Cargo.lock at line 1554
    [3.99242]
    [3.99242]
    checksum = "707feda9f2582d5d680d733e38755547a3e8fb471e7ba11452ecfd9ce93a5d3b"
  • replacement in Cargo.lock at line 1556
    [3.99259][3.99259:99400](),[3.99259][3.99259:99400](),[3.99400][3.77478:77550]()
    "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)",
    [3.99259]
    [3.99472]
    "futf",
    "mac",
    "utf-8",
  • edit in Cargo.lock at line 1565
    [3.99589]
    [3.99589]
    checksum = "bb6bfa289a4d7c5766392812c0a1f4c1ba45afa1ad47803c11e1f407d846d75f"
  • replacement in Cargo.lock at line 1567
    [3.99606][3.63475:63553]()
    "winapi-util 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.99606]
    [3.99681]
    "winapi-util",
  • edit in Cargo.lock at line 1574
    [3.100945]
    [3.100945]
    checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
  • replacement in Cargo.lock at line 1576
    [3.100962][3.63554:63634]()
    "unicode-width 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.100962]
    [3.102285]
    "unicode-width",
  • replacement in Cargo.lock at line 1581
    [3.63654][3.63654:63673]()
    version = "1.0.20"
    [3.63654]
    [3.102341]
    version = "1.0.21"
  • edit in Cargo.lock at line 1583
    [3.102406]
    [3.102406]
    checksum = "318234ffa22e0920fe9a40d7b8369b5f649d490980cf7aadcf1eb91594869b42"
  • replacement in Cargo.lock at line 1585
    [3.102423][3.63674:63756]()
    "thiserror-impl 1.0.20 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.102423]
    [3.102498]
    "thiserror-impl",
  • replacement in Cargo.lock at line 1590
    [3.63781][3.63781:63800]()
    version = "1.0.20"
    [3.63781]
    [3.102921]
    version = "1.0.21"
  • edit in Cargo.lock at line 1592
    [3.102986]
    [3.102986]
    checksum = "cae2447b6282786c3493999f40a9be2a6ad20cb8bd268b0a0dbf5a065535c0ab"
  • replacement in Cargo.lock at line 1594
    [3.103003][3.63801:64023]()
    "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)",
    [3.103003]
    [3.103159]
    "proc-macro2",
    "quote",
    "syn",
  • edit in Cargo.lock at line 1603
    [3.103281]
    [3.103281]
    checksum = "d40c6d1b69745a6ec6fb1ca717914848da4b44ae29d9b3080cbee91d72a69b14"
  • replacement in Cargo.lock at line 1605
    [3.103298][3.64065:64143]()
    "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.103298]
    [3.103455]
    "lazy_static",
  • edit in Cargo.lock at line 1612
    [3.103571]
    [3.103571]
    checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255"
  • replacement in Cargo.lock at line 1614
    [3.103588][3.64178:64418]()
    "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)",
    [3.103588]
    [3.103823]
    "libc",
    "wasi 0.10.0+wasi-snapshot-preview1",
    "winapi 0.3.9",
  • edit in Cargo.lock at line 1623
    [3.103940]
    [3.104177]
    checksum = "238ce071d267c5710f9d31451efec16c5ee22de34df17cc05e56cbc92e967117"
  • edit in Cargo.lock at line 1629
    [3.104296]
    [3.104296]
    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)",
    [3.104313]
    [3.105965]
    "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
    [3.106362]
    [3.106362]
    checksum = "f0c3acc6aa564495a0f2e1d59fab677cd7f81a19994cfc7f3ad0e64301560389"
  • replacement in Cargo.lock at line 1654
    [3.106379][3.65592:65814]()
    "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)",
    [3.106379]
    [3.106826]
    "proc-macro2",
    "quote",
    "syn",
  • edit in Cargo.lock at line 1663
    [3.106951]
    [3.106951]
    checksum = "9a70f4fcd7b3b24fb194f837560168208f669ca8cb70d0c4b862944452396343"
  • replacement in Cargo.lock at line 1665
    [3.106968][3.65853:66003]()
    "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)",
    [3.106968]
    [3.107658]
    "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
    [3.108221]
    [3.108221]
    checksum = "be8242891f2b6cbef26a2d7e8605133c2c554cd35b3e4948ea892d6d68436499"
  • replacement in Cargo.lock at line 1675
    [3.108238][3.66540:66997]()
    "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)",
    [3.108238]
    [3.63165]
    "bytes",
    "futures-core",
    "futures-sink",
    "log",
    "pin-project-lite",
    "tokio",
  • replacement in Cargo.lock at line 1686
    [3.67036][3.67036:67127]()
    source = "git+https://gitlab.com/xmpp-rs/xmpp-rs#b85aa293770d22cca11fd7ca3802b5920e1ab6fa"
    [3.67036]
    [3.55394]
    source = "git+https://gitlab.com/xmpp-rs/xmpp-rs?branch=main#e1f2e2653a9c14409a04bc4fcd7b10ce842871ea"
  • replacement in Cargo.lock at line 1688
    [3.55411][3.67128:68100]()
    "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)",
    [3.55411]
    [3.55489]
    "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
    [3.108802]
    [3.108802]
    checksum = "ffc92d160b1eef40665be3a05630d003936a3bc7da7421277846c2613e92c71a"
  • replacement in Cargo.lock at line 1709
    [3.108819][3.68134:68208]()
    "serde 1.0.115 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.108819]
    [3.109342]
    "serde",
  • edit in Cargo.lock at line 1716
    [3.109459]
    [3.110219]
    checksum = "e987b6bf443f4b5b3b6f38704195592cca41c5bb7aedd3c3693c7081f8289860"
  • replacement in Cargo.lock at line 1720
    [3.68268][3.68268:68287]()
    version = "0.1.19"
    [3.68268]
    [3.110270]
    version = "0.1.21"
  • edit in Cargo.lock at line 1722
    [3.110335]
    [3.110335]
    checksum = "b0987850db3733619253fe60e17cb59b82d37c7e6c0236bb81e4d6b87c879f27"
  • replacement in Cargo.lock at line 1724
    [3.110352][3.68288:68513]()
    "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)",
    [3.110352]
    [3.111502]
    "cfg-if",
    "log",
    "pin-project-lite",
    "tracing-core",
  • replacement in Cargo.lock at line 1732
    [3.68536][3.68536:68555]()
    version = "0.1.15"
    [3.68536]
    [3.111549]
    version = "0.1.17"
  • edit in Cargo.lock at line 1734
    [3.111614]
    [3.111614]
    checksum = "f50de3927f93d202783f4513cda820ab47ef17f624b03c096e86ef00c67e6b5f"
  • replacement in Cargo.lock at line 1736
    [3.111631][3.68556:68634]()
    "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.111631]
    [3.111704]
    "lazy_static",
  • edit in Cargo.lock at line 1743
    [3.111827]
    [3.111827]
    checksum = "cdd7061ba6f4d4d9721afedffbfd403f20f39a4301fee1b70d6fcd09cca69f28"
  • replacement in Cargo.lock at line 1745
    [3.111844][3.68655:69551]()
    "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)",
    [3.111844]
    [3.113046]
    "async-trait",
    "backtrace",
    "enum-as-inner",
    "futures",
    "idna",
    "lazy_static",
    "log",
    "rand",
    "smallvec",
    "thiserror",
    "tokio",
    "url",
  • edit in Cargo.lock at line 1763
    [3.113173]
    [3.113173]
    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)",
    [3.113190]
    [3.114019]
    "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
    [3.114135]
    [3.114135]
    checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"
  • edit in Cargo.lock at line 1789
    [3.114455]
    [3.114455]
    checksum = "373c8a200f9e67a0c95e62a4f52fbf80c23b4381c05a17845531982fa99e6b33"
  • edit in Cargo.lock at line 1795
    [3.114687]
    [3.114687]
    checksum = "49f2bd0c6468a8230e1db229cff8029217cf623c767ea5d60bfbd42729ea54d5"
  • replacement in Cargo.lock at line 1797
    [3.114704][3.114704:114778]()
    "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.114704]
    [3.114778]
    "matches",
  • edit in Cargo.lock at line 1804
    [3.114907]
    [3.87755]
    checksum = "6fb19cf769fa8c6a80a162df694621ebeb4dafb606470b2b2fce0be40a98a977"
  • replacement in Cargo.lock at line 1806
    [3.87772][3.70468:70542]()
    "tinyvec 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.87772]
    [3.87847]
    "tinyvec",
  • edit in Cargo.lock at line 1813
    [3.115120]
    [3.115120]
    checksum = "e83e153d1053cbb5a118eeff7fd5be06ed99153f00dbcd8ae310c5fb2b22edc0"
  • edit in Cargo.lock at line 1819
    [3.115237]
    [3.115237]
    checksum = "9337591893a19b88d8d87f2cec1e73fad5cdfd10e5a6f349f498ad6ea2ffb1e3"
  • edit in Cargo.lock at line 1825
    [3.115337]
    [3.115337]
    checksum = "f7fe0bb3479651439c9112f72b6c505038574c9fbb575ed1bf3b797fa39dd564"
  • edit in Cargo.lock at line 1831
    [3.115446]
    [3.115446]
    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)",
    [3.115463]
    [3.115691]
    "idna",
    "matches",
    "percent-encoding",
  • edit in Cargo.lock at line 1842
    [3.115921]
    [3.115921]
    checksum = "05e42f7c18b8f902290b009cde6d651262f956c98bc51bca4cd1d511c9cd85c7"
  • edit in Cargo.lock at line 1848
    [3.116032]
    [3.116032]
    checksum = "6454029bf181f092ad1b853286f23e2c507d8e8194d01d92da4a55c274a5508c"
  • edit in Cargo.lock at line 1854
    [3.116145]
    [3.116145]
    checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
  • edit in Cargo.lock at line 1857
    [3.116158]
    [3.116158]
    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
    [3.116255]
    [3.116255]
    checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
  • replacement in Cargo.lock at line 1868
    [3.116272][3.70886:71032]()
    "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)",
    [3.116272]
    [3.116492]
    "log",
    "try-lock",
  • edit in Cargo.lock at line 1876
    [3.71166]
    [3.71166]
    checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
  • edit in Cargo.lock at line 1882
    [3.71300]
    [3.116494]
    checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
  • replacement in Cargo.lock at line 1886
    [3.116527][3.71301:71319]()
    version = "0.4.2"
    [3.116527]
    [3.116545]
    version = "0.4.3"
  • edit in Cargo.lock at line 1888
    [3.116610]
    [3.116610]
    checksum = "c168940144dd21fd8046987c16a46a33d5fc84eec29ef9dcddc2ac9e31526b7c"
  • edit in Cargo.lock at line 1894
    [3.116722]
    [3.116722]
    checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"
  • edit in Cargo.lock at line 1900
    [3.116834]
    [3.116834]
    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)",
    [3.116851]
    [3.117039]
    "winapi-i686-pc-windows-gnu",
    "winapi-x86_64-pc-windows-gnu",
  • edit in Cargo.lock at line 1910
    [3.117159]
    [3.117159]
    checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"
  • edit in Cargo.lock at line 1916
    [3.117291]
    [3.117291]
    checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
  • edit in Cargo.lock at line 1922
    [3.117408]
    [3.117408]
    checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
  • replacement in Cargo.lock at line 1924
    [3.117425][3.71358:71431]()
    "winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.117425]
    [3.117498]
    "winapi 0.3.9",
  • edit in Cargo.lock at line 1931
    [3.117634]
    [44.45713]
    checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
  • edit in Cargo.lock at line 1937
    [3.118030]
    [3.118030]
    checksum = "b2986deb581c4fe11b621998a5e53361efe6b48a151178d0cd9eeffa4dc6acc9"
  • replacement in Cargo.lock at line 1939
    [3.118047][3.71451:71524]()
    "winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.118047]
    [3.118120]
    "winapi 0.3.9",
  • edit in Cargo.lock at line 1946
    [3.118443]
    [3.118443]
    checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e"
  • replacement in Cargo.lock at line 1948
    [3.118460][3.118460:118612]()
    "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)",
    [3.118460]
    [3.118612]
    "winapi 0.2.8",
    "winapi-build",
  • edit in Cargo.lock at line 1956
    [3.118729]
    [3.118729]
    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)",
    [3.118746]
    [3.57890]
    "log",
    "mac",
    "markup5ever",
    "time",
  • replacement in Cargo.lock at line 1967
    [3.71788][3.71788:71879]()
    source = "git+https://gitlab.com/xmpp-rs/xmpp-rs#b85aa293770d22cca11fd7ca3802b5920e1ab6fa"
    [3.71788]
    [3.58011]
    source = "git+https://gitlab.com/xmpp-rs/xmpp-rs?branch=main#e1f2e2653a9c14409a04bc4fcd7b10ce842871ea"
  • replacement in Cargo.lock at line 1969
    [3.58028][3.71880:72518]()
    "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)",
    [3.58028]
    [3.120691]
    "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>"