Update deps

[?]
Dec 18, 2018, 5:31 AM
NDDQQP2PSYH5YNU5EHFRUFACLJURWAHFZQNOIQNJCWHRSB7A3N6QC

Dependencies

  • [2] O2GM5J4F Don't split xmpp receiving and sending
  • [3] 3GEU7TC7 Welcome to 2018!
  • [4] 5A5UVGNM Move receiver closing logic out of xmpp processing
  • [5] FV6BJ5K6 Send self-presence and store account info in Rc so it willbe used in some future in parallel
  • [6] TDOR5XQU Accept destination
  • [7] VS6AHRWI Move XMPP to separate dir
  • [8] BTOZT4JP Use failure
  • [9] FVVPKFTL Initial commit
  • [10] PBRUH4BJ Rename optional XmppConnection to MaybeXmppConnection
  • [11] QWE26TMV update deps
  • [12] X6L47BHQ Use different structure for established xmpp connection

Change contents

  • edit in src/xmpp/mod.rs at line 10
    [3.211][3.0:33](),[3.33][3.435:478](),[3.239][3.435:478](),[3.478][2.0:27](),[2.27][3.0:3](),[3.346][3.0:3]()
    pub struct MaybeXmppConnection {
    account: std::rc::Rc<config::Account>,
    inner: Option<Client>,
    }
  • replacement in src/xmpp/mod.rs at line 12
    [3.74][2.28:47](),[2.47][3.143:375](),[3.143][3.143:375]()
    inner: Client,
    }
    impl From<XmppConnection> for MaybeXmppConnection {
    fn from(from: XmppConnection) -> MaybeXmppConnection {
    MaybeXmppConnection {
    account: from.account,
    inner: Some(from.inner),
    }
    }
    [3.74]
    [3.346]
    inner: Option<(stream::SplitSink<Client>, stream::SplitStream<Client>)>,
  • replacement in src/xmpp/mod.rs at line 15
    [3.349][3.34:153]()
    impl MaybeXmppConnection {
    fn new(account: config::Account) -> MaybeXmppConnection {
    MaybeXmppConnection {
    [3.349]
    [3.479]
    impl XmppConnection {
    fn new(account: config::Account) -> XmppConnection {
    XmppConnection {
  • replacement in src/xmpp/mod.rs at line 25
    [3.579][3.376:460]()
    fn connect<E: 'static>(self) -> impl Future<Item = XmppConnection, Error = E> {
    [3.579]
    [3.653]
    fn connect<E: 'static>(self) -> impl Future<Item = Self, Error = E> {
  • replacement in src/xmpp/mod.rs at line 27
    [3.690][3.154:213]()
    let MaybeXmppConnection { account, inner } = self;
    [3.690]
    [3.744]
    let XmppConnection { account, inner } = self;
  • replacement in src/xmpp/mod.rs at line 30
    [3.782][3.461:581]()
    Box::new(future::ok(XmppConnection { account, inner }))
    as Box<Future<Item = _, Error = E>>
    [3.782]
    [3.944]
    Box::new(future::ok(XmppConnection {
    account,
    inner: Some(inner),
    })) as Box<Future<Item = _, Error = E>>
  • replacement in src/xmpp/mod.rs at line 46
    [3.1522][2.48:94](),[2.94][3.582:643](),[3.1576][3.582:643]()
    Self::online(client, account)
    .and_then(XmppConnection::self_presence)
    [3.1522]
    [3.1627]
    Self::online(client.split(), account)
    .and_then(Self::self_presence)
  • replacement in src/xmpp/mod.rs at line 59
    [3.2003][2.95:119]()
    client: Client,
    [3.2003]
    [3.528]
    (sink, stream): (stream::SplitSink<Client>, stream::SplitStream<Client>),
  • replacement in src/xmpp/mod.rs at line 61
    [3.575][3.644:728](),[3.728][2.120:864]()
    ) -> impl Future<Item = XmppConnection, Error = std::rc::Rc<config::Account>> {
    Box::new(future::loop_fn((client, account), |(client, account)| {
    client.into_future().then(|r| match r {
    Ok((event, client)) => match event {
    Some(Event::Online) => {
    info!("Online");
    future::ok(future::Loop::Break(XmppConnection {
    account,
    inner: client,
    }))
    }
    Some(Event::Stanza(s)) => {
    info!("xmpp stanza: {:?}", s);
    future::ok(future::Loop::Continue((client, account)))
    }
    _ => {
    warn!("Disconnected");
    [3.575]
    [3.3237]
    ) -> impl Future<Item = Self, Error = std::rc::Rc<config::Account>> {
    Box::new(future::loop_fn(
    (sink, stream, account),
    |(sink, stream, account)| {
    stream.into_future().then(|r| match r {
    Ok((event, stream)) => match event {
    Some(Event::Online) => {
    info!("Online");
    future::ok(future::Loop::Break(XmppConnection {
    account,
    inner: Some((sink, stream)),
    }))
    }
    Some(Event::Stanza(s)) => {
    info!("xmpp stanza: {:?}", s);
    future::ok(future::Loop::Continue((sink, stream, account)))
    }
    _ => {
    warn!("Disconnected");
    future::err(account)
    }
    },
    Err((e, _)) => {
    error!("xmpp receive error: {}", e);
  • replacement in src/xmpp/mod.rs at line 87
    [3.3304][2.865:1060]()
    },
    Err((e, _)) => {
    error!("xmpp receive error: {}", e);
    future::err(account)
    }
    })
    }))
    [3.3304]
    [3.3349]
    })
    },
    ))
  • edit in src/xmpp/mod.rs at line 91
    [3.3355][3.862:864]()
    }
  • edit in src/xmpp/mod.rs at line 92
    [3.3356][3.865:887]()
    impl XmppConnection {
  • replacement in src/xmpp/mod.rs at line 94
    [3.942][2.1061:1089](),[2.1089][3.978:1012](),[3.978][3.978:1012]()
    let client = inner;
    use tokio::prelude::Sink;
    [3.942]
    [3.784]
    if let Some((sink, stream)) = inner {
    use tokio::prelude::Sink;
  • replacement in src/xmpp/mod.rs at line 97
    [3.785][3.1013:1108](),[3.1108][2.1090:1130](),[2.1130][3.1108:1126](),[3.1108][3.1108:1126](),[3.1126][2.1131:1182](),[2.1182][3.1158:1333](),[3.1158][3.1158:1333](),[3.1333][2.1183:1342](),[2.1342][3.1472:1746](),[3.1472][3.1472:1746](),[3.1746][2.1343:1413](),[2.1413][3.1816:2387](),[3.1816][3.1816:2387](),[3.2387][2.1414:1498]()
    let presence = stanzas::make_presence(&account);
    info!("Sending presence...");
    let account2 = account.clone();
    Box::new(
    client
    .send(presence)
    .map_err(|e| {
    error!("Error on send self-presence: {}", e);
    "Cann't send self-presence".to_owned()
    })
    .and_then(move |client| {
    future::loop_fn((account2.clone(), client), |(account, client)| {
    client
    .into_future()
    .map_err(|(e, _)| {
    error!("Error on reading self-presence: {}", e);
    "Cann't read self-presence".to_owned()
    })
    .and_then(|(event, client)| match event {
    Some(event) => {
    if let tokio_xmpp::Event::Stanza(e) = event {
    info!("Get stanza: {:?}", e);
    if e.name() == "presence"
    && e.attr("from").map_or(false, |f| f == account.jid)
    && e.attr("to").map_or(false, |f| f == account.jid)
    {
    info!("Self presence");
    future::ok(future::Loop::Break(client))
    [3.785]
    [3.2608]
    let presence = stanzas::make_presence(&account);
    info!("Sending presence...");
    Box::new(
    sink.send(presence)
    .map_err(|e| {
    error!("Error on send self-presence: {}", e);
    "Cann't send self-presence".to_owned()
    })
    .join(
    future::loop_fn((account.clone(), stream), |(account, stream)| {
    stream
    .into_future()
    .map_err(|(e, _)| {
    error!("Error on reading self-presence: {}", e);
    "Cann't read self-presence".to_owned()
    })
    .and_then(|(event, stream)| match event {
    Some(event) => {
    if let tokio_xmpp::Event::Stanza(e) = event {
    info!("Get stanza: {:?}", e);
    if e.name() == "presence"
    && e.attr("from")
    .map_or(false, |f| f == account.jid)
    && e.attr("to").map_or(false, |f| f == account.jid)
    {
    info!("Self presence");
    future::ok(future::Loop::Break(stream))
    } else {
    future::ok(future::Loop::Continue((
    account, stream,
    )))
    }
  • replacement in src/xmpp/mod.rs at line 130
    [3.2657][2.1499:1597]()
    future::ok(future::Loop::Continue((account, client)))
    [3.2657]
    [3.2743]
    future::err("Got wrong event".to_owned())
  • edit in src/xmpp/mod.rs at line 132
    [3.2785][3.2571:2698]()
    } else {
    future::err("Got wrong event".to_owned())
  • replacement in src/xmpp/mod.rs at line 133
    [3.2823][3.2699:2872](),[3.2872][2.1598:1691](),[2.1691][3.2965:3280](),[3.2965][3.2965:3280]()
    }
    None => future::err("Got closed stream".to_owned()),
    })
    })
    .map_err(|e| format!("waiting self-presence: {}", e))
    })
    .then(|r| match r {
    Err(e) => {
    error!("Self-presence waiting error: {}", e);
    future::err(account)
    }
    Ok(inner) => future::ok(XmppConnection { account, inner }),
    }),
    )
    [3.2823]
    [3.3783]
    None => future::err("Got closed stream".to_owned()),
    })
    })
    .map_err(|e| format!("waiting self-presence: {}", e)),
    )
    .then(|r| match r {
    Err(e) => {
    error!("Self-presence waiting error: {}", e);
    future::err(account)
    }
    Ok(inner) => future::ok(XmppConnection {
    account,
    inner: Some(inner),
    }),
    }),
    )
    } else {
    warn!("Don't gen connection on self-presence");
    Box::new(future::err(account)) as Box<Future<Item = _, Error = _>>
    }
  • replacement in src/xmpp/mod.rs at line 162
    [3.3891][3.482:513]()
    conn: MaybeXmppConnection,
    [3.3891]
    [3.3917]
    conn: XmppConnection,
  • replacement in src/xmpp/mod.rs at line 166
    [3.133][3.514:597]()
    fn new(cmd_recv: S, signal: F, conn: MaybeXmppConnection) -> XmppState<F, S> {
    [3.133]
    [3.4038]
    fn new(cmd_recv: S, signal: F, conn: XmppConnection) -> XmppState<F, S> {
  • replacement in src/xmpp/mod.rs at line 186
    [3.4481][3.598:648]()
    let conn = MaybeXmppConnection::new(account);
    [3.4481]
    [3.4526]
    let conn = XmppConnection::new(account);
  • replacement in src/xmpp/mod.rs at line 210
    [3.5285][3.3281:3375]()
    Box::new(b.map(|b| future::Loop::Break((Some((b.0).1), b.1.into()))))
    [3.5285]
    [3.5372]
    Box::new(b.map(|b| future::Loop::Break((Some((b.0).1), b.1))))
  • replacement in src/xmpp/mod.rs at line 219
    [3.5743][3.3376:3416]()
    x.1.into(),
    [3.5743]
    [3.5776]
    x.1,
  • replacement in src/xmpp/mod.rs at line 225
    [3.6018][3.3417:3511]()
    Box::new(b.map(|b| future::Loop::Break((Some((b.0).1), b.1.into()))))
    [3.6018]
    [3.6105]
    Box::new(b.map(|b| future::Loop::Break((Some((b.0).1), b.1))))
  • replacement in src/xmpp/mod.rs at line 237
    [3.900][3.649:723]()
    .and_then(|(opt_cmd_recv, _conn): (Option<S>, MaybeXmppConnection)| {
    [3.900]
    [3.969]
    .and_then(|(opt_cmd_recv, _conn): (Option<S>, XmppConnection)| {
  • replacement in Cargo.lock at line 5
    [3.7247][3.7247:7320]()
    "memchr 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.7247]
    [3.7320]
    "memchr 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 28
    [3.7789][3.7789:7807]()
    version = "0.4.8"
    [3.7789]
    [3.7807]
    version = "0.4.9"
  • replacement in Cargo.lock at line 39
    [3.8093][3.8093:8165]()
    "libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.8093]
    [3.8165]
    "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)",
  • edit in Cargo.lock at line 43
    [3.8314]
    [3.8314]
    [[package]]
    name = "autocfg"
    version = "0.1.1"
    source = "registry+https://github.com/rust-lang/crates.io-index"
  • replacement in Cargo.lock at line 54
    [3.8446][3.8446:8527]()
    "backtrace-sys 0.1.24 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.8446]
    [3.8527]
    "backtrace-sys 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 58
    [3.8757][3.8757:8910]()
    "libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)",
    "rustc-demangle 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.8757]
    [3.8910]
    "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)",
    "rustc-demangle 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 65
    [3.9017][3.9017:9035]()
    version = "0.3.9"
    [3.9017]
    [3.9035]
    version = "0.3.13"
  • replacement in Cargo.lock at line 68
    [3.9117][3.9117:9198]()
    "backtrace-sys 0.1.24 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.9117]
    [3.9198]
    "autocfg 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
    "backtrace-sys 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 71
    [3.9271][3.9271:9424]()
    "libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)",
    "rustc-demangle 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.9271]
    [3.9424]
    "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)",
    "rustc-demangle 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 78
    [3.9535][3.9535:9554]()
    version = "0.1.24"
    [3.9535]
    [3.9554]
    version = "0.1.26"
  • replacement in Cargo.lock at line 81
    [3.9636][3.9636:9778]()
    "cc 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)",
    "libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.9636]
    [3.9778]
    "cc 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)",
    "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 144
    [3.11467][3.11467:11486]()
    version = "1.0.25"
    [3.11467]
    [3.11486]
    version = "1.0.26"
  • replacement in Cargo.lock at line 159
    [3.11948][3.11948:12020]()
    "time 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.11948]
    [3.12020]
    "time 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 195
    [3.13233][3.13233:13305]()
    "libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.13233]
    [3.13305]
    "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 203
    [3.13449][3.13449:13521]()
    "libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.13449]
    [3.13521]
    "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 208
    [3.13561][3.13561:13579]()
    version = "0.6.2"
    [3.13561]
    [3.13579]
    version = "0.6.3"
  • replacement in Cargo.lock at line 211
    [3.13661][3.13661:13825]()
    "crossbeam-epoch 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
    "crossbeam-utils 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.13661]
    [3.13825]
    "crossbeam-epoch 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
    "crossbeam-utils 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 217
    [3.13865][3.13865:13883]()
    version = "0.6.1"
    [3.13865]
    [3.13883]
    version = "0.7.0"
  • replacement in Cargo.lock at line 220
    [3.13965][3.13965:14040]()
    "arrayvec 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.13965]
    [3.14040]
    "arrayvec 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 222
    [3.14113][3.14113:14195]()
    "crossbeam-utils 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.14113]
    [3.14195]
    "crossbeam-utils 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 230
    [3.14466][3.14466:14484]()
    version = "0.6.1"
    [3.14466]
    [3.14484]
    version = "0.6.3"
  • replacement in Cargo.lock at line 274
    [3.15825][3.15825:15844]()
    version = "0.8.12"
    [3.15825]
    [3.15844]
    version = "0.8.13"
  • replacement in Cargo.lock at line 288
    [3.16352][3.16352:16424]()
    "regex 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.16352]
    [3.16424]
    "regex 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 305
    [3.16849][3.16849:16925]()
    "backtrace 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.16849]
    [3.16925]
    "backtrace 0.3.13 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 313
    [3.17057][3.17057:17133]()
    "backtrace 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.17057]
    [3.17133]
    "backtrace 0.3.13 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 324
    [3.17505][3.17505:17577]()
    "syn 0.15.22 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.17505]
    [3.17577]
    "syn 0.15.23 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 385
    [3.19271][3.19271:19346]()
    "num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.19271]
    [3.19346]
    "num_cpus 1.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 418
    [3.20551][3.20551:20623]()
    "libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.20551]
    [3.20623]
    "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 447
    [3.21397][3.21397:21417]()
    version = "0.12.17"
    [3.21397]
    [3.21417]
    version = "0.12.18"
  • replacement in Cargo.lock at line 460
    [3.22231][3.22231:22303]()
    "time 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.22231]
    [3.22303]
    "time 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 491
    [3.23535][3.23535:23607]()
    "libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.23535]
    [3.23607]
    "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 548
    [3.25316][3.25316:25335]()
    version = "0.2.44"
    [3.25316]
    [3.25335]
    version = "0.2.45"
  • replacement in Cargo.lock at line 588
    [3.26368][3.26368:26386]()
    version = "0.7.3"
    [3.26368]
    [3.26386]
    version = "0.7.5"
  • replacement in Cargo.lock at line 593
    [3.26618][3.26618:26771]()
    "serde 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)",
    "serde_derive 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.26618]
    [3.26771]
    "serde 1.0.82 (registry+https://github.com/rust-lang/crates.io-index)",
    "serde_derive 1.0.82 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 598
    [3.27015][3.27015:27089]()
    "tendril 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.27015]
    [3.27089]
    "tendril 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 608
    [3.27233][3.27233:27251]()
    version = "2.1.1"
    [3.27233]
    [3.27251]
    version = "2.1.2"
  • replacement in Cargo.lock at line 612
    [3.27406][3.27406:27478]()
    "libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.27406]
    [3.27478]
    "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 641
    [3.28558][3.28558:28630]()
    "libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.28558]
    [3.28630]
    "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 655
    [3.29191][3.29191:29263]()
    "libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.29191]
    [3.29263]
    "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 676
    [3.29977][3.29977:30049]()
    "libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.29977]
    [3.30049]
    "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 678
    [3.30119][3.30119:30195]()
    "openssl 0.10.15 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.30119]
    [3.30195]
    "openssl 0.10.16 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 680
    [3.30275][3.30275:30354]()
    "openssl-sys 0.9.39 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.30275]
    [3.30354]
    "openssl-sys 0.9.40 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 693
    [3.30882][3.30882:30954]()
    "libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.30882]
    [3.30954]
    "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 725
    [3.31727][3.31727:31745]()
    version = "1.8.0"
    [3.31727]
    [3.31745]
    version = "1.9.0"
  • replacement in Cargo.lock at line 728
    [3.31827][3.31827:31899]()
    "libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.31827]
    [3.31899]
    "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 733
    [3.31931][3.31931:31951]()
    version = "0.10.15"
    [3.31931]
    [3.31951]
    version = "0.10.16"
  • replacement in Cargo.lock at line 740
    [3.32339][3.32339:32490]()
    "libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)",
    "openssl-sys 0.9.39 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.32339]
    [3.32490]
    "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)",
    "openssl-sys 0.9.40 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 751
    [3.32645][3.32645:32664]()
    version = "0.9.39"
    [3.32645]
    [3.32664]
    version = "0.9.40"
  • replacement in Cargo.lock at line 754
    [3.32746][3.32746:32888]()
    "cc 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)",
    "libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.32746]
    [3.32888]
    "cc 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)",
    "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 782
    [3.33693][3.33693:33765]()
    "libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.33693]
    [3.33765]
    "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 785
    [3.33916][3.33916:33991]()
    "smallvec 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.33916]
    [3.33991]
    "smallvec 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 856
    [3.35895][3.35895:35974]()
    "encoding_rs 0.8.12 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.35895]
    [3.35974]
    "encoding_rs 0.8.13 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 859
    [3.36118][3.36118:36191]()
    "memchr 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.36118]
    [3.36191]
    "memchr 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 881
    [3.36723][3.36723:36795]()
    "libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.36723]
    [3.36795]
    "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 892
    [3.37153][3.37153:37225]()
    "libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.37153]
    [3.37225]
    "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 904
    [3.37648][3.37648:37720]()
    "libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.37648]
    [3.37720]
    "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 972
    [3.39910][3.39910:39929]()
    version = "0.1.43"
    [3.39910]
    [3.39929]
    version = "0.1.44"
  • replacement in Cargo.lock at line 980
    [3.40130][3.40130:40211]()
    "redox_syscall 0.1.43 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.40130]
    [3.40211]
    "redox_syscall 0.1.44 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 985
    [3.40241][3.40241:40259]()
    version = "1.0.6"
    [3.40241]
    [3.40259]
    version = "1.1.0"
  • replacement in Cargo.lock at line 989
    [3.40420][3.40420:40572]()
    "memchr 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
    "regex-syntax 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.40420]
    [3.40572]
    "memchr 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
    "regex-syntax 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 997
    [3.40766][3.40766:40784]()
    version = "0.6.3"
    [3.40766]
    [3.40784]
    version = "0.6.4"
  • replacement in Cargo.lock at line 1022
    [3.41481][3.41481:41499]()
    version = "0.1.9"
    [3.41481]
    [3.41499]
    version = "0.1.11"
  • replacement in Cargo.lock at line 1049
    [3.42197][3.42197:42273]()
    "openssl 0.10.15 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.42197]
    [3.42273]
    "openssl 0.10.16 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1073
    [3.42985][3.42985:43057]()
    "libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.42985]
    [3.43057]
    "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1083
    [3.43379][3.43379:43451]()
    "libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.43379]
    [3.43451]
    "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1106
    [3.44055][3.44055:44129]()
    "hyper 0.12.17 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.44055]
    [3.44129]
    "hyper 0.12.18 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1109
    [3.44273][3.44273:44426]()
    "serde 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)",
    "serde_derive 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.44273]
    [3.44426]
    "serde 1.0.82 (registry+https://github.com/rust-lang/crates.io-index)",
    "serde_derive 1.0.82 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1121
    [3.44917][3.44917:44936]()
    version = "1.0.80"
    [3.44917]
    [3.44936]
    version = "1.0.82"
  • replacement in Cargo.lock at line 1126
    [3.45036][3.45036:45055]()
    version = "1.0.80"
    [3.45036]
    [3.45055]
    version = "1.0.82"
  • replacement in Cargo.lock at line 1131
    [3.45289][3.45289:45361]()
    "syn 0.15.22 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.45289]
    [3.45361]
    "syn 0.15.23 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1141
    [3.45638][3.45638:45711]()
    "serde 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.45638]
    [3.45711]
    "serde 1.0.82 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1183
    [3.47222][3.47222:47294]()
    "libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.47222]
    [3.47294]
    "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1198
    [3.47552][3.47552:47570]()
    version = "0.6.6"
    [3.47552]
    [3.47570]
    version = "0.6.7"
  • replacement in Cargo.lock at line 1210
    [3.47935][3.47935:48088]()
    "libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)",
    "redox_syscall 0.1.43 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.47935]
    [3.48088]
    "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)",
    "redox_syscall 0.1.44 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1234
    [3.48861][3.48861:48934]()
    "serde 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.48861]
    [3.48934]
    "serde 1.0.82 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1273
    [3.50268][3.50268:50288]()
    version = "0.15.22"
    [3.50268]
    [3.50288]
    version = "0.15.23"
  • replacement in Cargo.lock at line 1296
    [3.51099][3.51099:51171]()
    "syn 0.15.22 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.51099]
    [3.51171]
    "syn 0.15.23 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1306
    [3.51455][3.51455:51527]()
    "libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.51455]
    [3.51527]
    "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1308
    [3.51598][3.51598:51679]()
    "redox_syscall 0.1.43 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.51598]
    [3.51679]
    "redox_syscall 0.1.44 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1315
    [3.51865][3.51865:51883]()
    version = "0.4.0"
    [3.51865]
    [3.51883]
    version = "0.4.1"
  • replacement in Cargo.lock at line 1336
    [3.52519][3.52519:52672]()
    "libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)",
    "redox_syscall 0.1.43 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.52519]
    [3.52672]
    "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)",
    "redox_syscall 0.1.44 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1359
    [3.53210][3.53210:53229]()
    version = "0.1.40"
    [3.53210]
    [3.53229]
    version = "0.1.41"
  • replacement in Cargo.lock at line 1362
    [3.53311][3.53311:53464]()
    "libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)",
    "redox_syscall 0.1.43 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.53311]
    [3.53464]
    "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)",
    "redox_syscall 0.1.44 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1375
    [3.53887][3.53887:53962]()
    "num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.53887]
    [3.53962]
    "num_cpus 1.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1449
    [3.56756][3.56756:56838]()
    "crossbeam-utils 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.56756]
    [3.56838]
    "crossbeam-utils 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1454
    [3.57132][3.57132:57207]()
    "num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.57132]
    [3.57207]
    "num_cpus 1.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1467
    [3.57725][3.57725:57797]()
    "libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.57725]
    [3.57797]
    "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1495
    [3.59052][3.59052:59216]()
    "crossbeam-deque 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
    "crossbeam-utils 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.59052]
    [3.59216]
    "crossbeam-deque 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)",
    "crossbeam-utils 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1499
    [3.59361][3.59361:59436]()
    "num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.59361]
    [3.59436]
    "num_cpus 1.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1509
    [3.59724][3.59724:59806]()
    "crossbeam-utils 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.59724]
    [3.59806]
    "crossbeam-utils 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1547
    [3.61406][3.61406:61478]()
    "libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.61406]
    [3.61478]
    "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1586
    [3.63560][3.63560:63633]()
    "serde 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.63560]
    [3.63633]
    "serde 1.0.82 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1601
    [3.64293][3.64293:64368]()
    "smallvec 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.64293]
    [3.64368]
    "smallvec 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1625
    [3.65726][3.65726:65801]()
    "smallvec 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.65726]
    [3.65801]
    "smallvec 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1819
    [3.71090][3.71090:71240]()
    "markup5ever 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
    "time 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.71090]
    [3.71240]
    "markup5ever 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)",
    "time 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1845
    [3.72727][3.72727:72878]()
    "checksum arrayvec 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" = "f405cc4c21cd8b784f6c8fc2adf9bc00f59558f0049b5ec21517f875963040cc"
    [3.72727]
    [3.72878]
    "checksum arrayvec 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)" = "d18513977c2d8261c448511c5c53dc66b26dfccbc3d4446672dea1e71a7d8a26"
  • edit in Cargo.lock at line 1847
    [3.73026]
    [3.73026]
    "checksum autocfg 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4e5f34df7a019573fb8bdc7e24a2bfebe51a2a1d6bfdbaeccedb3c41fc574727"
  • replacement in Cargo.lock at line 1849
    [3.73178][3.73178:73487]()
    "checksum backtrace 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "89a47830402e9981c5c41223151efcced65a0510c13097c769cede7efb34782a"
    "checksum backtrace-sys 0.1.24 (registry+https://github.com/rust-lang/crates.io-index)" = "c66d56ac8dabd07f6aacdaf633f4b8262f5b3601a810a0dcddffd5c22c69daa0"
    [3.73178]
    [3.73487]
    "checksum backtrace 0.3.13 (registry+https://github.com/rust-lang/crates.io-index)" = "b5b493b66e03090ebc4343eb02f94ff944e0cbc9ac6571491d170ba026741eb5"
    "checksum backtrace-sys 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)" = "3fcce89e5ad5c8949caa9434501f7b55415b3e7ad5270cb88c75a8d35e8f1279"
  • replacement in Cargo.lock at line 1859
    [3.74692][3.74692:74838]()
    "checksum cc 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)" = "f159dfd43363c4d08055a07703eb7a3406b0dac4d0584d96965a3262db3c9d16"
    [3.74692]
    [3.74838]
    "checksum cc 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)" = "389803e36973d242e7fecb092b2de44a3d35ac62524b3b9339e51d577d668e02"
  • replacement in Cargo.lock at line 1867
    [3.75914][3.75914:76388]()
    "checksum crossbeam-deque 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "4fe1b6f945f824c7a25afe44f62e25d714c0cc523f8e99d8db5cd1026e1269d3"
    "checksum crossbeam-epoch 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2449aaa4ec7ef96e5fb24db16024b935df718e9ae1cec0a1e68feeca2efca7b8"
    "checksum crossbeam-utils 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c55913cc2799171a550e307918c0a360e8c16004820291bf3b638969b4a01816"
    [3.75914]
    [3.76388]
    "checksum crossbeam-deque 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)" = "05e44b8cf3e1a625844d1750e1f7820da46044ff6d28f4d43e455ba3e5bb2c13"
    "checksum crossbeam-epoch 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f10a4f8f409aaac4b16a5474fb233624238fcdeefb9ba50d5ea059aab63ba31c"
    "checksum crossbeam-utils 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)" = "41ee4864f4797060e52044376f7d107429ce1fb43460021b126424b7180ee21a"
  • replacement in Cargo.lock at line 1874
    [3.76999][3.76999:77154]()
    "checksum encoding_rs 0.8.12 (registry+https://github.com/rust-lang/crates.io-index)" = "ca20350a7cb5aab5b9034731123d6d412caf3e92d4985e739e411ba0955fd0eb"
    [3.76999]
    [3.77154]
    "checksum encoding_rs 0.8.13 (registry+https://github.com/rust-lang/crates.io-index)" = "1a8fa54e6689eb2549c4efed8d00d7f3b2b994a064555b0e8df4ae3764bcc4be"
  • replacement in Cargo.lock at line 1895
    [3.80218][3.80218:80368]()
    "checksum hyper 0.12.17 (registry+https://github.com/rust-lang/crates.io-index)" = "c49a75385d35ff5e9202755f09beb0b878a05c4c363fcc52b23eeb5dcb6782cc"
    [3.80218]
    [3.80368]
    "checksum hyper 0.12.18 (registry+https://github.com/rust-lang/crates.io-index)" = "8dd7729fc83d88353415f6816fd4bb00897aa47c7f1506b69060e74e6e3d8e8b"
  • replacement in Cargo.lock at line 1906
    [3.81867][3.81867:82015]()
    "checksum libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)" = "10923947f84a519a45c8fefb7dd1b3e8c08747993381adee176d7a82b4195311"
    [3.81867]
    [3.82015]
    "checksum libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)" = "2d2857ec59fadc0773853c664d2d18e7198e83883e7060b63c924cb077bd5c74"
  • replacement in Cargo.lock at line 1912
    [3.82768][3.82768:82922]()
    "checksum markup5ever 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)" = "a87c4100d614080c8ab43334fb028ebe387f273fb61ed4ff0eae9189b94b6be8"
    [3.82768]
    [3.82922]
    "checksum markup5ever 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)" = "897636f9850c3eef4905a5540683ed53dc9393860f0846cab2c2ddf9939862ff"
  • replacement in Cargo.lock at line 1914
    [3.83072][3.83072:83221]()
    "checksum memchr 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0a3eb002f0535929f1199681417029ebea04aadc0c7a4224b46be99c7f5d6a16"
    [3.83072]
    [3.83221]
    "checksum memchr 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "db4c41318937f6e76648f42826b1d9ade5c09cafb5aef7e351240a70f39206e9"
  • replacement in Cargo.lock at line 1926
    [3.84890][3.84890:85193]()
    "checksum num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c51a3322e4bca9d212ad9a158a02abc6934d005490c054a2778df73a70aa0a30"
    "checksum openssl 0.10.15 (registry+https://github.com/rust-lang/crates.io-index)" = "5e1309181cdcbdb51bc3b6bedb33dfac2a83b3d585033d3f6d9e22e8c1928613"
    [3.84890]
    [3.85193]
    "checksum num_cpus 1.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5a69d464bdc213aaaff628444e99578ede64e9c854025aa43b9796530afa9238"
    "checksum openssl 0.10.16 (registry+https://github.com/rust-lang/crates.io-index)" = "ec7bd7ca4cce6dbdc77e7c1230682740d307d1218a87fb0349a571272be749f9"
  • replacement in Cargo.lock at line 1929
    [3.85349][3.85349:85504]()
    "checksum openssl-sys 0.9.39 (registry+https://github.com/rust-lang/crates.io-index)" = "278c1ad40a89aa1e741a1eed089a2f60b18fab8089c3139b542140fc7d674106"
    [3.85349]
    [3.85504]
    "checksum openssl-sys 0.9.40 (registry+https://github.com/rust-lang/crates.io-index)" = "1bb974e77de925ef426b6bc82fce15fd45bdcbeb5728bffcfc7cdeeb7ce1c2d6"
  • replacement in Cargo.lock at line 1955
    [3.89324][3.89324:89481]()
    "checksum redox_syscall 0.1.43 (registry+https://github.com/rust-lang/crates.io-index)" = "679da7508e9a6390aeaf7fbd02a800fdc64b73fe2204dd2c8ae66d22d9d5ad5d"
    [3.89324]
    [3.89481]
    "checksum redox_syscall 0.1.44 (registry+https://github.com/rust-lang/crates.io-index)" = "a84bcd297b87a545980a2d25a0beb72a1f490c31f0a9fde52fca35bfbb1ceb70"
  • replacement in Cargo.lock at line 1957
    [3.89637][3.89637:89940]()
    "checksum regex 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "ee84f70c8c08744ea9641a731c7fadb475bf2ecc52d7f627feb833e0b3990467"
    "checksum regex-syntax 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)" = "fbc557aac2b708fe84121caf261346cc2eed71978024337e42eb46b8a252ac6e"
    [3.89637]
    [3.89940]
    "checksum regex 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "37e7cbbd370869ce2e8dff25c7018702d10b21a20ef7135316f8daecd6c25b7f"
    "checksum regex-syntax 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)" = "4e47a2ed29da7a9e1960e1639e7a982e6edc6d49be308a3b02daf511504a16d1"
  • replacement in Cargo.lock at line 1961
    [3.90251][3.90251:90408]()
    "checksum rustc-demangle 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "bcfe5b13211b4d78e5c2cadfebd7769197d95c639c35a50057eb4c05de811395"
    [3.90251]
    [3.90408]
    "checksum rustc-demangle 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)" = "01b90379b8664dd83460d59bdc5dd1fd3172b8913788db483ed1325171eab2f7"
  • replacement in Cargo.lock at line 1972
    [3.91943][3.91943:92248]()
    "checksum serde 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)" = "15c141fc7027dd265a47c090bf864cf62b42c4d228bbcf4e51a0c9e2b0d3f7ef"
    "checksum serde_derive 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)" = "225de307c6302bec3898c51ca302fc94a7a1697ef0845fcee6448f33c032249c"
    [3.91943]
    [3.92248]
    "checksum serde 1.0.82 (registry+https://github.com/rust-lang/crates.io-index)" = "6fa52f19aee12441d5ad11c9a00459122bd8f98707cadf9778c540674f1935b6"
    "checksum serde_derive 1.0.82 (registry+https://github.com/rust-lang/crates.io-index)" = "96a7f9496ac65a2db5929afa087b54f8fc5008dcfbe48a8874ed20049b0d6154"
  • replacement in Cargo.lock at line 1981
    [3.93297][3.93297:93448]()
    "checksum smallvec 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)" = "622df2d454c29a4d89b30dc3b27b42d7d90d6b9e587dbf8f67652eb7514da484"
    [3.93297]
    [3.93448]
    "checksum smallvec 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)" = "b73ea3738b47563803ef814925e69be00799a8c07420be8b996f8e98fb2336db"
  • replacement in Cargo.lock at line 1990
    [3.94685][3.94685:94833]()
    "checksum syn 0.15.22 (registry+https://github.com/rust-lang/crates.io-index)" = "ae8b29eb5210bc5cf63ed6149cbf9adfc82ac0be023d8735c176ee74a2db4da7"
    [3.94685]
    [3.94833]
    "checksum syn 0.15.23 (registry+https://github.com/rust-lang/crates.io-index)" = "9545a6a093a3f0bd59adb472700acc08cad3776f860f16a897dfce8c88721cbc"
  • replacement in Cargo.lock at line 1994
    [3.95289][3.95289:95439]()
    "checksum tendril 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9de21546595a0873061940d994bbbc5c35f024ae4fd61ec5c5b159115684f508"
    [3.95289]
    [3.95439]
    "checksum tendril 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "707feda9f2582d5d680d733e38755547a3e8fb471e7ba11452ecfd9ce93a5d3b"
  • replacement in Cargo.lock at line 1999
    [3.96048][3.96048:96196]()
    "checksum time 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)" = "d825be0eb33fda1a7e68012d51e9c7f451dc1a69391e7fdc197060bb8c56667b"
    [3.96048]
    [3.96196]
    "checksum time 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)" = "847da467bf0db05882a9e2375934a8a55cffdc9db0d128af1518200260ba1f6c"