Update dependencies

[?]
Mar 8, 2019, 8:33 PM
DISBBP3IQHP5YL654247RYGOB3KGEF5TG62HZTYLMZBGDTVNV7ZAC

Dependencies

  • [2] VW7NVWAG Leave MUC properly
  • [3] V5HDBSZM Use jid for receiver address
  • [4] X6L47BHQ Use different structure for established xmpp connection
  • [5] 2VZBEEXA Messages fixed
  • [6] J7VX56FW ToDo
  • [7] CBWCXUZZ Prepare adding new items to roster
  • [8] RGOSS73U Convert self-presence to xmpp_parser's type
  • [9] WBU7UOQW Read chatroom from config
  • [10] IK3YDPTY Update deps
  • [11] ACXUIS63 Update dependecies
  • [12] VS6AHRWI Move XMPP to separate dir
  • [13] 37OMJ4CK Send MUC message
  • [14] ZI4GJ72V Add message to xmpp command
  • [15] OB3HA2MD Use Client::new_with_jid to parse jid only once
  • [16] NDDQQP2P Update deps
  • [17] AYQZ2UIA Update deps
  • [18] QYY3KRGL Use failure instead Box<dyn Error>
  • [19] 5Y6YJ6UH Add shutdown function to make actions before offline
  • [20] AA2ZWGRL Enter to MUC
  • [21] FVVPKFTL Initial commit
  • [22] YZVEEOYT Update dependencies
  • [23] FV6BJ5K6 Send self-presence and store account info in Rc so it willbe used in some future in parallel
  • [24] HKSQO7JZ Enable hyper http server and configuration
  • [25] EOHEZXX3 Move request processing to structure
  • [26] L3D22A5J Prepare to check incoming presence
  • [27] 5IKA4GO7 Rename xmpp client field from "inner" to "client"
  • [28] 5OBTKGDL Update deps
  • [29] SYH7UQP6 Make xmpp command enum to allow different commands Save subscription ask status. Don't ask if already requested subscription.

Change contents

  • edit in src/xmpp/stanzas.rs at line 68
    [3.256][2.0:240]()
    pub fn make_muc_presence_leave(from: xmpp_parsers::Jid, to: xmpp_parsers::Jid) -> Element {
    let mut presence = Presence::new(PresenceType::Unavailable);
    presence.from = Some(from);
    presence.to = Some(to);
    presence.into()
    }
  • edit in src/xmpp/mod.rs at line 616
    [3.12365][2.241:801]()
    fn shutdown(self) -> impl Future<Item = (), Error = failure::Error> {
    info!("Shutdown connection");
    let XmppConnection { account, state } = self;
    stream::iter_ok(
    state
    .data
    .mucs
    .values()
    .map(std::clone::Clone::clone)
    .collect::<Vec<_>>(),
    )
    .fold(state, move |XmppState { client, data }, muc_jid| {
    let muc_presence =
    stanzas::make_muc_presence_leave(account.jid.clone(), muc_jid.clone());
  • edit in src/xmpp/mod.rs at line 617
    [3.12366][2.802:1233]()
    info!("Sending muc leave presence... {:?}", muc_presence);
    use tokio::prelude::Sink;
    client
    .send(Packet::Stanza(muc_presence))
    .map_err(|e| {
    error!("Error on send muc presence: {}", e);
    e
    })
    .and_then(|client| future::ok(XmppState { client, data }))
    })
    .map(|_| ())
    }
  • replacement in src/xmpp/mod.rs at line 722
    [3.24278][2.1234:1378]()
    error!("Command receiver is gone");
    future::ok(future::Loop::Break(Some(conn)))
    [3.24278]
    [3.24363]
    future::err(format_err!("Command receiver is gone"))
  • replacement in src/xmpp/mod.rs at line 735
    [3.24895][2.1379:1455]()
    future::ok(future::Loop::Break(Some(conn)))
    [3.24895]
    [3.24963]
    future::ok(future::Loop::Break(()))
  • replacement in src/xmpp/mod.rs at line 738
    [3.25019][2.1456:1656]()
    Err(_) => {
    error!("Command receiver is broken");
    future::ok(future::Loop::Break(Some(conn)))
    }
    [3.25019]
    [3.25109]
    Err(_) => future::err(format_err!("Command receiver is broken")),
  • replacement in src/xmpp/mod.rs at line 761
    [3.26249][2.1657:1727]()
    future::ok(future::Loop::Break(None))
    [3.26249]
    [3.26317]
    future::ok(future::Loop::Break(()))
  • edit in src/xmpp/mod.rs at line 769
    [3.6451][2.1728:1944]()
    .and_then(|opt_conn| {
    if let Some(conn) = opt_conn {
    Box::new(conn.shutdown()) as Box<dyn Future<Item = (), Error = _>>
    } else {
    Box::new(future::ok(()))
    }
    })
  • replacement in src/main.rs at line 40
    [3.2109][3.2109:2140]()
    .map_err(|e| e.into())
    [3.2109]
    [3.2140]
    .map_err(std::convert::Into::into)
  • replacement in src/main.rs at line 66
    [3.14630][3.14630:14673](),[3.14630][3.14630:14673]()
    .map_err(|e| e.into())
    [3.14630]
    [3.14673]
    .map_err(std::convert::Into::into)
  • replacement in src/main.rs at line 69
    [3.14764][3.14764:14844](),[3.14764][3.14764:14844]()
    .map_err(|e: xmpp_parsers::JidParseError| e.into())
    [3.14764]
    [3.14844]
    .map_err(std::convert::Into::into)
  • replacement in src/main.rs at line 77
    [3.2401][3.2401:2458]()
    .map(|h| h.to_str().map(|s| s.to_string()));
    [3.2401]
    [3.2458]
    .map(|h| h.to_str().map(std::string::ToString::to_string));
  • replacement in src/main.rs at line 86
    [3.15247][3.15247:15295](),[3.15247][3.15247:15295]()
    .map_err(|e| e.into()),
    [3.15247]
    [3.15295]
    .map_err(std::convert::Into::into),
  • replacement in src/main.rs at line 114
    [3.3856][3.3856:3912]()
    .map_err(|e| e.into()),
    [3.3856]
    [3.3912]
    .map_err(std::convert::Into::into),
  • replacement in src/main.rs at line 122
    [3.4267][3.4267:4323]()
    .map_err(|e| e.into()),
    [3.4267]
    [3.4323]
    .map_err(std::convert::Into::into),
  • replacement in src/main.rs at line 153
    [3.5970][3.5970:6026]()
    .map_err(|e| e.into()),
    [3.5970]
    [3.6026]
    .map_err(std::convert::Into::into),
  • replacement in src/main.rs at line 161
    [3.6381][3.6381:6437]()
    .map_err(|e| e.into()),
    [3.6381]
    [3.6437]
    .map_err(std::convert::Into::into),
  • replacement in src/main.rs at line 173
    [3.7006][3.7006:7054]()
    .map_err(|e| e.into()),
    [3.7006]
    [3.7054]
    .map_err(std::convert::Into::into),
  • edit in src/config.rs at line 0
    [3.1396][2.1945:1976]()
    use std::collections::HashMap;
  • edit in src/config.rs at line 9
    [3.1549][2.1977:2096]()
    #[serde(default, deserialize_with = "deserialize_jid_map")]
    pub chatrooms: HashMap<String, xmpp_parsers::Jid>,
  • edit in src/config.rs at line 36
    [3.1945][2.2097:2846]()
    fn deserialize_jid_map<'de, D>(
    deserializer: D,
    ) -> Result<HashMap<String, xmpp_parsers::Jid>, D::Error>
    where
    D: serde::Deserializer<'de>,
    {
    use serde::Deserialize;
    let s = HashMap::<String, String>::deserialize(deserializer)?;
    let size = s.len();
    s.into_iter()
    .map(|(k, v)| (k, std::str::FromStr::from_str(&v)))
    .take_while(|(_k, r)| r.is_ok())
    .fold(Ok(HashMap::with_capacity(size)), |res, (k, r)| match res {
    Ok(mut res) => match r {
    Ok(v) => {
    res.insert(k, v);
    Ok(res)
    }
    Err(e) => Err(e),
    },
    Err(e) => Err(e),
    })
    .map_err(serde::de::Error::custom)
    }
  • edit in Cargo.lock at line 0
    [3.12201]
    [3.6543]
    # This file is automatically @generated by Cargo.
    # It is not intended for manual editing.
  • replacement in Cargo.lock at line 7
    [3.19377][3.19377:19449]()
    "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.19377]
    [3.19449]
    "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 12
    [3.6577][3.4093:4111]()
    version = "0.6.9"
    [3.6577]
    [3.6595]
    version = "0.6.10"
  • replacement in Cargo.lock at line 15
    [3.6677][3.4112:4185]()
    "memchr 2.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.6677]
    [3.6750]
    "memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 44
    [3.8093][3.19578:19650]()
    "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.8093]
    [3.8165]
    "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 56
    [3.9017][3.19687:19706]()
    version = "0.3.13"
    [3.9017]
    [3.9035]
    version = "0.3.14"
  • replacement in Cargo.lock at line 61
    [3.14804][3.9198:9271](),[3.19862][3.9198:9271](),[3.2365][3.9198:9271](),[3.1788][3.9198:9271](),[3.10801][3.9198:9271](),[3.14719][3.9198:9271](),[3.8549][3.9198:9271](),[3.32480][3.9198:9271](),[3.8922][3.9198:9271](),[3.5919][3.9198:9271](),[3.3444][3.9198:9271](),[3.14111][3.9198:9271](),[3.5583][3.9198:9271](),[3.5286][3.9198:9271](),[3.6201][3.9198:9271](),[3.9198][3.9198:9271](),[3.9271][3.19863:19935]()
    "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
    "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.19862]
    [3.19935]
    "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
    "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 72
    [3.9636][3.20038:20180]()
    "cc 1.0.29 (registry+https://github.com/rust-lang/crates.io-index)",
    "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.9636]
    [3.9778]
    "cc 1.0.30 (registry+https://github.com/rust-lang/crates.io-index)",
    "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 102
    [3.10568][3.4186:4204]()
    version = "0.7.2"
    [3.10568]
    [3.15479]
    version = "0.7.0"
  • replacement in Cargo.lock at line 131
    [3.11081][3.7159:7178]()
    version = "0.4.11"
    [3.11081]
    [3.11100]
    version = "0.4.12"
  • replacement in Cargo.lock at line 145
    [3.11467][3.21268:21287]()
    version = "1.0.29"
    [3.11467]
    [3.11486]
    version = "1.0.30"
  • replacement in Cargo.lock at line 150
    [3.11580][3.11580:11598](),[3.11580][3.11580:11598](),[3.11580][3.11580:11598](),[3.11580][3.11580:11598](),[3.11580][3.11580:11598](),[3.11580][3.11580:11598](),[3.11580][3.11580:11598](),[3.11580][3.11580:11598](),[3.11580][3.11580:11598](),[3.11580][3.11580:11598](),[3.11580][3.11580:11598](),[3.11580][3.11580:11598](),[3.11580][3.11580:11598](),[3.11580][3.11580:11598](),[3.11580][3.11580:11598](),[3.11580][3.11580:11598]()
    version = "0.1.6"
    [3.11580]
    [3.11598]
    version = "0.1.7"
  • replacement in Cargo.lock at line 191
    [3.13233][3.21361:21433]()
    "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.13233]
    [3.13305]
    "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 199
    [3.16505][3.21434:21506]()
    "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.16505]
    [3.21506]
    "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)",
  • edit in Cargo.lock at line 203
    [3.21521][3.21521:22121](),[3.22121][3.4205:4280](),[3.189][3.22196:22498](),[3.4280][3.22196:22498](),[3.22196][3.22196:22498](),[3.22498][3.4281:4356](),[3.265][3.34124:34139](),[3.22573][3.34124:34139](),[3.3768][3.34124:34139](),[3.16811][3.34124:34139](),[3.6966][3.34124:34139](),[3.4356][3.34124:34139](),[3.7324][3.34124:34139](),[3.34124][3.34124:34139]()
    name = "crossbeam"
    version = "0.6.0"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    dependencies = [
    "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
    "crossbeam-channel 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
    "crossbeam-deque 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)",
    "crossbeam-epoch 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
    "crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
    "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
    "num_cpus 1.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
    "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
    ]
    [[package]]
    name = "crossbeam-channel"
    version = "0.3.8"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    dependencies = [
    "crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
    "smallvec 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)",
    ]
    [[package]]
  • replacement in Cargo.lock at line 204
    [3.13561][3.22574:22592]()
    version = "0.6.3"
    [3.13561]
    [3.13579]
    version = "0.7.1"
  • replacement in Cargo.lock at line 217
    [3.17176][3.14040:14113](),[3.22853][3.14040:14113](),[3.4047][3.14040:14113](),[3.2625][3.14040:14113](),[3.11638][3.14040:14113](),[3.17091][3.14040:14113](),[3.9386][3.14040:14113](),[3.34852][3.14040:14113](),[3.10584][3.14040:14113](),[3.6755][3.14040:14113](),[3.4279][3.14040:14113](),[3.14946][3.14040:14113](),[3.7245][3.14040:14113](),[3.6121][3.14040:14113](),[3.7036][3.14040:14113](),[3.7603][3.14040:14113](),[3.14040][3.14040:14113]()
    "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.22853]
    [3.22854]
    "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 219
    [3.22936][3.7686:7764](),[3.17174][3.7686:7764](),[3.7328][3.7686:7764](),[3.7686][3.7686:7764]()
    "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.22936]
    [3.14273]
    "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
  • edit in Cargo.lock at line 222
    [3.14426]
    [3.14426]
    ]
    [[package]]
    name = "crossbeam-queue"
    version = "0.1.2"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    dependencies = [
    "crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 237
    [3.7801][3.7801:7874](),[3.7874][3.22956:23034]()
    "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
    "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.7801]
    [3.7874]
    "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
    "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 270
    [3.15825][3.4357:4376]()
    version = "0.8.15"
    [3.15825]
    [3.15844]
    version = "0.8.17"
  • replacement in Cargo.lock at line 273
    [3.15926][3.15926:15999](),[3.15926][3.15926:15999](),[3.15926][3.15926:15999](),[3.15926][3.15926:15999](),[3.15926][3.15926:15999](),[3.15926][3.15926:15999](),[3.15926][3.15926:15999](),[3.15926][3.15926:15999](),[3.15926][3.15926:15999](),[3.15926][3.15926:15999](),[3.15926][3.15926:15999](),[3.15926][3.15926:15999](),[3.15926][3.15926:15999](),[3.15926][3.15926:15999](),[3.15926][3.15926:15999](),[3.15926][3.15926:15999](),[3.15926][3.15926:15999](),[3.15926][3.15926:15999](),[3.15926][3.15926:15999]()
    "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.15926]
    [3.7897]
    "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 278
    [3.7932][3.7932:7950]()
    version = "0.6.0"
    [3.7932]
    [3.7950]
    version = "0.6.1"
  • replacement in Cargo.lock at line 284
    [3.8250][3.23330:23402]()
    "regex 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.8250]
    [3.8322]
    "regex 1.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 293
    [3.16849][3.23403:23480]()
    "backtrace 0.3.13 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.16849]
    [3.16925]
    "backtrace 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 301
    [3.17057][3.23500:23577]()
    "backtrace 0.3.13 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.17057]
    [3.23577]
    "backtrace 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 312
    [3.23830][3.23830:23902]()
    "syn 0.15.26 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.23830]
    [3.8623]
    "syn 0.15.28 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 364
    [3.18854][3.4377:4465]()
    "new_debug_unreachable 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.18854]
    [3.18942]
    "new_debug_unreachable 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 378
    [3.19271][3.4466:4541]()
    "num_cpus 1.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.19271]
    [3.19346]
    "num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 395
    [3.24215][3.8724:8797](),[3.18254][3.8724:8797](),[3.8915][3.8724:8797](),[3.5707][3.8724:8797]()
    "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.24215]
    [3.19836]
    "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 398
    [3.19981][3.24216:24288]()
    "http 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.19981]
    [3.20053]
    "http 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 403
    [3.24433][3.24433:24509]()
    "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.24433]
    [3.24509]
    "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 420
    [3.20551][3.24789:24861]()
    "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.20551]
    [3.20623]
    "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 426
    [3.20726][3.24862:24881]()
    version = "0.1.15"
    [3.20726]
    [3.20745]
    version = "0.1.16"
  • replacement in Cargo.lock at line 429
    [3.20827][3.9109:9182]()
    "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.20827]
    [3.20900]
    "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 449
    [3.21397][3.4542:4562]()
    version = "0.12.23"
    [3.21397]
    [3.21417]
    version = "0.12.25"
  • replacement in Cargo.lock at line 452
    [3.21499][3.9418:9491]()
    "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.21499]
    [3.21572]
    "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 456
    [3.24973][3.24973:25045]()
    "http 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.24973]
    [3.21871]
    "http 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)",
  • edit in Cargo.lock at line 462
    [3.22231]
    [3.25046]
    "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 464
    [3.25118][3.25118:25191]()
    "tokio 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.25118]
    [3.25191]
    "tokio 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 466
    [3.25272][3.25272:25428]()
    "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
    "tokio-reactor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.25272]
    [3.25428]
    "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
    "tokio-reactor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 469
    [3.25504][3.25504:25588]()
    "tokio-threadpool 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.25504]
    [3.25588]
    "tokio-threadpool 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 494
    [3.23535][3.25757:25829]()
    "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.23535]
    [3.23607]
    "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 541
    [3.25092][3.10115:10133]()
    version = "1.2.0"
    [3.25092]
    [3.25110]
    version = "1.3.0"
  • replacement in Cargo.lock at line 551
    [3.25316][3.26080:26099]()
    version = "0.2.48"
    [3.25316]
    [3.25335]
    version = "0.2.50"
  • replacement in Cargo.lock at line 573
    [3.25934][3.25934:26007](),[3.25934][3.25934:26007](),[3.25934][3.25934:26007]()
    "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.25934]
    [3.26007]
    "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 596
    [3.26269][3.4563:4716](),[3.626][3.26422:26500](),[3.4716][3.26422:26500](),[3.26422][3.26422:26500]()
    "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)",
    "serde_derive 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)",
    "serde_json 1.0.38 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.26269]
    [3.26849]
    "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)",
    "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)",
    "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 611
    [3.27233][3.4717:4735]()
    version = "2.1.3"
    [3.27233]
    [3.27251]
    version = "2.2.0"
  • edit in Cargo.lock at line 613
    [3.27316][3.4736:4900]()
    dependencies = [
    "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
    "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)",
    ]
  • replacement in Cargo.lock at line 626
    [3.26843][3.26843:26920]()
    "quick-xml 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.26843]
    [3.28037]
    "quick-xml 0.13.3 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 639
    [3.10535][3.26921:26993]()
    "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.10535]
    [3.10607]
    "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 653
    [3.29191][3.27066:27138]()
    "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.29191]
    [3.29263]
    "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 673
    [3.29899][3.10751:10829](),[3.10829][3.27139:27211]()
    "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
    "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.29899]
    [3.10901]
    "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
    "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 676
    [3.10971][3.27212:27288]()
    "openssl 0.10.16 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.10971]
    [3.30195]
    "openssl 0.10.19 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 678
    [3.30275][3.27289:27368](),[3.21159][3.30354:30430](),[3.27368][3.30354:30430](),[3.9693][3.30354:30430](),[3.4101][3.30354:30430](),[3.13114][3.30354:30430](),[3.21074][3.30354:30430](),[3.11293][3.30354:30430](),[3.38835][3.30354:30430](),[3.14872][3.30354:30430](),[3.8231][3.30354:30430](),[3.5753][3.30354:30430](),[3.16498][3.30354:30430](),[3.11533][3.30354:30430](),[3.8026][3.30354:30430](),[3.8510][3.30354:30430](),[3.30354][3.30354:30430]()
    "openssl-sys 0.9.40 (registry+https://github.com/rust-lang/crates.io-index)",
    "schannel 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.30275]
    [3.27369]
    "openssl-sys 0.9.42 (registry+https://github.com/rust-lang/crates.io-index)",
    "schannel 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 682
    [3.27543][3.4901:4976]()
    "tempfile 3.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.27543]
    [3.30679]
    "tempfile 3.0.7 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 690
    [3.30809][3.30809:30882](),[3.30809][3.30809:30882](),[3.30809][3.30809:30882](),[3.30809][3.30809:30882](),[3.30809][3.30809:30882](),[3.30809][3.30809:30882](),[3.30882][3.27619:27691]()
    "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
    "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.30809]
    [3.30954]
    "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
    "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 697
    [3.31073][3.4977:4995]()
    version = "1.0.1"
    [3.31073]
    [3.31091]
    version = "1.0.3"
  • edit in Cargo.lock at line 699
    [3.31156][3.4996:5093]()
    dependencies = [
    "unreachable 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
    ]
  • replacement in Cargo.lock at line 720
    [3.31727][3.5094:5112]()
    version = "1.9.0"
    [3.31727]
    [3.31745]
    version = "1.10.0"
  • replacement in Cargo.lock at line 723
    [3.31827][3.27711:27783]()
    "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.31827]
    [3.31899]
    "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 733
    [3.31931][3.27903:27923]()
    version = "0.10.16"
    [3.31931]
    [3.31951]
    version = "0.10.19"
  • replacement in Cargo.lock at line 737
    [3.32108][3.32108:32181](),[3.32108][3.32108:32181](),[3.32108][3.32108:32181](),[3.32108][3.32108:32181](),[3.32108][3.32108:32181](),[3.32108][3.32108:32181](),[3.32108][3.32108:32181](),[3.32108][3.32108:32181](),[3.32108][3.32108:32181](),[3.32108][3.32108:32181](),[3.32108][3.32108:32181](),[3.32108][3.32108:32181](),[3.32108][3.32108:32181](),[3.32108][3.32108:32181](),[3.32108][3.32108:32181](),[3.32108][3.32108:32181]()
    "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.32108]
    [3.32181]
    "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 739
    [3.32261][3.11214:11292](),[3.11292][3.27924:28075]()
    "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
    "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)",
    "openssl-sys 0.9.40 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.32261]
    [3.32490]
    "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
    "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)",
    "openssl-sys 0.9.42 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 751
    [3.32645][3.28076:28095]()
    version = "0.9.40"
    [3.32645]
    [3.32664]
    version = "0.9.42"
  • replacement in Cargo.lock at line 754
    [3.32746][3.28096:28238]()
    "cc 1.0.29 (registry+https://github.com/rust-lang/crates.io-index)",
    "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.32746]
    [3.32888]
    "cc 1.0.30 (registry+https://github.com/rust-lang/crates.io-index)",
    "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)",
  • edit in Cargo.lock at line 757
    [3.32966]
    [3.32966]
    "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 783
    [3.33693][3.28361:28433]()
    "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.33693]
    [3.28433]
    "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 786
    [3.33916][3.5113:5188]()
    "smallvec 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.33916]
    [3.33991]
    "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 863
    [3.35794][3.29355:29374]()
    version = "0.13.2"
    [3.35794]
    [3.35813]
    version = "0.13.3"
  • replacement in Cargo.lock at line 866
    [3.35895][3.5189:5268]()
    "encoding_rs 0.8.15 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.35895]
    [3.29454]
    "encoding_rs 0.8.17 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 869
    [3.11852][3.5269:5342]()
    "memchr 2.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.11852]
    [3.36191]
    "memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 892
    [3.29802][3.29802:29874]()
    "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.29802]
    [3.29874]
    "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 903
    [3.30044][3.30044:30116]()
    "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.30044]
    [3.30116]
    "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 909
    [3.30349][3.30349:30423](),[3.30423][3.12907:12982](),[3.23725][3.12907:12982](),[3.12907][3.12907:12982]()
    "rand_os 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
    "rand_pcg 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.30349]
    [3.30424]
    "rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
    "rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 958
    [3.31079][3.31079:31151]()
    "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.31079]
    [3.31151]
    "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 965
    [3.31332][3.31332:31350]()
    version = "0.1.2"
    [3.31332]
    [3.31350]
    version = "0.1.3"
  • replacement in Cargo.lock at line 970
    [3.31587][3.31587:31659]()
    "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.31587]
    [3.31659]
    "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 978
    [3.13875][3.13875:13893]()
    version = "0.1.1"
    [3.13875]
    [3.13893]
    version = "0.1.2"
  • replacement in Cargo.lock at line 981
    [3.13975][3.31882:31958](),[3.31958][3.14051:14131](),[3.14051][3.14051:14131]()
    "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
    "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.13975]
    [3.14131]
    "autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
    "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1016
    [3.14574][3.32364:32382]()
    version = "1.1.0"
    [3.14574]
    [3.14592]
    version = "1.1.2"
  • replacement in Cargo.lock at line 1019
    [3.14674][3.5343:5495]()
    "aho-corasick 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)",
    "memchr 2.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.14674]
    [3.32456]
    "aho-corasick 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)",
    "memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1077
    [3.32831][3.32831:32905]()
    "rand_os 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.32831]
    [3.32905]
    "rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1084
    [3.42306][3.42306:42325](),[3.42306][3.42306:42325](),[3.42306][3.42306:42325](),[3.42306][3.42306:42325](),[3.42306][3.42306:42325](),[3.42306][3.42306:42325](),[3.42306][3.42306:42325](),[3.42306][3.42306:42325](),[3.42306][3.42306:42325](),[3.42306][3.42306:42325](),[3.42306][3.42306:42325](),[3.42306][3.42306:42325](),[3.42306][3.42306:42325](),[3.42306][3.42306:42325](),[3.42306][3.42306:42325](),[3.42306][3.42306:42325]()
    version = "0.1.14"
    [3.42306]
    [3.42325]
    version = "0.1.15"
  • replacement in Cargo.lock at line 1087
    [3.42407][3.15213:15291]()
    "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.42407]
    [3.42485]
    "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1103
    [3.42985][3.33068:33140]()
    "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.42985]
    [3.33140]
    "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1114
    [3.43379][3.33329:33401]()
    "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.43379]
    [3.43451]
    "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1135
    [3.43904][3.15438:15515]()
    "env_logger 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.43904]
    [3.33402]
    "env_logger 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1137
    [3.33476][3.5496:5570]()
    "hyper 0.12.23 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.33476]
    [3.15663]
    "hyper 0.12.25 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1140
    [3.33626][3.5571:5724](),[3.1373][3.33779:33852](),[3.5724][3.33779:33852](),[3.33779][3.33779:33852]()
    "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)",
    "serde_derive 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)",
    "tokio 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.33626]
    [3.15881]
    "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)",
    "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)",
    "tokio 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1153
    [3.44917][3.5725:5744]()
    version = "1.0.87"
    [3.44917]
    [3.44936]
    version = "1.0.89"
  • replacement in Cargo.lock at line 1158
    [3.45036][3.5745:5764]()
    version = "1.0.87"
    [3.45036]
    [3.45055]
    version = "1.0.89"
  • replacement in Cargo.lock at line 1163
    [3.34279][3.34279:34351]()
    "syn 0.15.26 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.34279]
    [3.45361]
    "syn 0.15.28 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1168
    [3.45396][3.34352:34371]()
    version = "1.0.38"
    [3.45396]
    [3.45415]
    version = "1.0.39"
  • replacement in Cargo.lock at line 1173
    [3.16584][3.5765:5838]()
    "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.16584]
    [3.45711]
    "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1181
    [3.45841][3.5839:5918]()
    "block-buffer 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.45841]
    [3.34544]
    "block-buffer 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1192
    [3.46275][3.5919:5998]()
    "block-buffer 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.46275]
    [3.34796]
    "block-buffer 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1203
    [3.46709][3.5999:6078]()
    "block-buffer 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.46709]
    [3.35048]
    "block-buffer 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1212
    [3.47047][3.35279:35297]()
    version = "0.1.7"
    [3.47047]
    [3.47065]
    version = "0.1.8"
  • replacement in Cargo.lock at line 1216
    [3.35373][3.35373:35445]()
    "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.35373]
    [3.47294]
    "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1231
    [3.47552][3.6079:6097]()
    version = "0.6.8"
    [3.47552]
    [3.47570]
    version = "0.6.9"
  • edit in Cargo.lock at line 1233
    [3.47635][3.6098:6195]()
    dependencies = [
    "unreachable 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
    ]
  • replacement in Cargo.lock at line 1239
    [3.47862][3.47862:47935](),[3.47862][3.47862:47935](),[3.47935][3.35484:35556]()
    "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
    "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.47862]
    [3.35556]
    "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
    "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1260
    [3.48534][3.16944:17022](),[3.17022][3.6196:6284]()
    "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
    "new_debug_unreachable 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.48534]
    [3.35657]
    "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
    "new_debug_unreachable 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1264
    [3.48861][3.6285:6358]()
    "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.48861]
    [3.48934]
    "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1308
    [3.50268][3.36235:36255]()
    version = "0.15.26"
    [3.50268]
    [3.50288]
    version = "0.15.28"
  • replacement in Cargo.lock at line 1331
    [3.36561][3.36561:36633]()
    "syn 0.15.26 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.36561]
    [3.51171]
    "syn 0.15.28 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1337
    [3.51282][3.6359:6377]()
    version = "3.0.6"
    [3.51282]
    [3.51300]
    version = "3.0.7"
  • replacement in Cargo.lock at line 1340
    [3.51382][3.51382:51455](),[3.51382][3.51382:51455](),[3.51382][3.51382:51455](),[3.51382][3.51382:51455](),[3.51382][3.51382:51455](),[3.51382][3.51382:51455](),[3.51455][3.36653:36725]()
    "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
    "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.51382]
    [3.36725]
    "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
    "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1371
    [3.52519][3.36970:37042]()
    "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.52519]
    [3.37042]
    "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1389
    [3.18340][3.18340:18418]()
    "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.18340]
    [3.52966]
    "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1397
    [3.53311][3.37144:37216]()
    "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.53311]
    [3.37216]
    "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1404
    [3.53567][3.37298:37317]()
    version = "0.1.15"
    [3.53567]
    [3.53586]
    version = "0.1.16"
  • replacement in Cargo.lock at line 1407
    [3.53668][3.18593:18666]()
    "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.53668]
    [3.53741]
    "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1410
    [3.53887][3.6378:6453]()
    "num_cpus 1.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.53887]
    [3.53962]
    "num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1412
    [3.54040][3.18743:18830]()
    "tokio-current-thread 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.54040]
    [3.37394]
    "tokio-current-thread 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1414
    [3.37475][3.37475:37783]()
    "tokio-fs 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
    "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
    "tokio-reactor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
    "tokio-sync 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.37475]
    [3.37783]
    "tokio-fs 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
    "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
    "tokio-reactor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
    "tokio-sync 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1419
    [3.37859][3.37859:37943]()
    "tokio-threadpool 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.37859]
    [3.37943]
    "tokio-threadpool 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1438
    [3.55160][3.19439:19512]()
    "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.55160]
    [3.55233]
    "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1440
    [3.55308][3.38100:38176]()
    "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.55308]
    [3.55384]
    "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1445
    [3.55429][3.19513:19531]()
    version = "0.1.4"
    [3.55429]
    [3.55447]
    version = "0.1.5"
  • replacement in Cargo.lock at line 1463
    [3.55932][3.38361:38379]()
    version = "0.1.5"
    [3.55932]
    [3.55950]
    version = "0.1.6"
  • replacement in Cargo.lock at line 1467
    [3.56107][3.38380:38540]()
    "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
    "tokio-threadpool 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.56107]
    [3.56266]
    "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
    "tokio-threadpool 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1473
    [3.56299][3.38541:38560]()
    version = "0.1.11"
    [3.56299]
    [3.56318]
    version = "0.1.12"
  • replacement in Cargo.lock at line 1476
    [3.56400][3.19616:19689]()
    "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.56400]
    [3.56473]
    "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1483
    [3.56656][3.38561:38579]()
    version = "0.1.8"
    [3.56656]
    [3.56674]
    version = "0.1.9"
  • replacement in Cargo.lock at line 1488
    [3.56913][3.19863:19941]()
    "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.56913]
    [3.19941]
    "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1491
    [3.57132][3.6454:6529]()
    "num_cpus 1.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.57132]
    [3.38738]
    "num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1495
    [3.38968][3.38968:39044](),[3.38968][3.38968:39044](),[3.38968][3.38968:39044]()
    "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.38968]
    [3.57513]
    "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
    "tokio-sync 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1505
    [3.57725][3.39045:39117]()
    "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.57725]
    [3.57797]
    "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1508
    [3.57942][3.39118:39196]()
    "signal-hook 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.57942]
    [3.39196]
    "signal-hook 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1510
    [3.39277][3.39277:39433]()
    "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
    "tokio-reactor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.39277]
    [3.58257]
    "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
    "tokio-reactor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1517
    [3.39469][3.39469:39487]()
    version = "0.1.1"
    [3.39469]
    [3.39487]
    version = "0.1.3"
  • edit in Cargo.lock at line 1520
    [3.39569]
    [3.39569]
    "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1529
    [3.58464][3.20264:20337]()
    "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.58464]
    [3.58537]
    "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1533
    [3.58755][3.39664:39820]()
    "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
    "tokio-reactor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.58755]
    [3.58911]
    "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
    "tokio-reactor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1539
    [3.58952][3.39821:39840]()
    version = "0.1.11"
    [3.58952]
    [3.58970]
    version = "0.1.12"
  • replacement in Cargo.lock at line 1542
    [3.59052][3.39841:40083]()
    "crossbeam 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
    "crossbeam-channel 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
    "crossbeam-deque 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.59052]
    [3.40083]
    "crossbeam-deque 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
    "crossbeam-queue 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1547
    [3.20673][3.6530:6605]()
    "num_cpus 1.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.20673]
    [3.40241]
    "num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1571
    [3.60319][3.40740:40816]()
    "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.60319]
    [3.60395]
    "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1579
    [3.60529][3.20867:20940]()
    "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.60529]
    [3.60602]
    "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1584
    [3.60896][3.40817:40973]()
    "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
    "tokio-reactor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.60896]
    [3.61052]
    "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
    "tokio-reactor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1593
    [3.61186][3.21112:21185]()
    "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.61186]
    [3.61259]
    "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1596
    [3.61406][3.40993:41065]()
    "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.61406]
    [3.21258]
    "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1601
    [3.21407][3.41066:41222]()
    "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
    "tokio-reactor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.21407]
    [3.61927]
    "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
    "tokio-reactor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1610
    [3.62062][3.21489:21562]()
    "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.62062]
    [3.62135]
    "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1615
    [3.62581][3.41242:41319]()
    "quick-xml 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.62581]
    [3.41319]
    "quick-xml 0.13.3 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1617
    [3.41390][3.41390:41463]()
    "tokio 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.41390]
    [3.62802]
    "tokio 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1619
    [3.62880][3.41464:41540]()
    "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.62880]
    [3.41540]
    "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1632
    [3.63560][3.6606:6679]()
    "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.63560]
    [3.63633]
    "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1644
    [3.64074][3.21734:21812]()
    "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.64074]
    [3.21812]
    "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1647
    [3.42181][3.6680:6755]()
    "smallvec 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.42181]
    [3.64368]
    "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1650
    [3.42338][3.42338:42494]()
    "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
    "tokio-reactor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.42338]
    [3.42494]
    "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
    "tokio-reactor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1663
    [3.65122][3.65122:65195](),[3.65122][3.65122:65195](),[3.65122][3.65122:65195](),[3.65122][3.65122:65195](),[3.65122][3.65122:65195](),[3.65122][3.65122:65195](),[3.65122][3.65122:65195](),[3.65122][3.65122:65195]()
    "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.65122]
    [3.42670]
    "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1667
    [3.22340][3.22340:22418]()
    "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.22340]
    [3.22418]
    "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1671
    [3.42823][3.6756:6831](),[3.2385][3.42898:42971](),[3.6831][3.42898:42971](),[3.42898][3.42898:42971]()
    "smallvec 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)",
    "tokio 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.42823]
    [3.42971]
    "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)",
    "tokio 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1686
    [3.43090][3.43090:43163]()
    "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.43090]
    [3.43163]
    "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1712
    [3.43202][3.6832:6907]()
    "smallvec 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.43202]
    [3.43277]
    "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)",
  • edit in Cargo.lock at line 1728
    [3.67040][3.67040:67118](),[3.67040][3.67040:67118](),[3.67118][3.6908:6947]()
    source = "registry+https://github.com/rust-lang/crates.io-index"
    [[package]]
    name = "unreachable"
    version = "1.0.0"
  • edit in Cargo.lock at line 1729
    [3.7012][3.7012:7102]()
    dependencies = [
    "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
    ]
  • edit in Cargo.lock at line 1758
    [3.68055][3.7116:7226]()
    source = "registry+https://github.com/rust-lang/crates.io-index"
    [[package]]
    name = "void"
    version = "1.0.2"
  • replacement in Cargo.lock at line 1876
    [3.44379][3.7227:7382]()
    "checksum aho-corasick 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)" = "1e9a933f4e58658d7b12defcf96dc5c720f20832deebe3e0a19efd3b6aaeeb9e"
    [3.44379]
    [3.72272]
    "checksum aho-corasick 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)" = "81ce3d38065e618af2d7b77e10c5ad9a069859b4be3c2250f674af3840d9c8a5"
  • replacement in Cargo.lock at line 1882
    [3.44834][3.44834:44987]()
    "checksum backtrace 0.3.13 (registry+https://github.com/rust-lang/crates.io-index)" = "b5b493b66e03090ebc4343eb02f94ff944e0cbc9ac6571491d170ba026741eb5"
    [3.44834]
    [3.44987]
    "checksum backtrace 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)" = "cd5a90e2b463010cd0e0ce9a11d4a9d5d58d9f41d4a6ba3dcaf9e68b466e88b4"
  • replacement in Cargo.lock at line 1887
    [3.45444][3.7383:7538]()
    "checksum block-buffer 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "509de513cca6d92b6aacf9c61acfe7eaa160837323a81068d690cc1f8e5740da"
    [3.45444]
    [3.45599]
    "checksum block-buffer 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "49665c62e0e700857531fa5d3763e91b539ff1abeebd56808d378b495870d60d"
  • replacement in Cargo.lock at line 1891
    [3.46060][3.24008:24157](),[3.37666][3.24008:24157](),[3.26845][3.24008:24157](),[3.26716][3.24008:24157]()
    "checksum bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)" = "40ade3d27603c2cb345eb0912aec461a6dec7e06a4ae48589904e808335c7afa"
    [3.46060]
    [3.74545]
    "checksum bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)" = "206fdffcfa2df7cbe15601ef46c813fce0965eb3286db6b56c583b814b51c81c"
  • replacement in Cargo.lock at line 1893
    [3.74692][3.46061:46207](),[3.37898][3.74838:74987](),[3.46207][3.74838:74987](),[3.27012][3.74838:74987](),[3.9692][3.74838:74987](),[3.18851][3.74838:74987](),[3.37813][3.74838:74987](),[3.17032][3.74838:74987](),[3.55572][3.74838:74987](),[3.30256][3.74838:74987](),[3.12965][3.74838:74987](),[3.10334][3.74838:74987](),[3.21795][3.74838:74987](),[3.26992][3.74838:74987](),[3.13375][3.74838:74987](),[3.13711][3.74838:74987](),[3.74838][3.74838:74987]()
    "checksum cc 1.0.29 (registry+https://github.com/rust-lang/crates.io-index)" = "4390a3b5f4f6bce9c1d0c00128379df433e53777fdd30e92f16a529332baec4e"
    "checksum cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "082bb9b28e00d3c9d39cc03e64ce4cea0f1bb9b3fde493f0cbc008472d22bdf4"
    [3.74692]
    [3.74987]
    "checksum cc 1.0.30 (registry+https://github.com/rust-lang/crates.io-index)" = "d01c69d08ff207f231f07196e30f84c70f1c815b04f980f8b7b01ff01f05eb92"
    "checksum cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "11d43355396e872eefb45ce6342e4374ed7bc2b3a502d1b28e36d6e23c05d1f4"
  • replacement in Cargo.lock at line 1900
    [3.75914][3.46208:46678]()
    "checksum crossbeam 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ad4c7ea749d9fb09e23c5cb17e3b70650860553a0e2744e38446b1803bf7db94"
    "checksum crossbeam-channel 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)" = "0f0ed1a4de2235cabda8558ff5840bffb97fcb64c97827f354a451307df5f72b"
    "checksum crossbeam-deque 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)" = "05e44b8cf3e1a625844d1750e1f7820da46044ff6d28f4d43e455ba3e5bb2c13"
    [3.75914]
    [3.46678]
    "checksum crossbeam-deque 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b18cd2e169ad86297e6bc0ad9aa679aee9daa4f19e8163860faf7c164e4f5a71"
  • edit in Cargo.lock at line 1902
    [3.46836]
    [3.46836]
    "checksum crossbeam-queue 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7c979cd6cfe72335896575c6b5688da489e420d36a27a0b9eb0c73db574b4a4b"
  • replacement in Cargo.lock at line 1907
    [3.47297][3.7539:7694](),[3.2930][3.24788:24941](),[3.47452][3.24788:24941](),[3.38906][3.24788:24941](),[3.28239][3.24788:24941](),[3.7694][3.24788:24941](),[3.24788][3.24788:24941]()
    "checksum encoding_rs 0.8.15 (registry+https://github.com/rust-lang/crates.io-index)" = "fd251508d65030820f3a4317af2248180db337fdb25d89967956242580277813"
    "checksum env_logger 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "afb070faf94c85d17d50ca44f6ad076bce18ae92f0037d350947240a36e9d42e"
    [3.47297]
    [3.77462]
    "checksum encoding_rs 0.8.17 (registry+https://github.com/rust-lang/crates.io-index)" = "4155785c79f2f6701f185eb2e6b4caf0555ec03477cb4c70db67b465311620ed"
    "checksum env_logger 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b61fa891024a945da30a9581546e8cfaf5602c7b3f4c137a2805cf388f92075a"
  • replacement in Cargo.lock at line 1926
    [3.79767][3.48369:48517]()
    "checksum http 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)" = "1a10e5b573b9a0146545010f50772b9e8b1dd0a256564cc4307694c68832a2f5"
    [3.79767]
    [3.79915]
    "checksum http 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)" = "fe67e3678f2827030e89cc4b9e7ecd16d52f132c0b940ab5005f88e821500f6a"
  • replacement in Cargo.lock at line 1929
    [3.25390][3.7695:7845]()
    "checksum hyper 0.12.23 (registry+https://github.com/rust-lang/crates.io-index)" = "860faf61a9957c9cb0e23e69f1c8290e92f6eb660fcdd1f2d6777043a2ae1a46"
    [3.25390]
    [3.80368]
    "checksum hyper 0.12.25 (registry+https://github.com/rust-lang/crates.io-index)" = "7d5b6658b016965ae301fa995306db965c93677880ea70765a84235a96eae896"
  • replacement in Cargo.lock at line 1938
    [3.81562][3.25693:25847]()
    "checksum lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a374c89b9db55895453a74c1e38861d9deec0b01b405a82516e9d5de4820dea1"
    [3.81562]
    [3.25847]
    "checksum lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bc5729f27f159ddd61f4df6228e827e86643d4d3e7c32183cb30a1c08f604a14"
  • replacement in Cargo.lock at line 1940
    [3.25998][3.48816:48964]()
    "checksum libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)" = "e962c7641008ac010fa60a7dfdc1712449f29c44ef2d4702394aea943ee75047"
    [3.25998]
    [3.82015]
    "checksum libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)" = "aab692d7759f5cd8c859e169db98ae5b52c924add2af5fbbca11d12fefb567c1"
  • replacement in Cargo.lock at line 1948
    [3.83072][3.7846:7995]()
    "checksum memchr 2.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "e1dd4eaac298c32ce07eb6ed9242eda7d82955b9170b7d6db59b2e02cc63fcb8"
    [3.83072]
    [3.83221]
    "checksum memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2efc7bc57c883d4a4d6e3246905283d8dae951bb3bd32f49d6ef297f546e1c39"
  • replacement in Cargo.lock at line 1956
    [3.84268][3.7996:8160]()
    "checksum new_debug_unreachable 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0cdc457076c78ab54d5e0d6fa7c47981757f1e34dc39ff92787f217dede586c4"
    [3.84268]
    [3.26595]
    "checksum new_debug_unreachable 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "f40f005c60db6e03bae699e414c58bf9aa7ea02a2d0b9bfbcf19286cc4c82b30"
  • replacement in Cargo.lock at line 1960
    [3.84890][3.8161:8312]()
    "checksum num_cpus 1.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5a69d464bdc213aaaff628444e99578ede64e9c854025aa43b9796530afa9238"
    [3.84890]
    [3.49573]
    "checksum num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1a23f0ed30a54abaa0c7e83b1d2d87ada7c3c23078d1d87815af3e3b6385fbba"
  • replacement in Cargo.lock at line 1962
    [3.49728][3.49728:49880](),[3.49728][3.49728:49880](),[3.49728][3.49728:49880]()
    "checksum openssl 0.10.16 (registry+https://github.com/rust-lang/crates.io-index)" = "ec7bd7ca4cce6dbdc77e7c1230682740d307d1218a87fb0349a571272be749f9"
    [3.49728]
    [3.85193]
    "checksum openssl 0.10.19 (registry+https://github.com/rust-lang/crates.io-index)" = "84321fb9004c3bce5611188a644d6171f895fa2889d155927d528782edb21c5d"
  • replacement in Cargo.lock at line 1964
    [3.85349][3.49881:50036]()
    "checksum openssl-sys 0.9.40 (registry+https://github.com/rust-lang/crates.io-index)" = "1bb974e77de925ef426b6bc82fce15fd45bdcbeb5728bffcfc7cdeeb7ce1c2d6"
    [3.85349]
    [3.26746]
    "checksum openssl-sys 0.9.42 (registry+https://github.com/rust-lang/crates.io-index)" = "cb534d752bf98cf363b473950659ac2546517f9c6be9723771614ab3f03bbc9e"
  • replacement in Cargo.lock at line 1978
    [3.87364][3.51270:51423]()
    "checksum quick-xml 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)" = "98d8d2d671bd29c6122a98b45ce3106391e89ba378f731274de677f1eff06e5f"
    [3.87364]
    [3.87517]
    "checksum quick-xml 0.13.3 (registry+https://github.com/rust-lang/crates.io-index)" = "22fcc48ecef4609b243e8c01ff4695d08ee0fc9d5bdbc54630e1a5fe8bb40953"
  • replacement in Cargo.lock at line 1989
    [3.52480][3.52480:52630](),[3.52630][3.27811:27962](),[3.43174][3.27811:27962](),[3.27811][3.27811:27962]()
    "checksum rand_os 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "b7c690732391ae0abafced5015ffb53656abfaec61b342290e5eb56b286a679d"
    "checksum rand_pcg 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "086bd09a33c7044e56bb44d5bdde5a60e7f119a9e95b0775f545de759a32fe05"
    [3.52480]
    [3.52631]
    "checksum rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071"
    "checksum rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44"
  • replacement in Cargo.lock at line 1995
    [3.89637][3.53094:53242]()
    "checksum regex 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "37e7cbbd370869ce2e8dff25c7018702d10b21a20ef7135316f8daecd6c25b7f"
    [3.89637]
    [3.53242]
    "checksum regex 1.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "53ee8cfdddb2e0291adfb9f13d31d3bbe0a03c9a402c01b1e24188d86c35b24f"
  • replacement in Cargo.lock at line 2003
    [3.44487][3.91007:91159](),[3.53858][3.91007:91159](),[3.34189][3.91007:91159](),[3.44402][3.91007:91159](),[3.62161][3.91007:91159](),[3.36698][3.91007:91159](),[3.33434][3.91007:91159](),[3.91007][3.91007:91159]()
    "checksum schannel 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)" = "0e1a231dc10abf6749cfa5d7767f25888d484201accbd919b66ab5413c502d56"
    [3.53858]
    [3.91159]
    "checksum schannel 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)" = "f2f6abf258d99c3c1c5c2131d99d064e94b7b3dd5f416483057f308fea253339"
  • replacement in Cargo.lock at line 2009
    [3.91943][3.8313:8618](),[3.3855][3.54491:54645](),[3.8618][3.54491:54645](),[3.54491][3.54491:54645]()
    "checksum serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)" = "2e20fde37801e83c891a2dc4ebd3b81f0da4d1fb67a9e0a2a3b921e2536a58ee"
    "checksum serde_derive 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)" = "633e97856567e518b59ffb2ad7c7a4fd4c5d91d9c7f32dd38a27b2bf7e8114ea"
    "checksum serde_json 1.0.38 (registry+https://github.com/rust-lang/crates.io-index)" = "27dce848e7467aa0e2fcaf0a413641499c0b745452aaca1194d24dedde9e13c9"
    [3.91943]
    [3.54645]
    "checksum serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)" = "92514fb95f900c9b5126e32d020f5c6d40564c27a5ea6d1d7d9f157a96623560"
    "checksum serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)" = "bb6eabf4b5914e88e24eea240bb7c9f9a2cbc1bbbe8d961d381975ec3c6b806c"
    "checksum serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)" = "5a23aa71d4a4d43fdbfaac00eff68ba8a06a51759a89ac3304323e800c4dd40d"
  • replacement in Cargo.lock at line 2015
    [3.55087][3.55087:55241](),[3.55087][3.55087:55241](),[3.55087][3.55087:55241]()
    "checksum signal-hook 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "1f272d1b7586bec132ed427f532dd418d8beca1ca7f2caf7df35569b1415a4b4"
    [3.55087]
    [3.92998]
    "checksum signal-hook 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "97a47ae722318beceb0294e6f3d601205a1e6abaa4437d9d33e3a212233e3021"
  • replacement in Cargo.lock at line 2018
    [3.55389][3.8619:8770]()
    "checksum smallvec 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)" = "88aea073965ab29f6edb5493faf96ad662fb18aa9eeb186a3b7057951605ed15"
    [3.55389]
    [3.93448]
    "checksum smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)" = "c4488ae950c49d403731982257768f48fada354a5203fe81f9bb6f43ca9002be"
  • replacement in Cargo.lock at line 2028
    [3.94685][3.55841:55989]()
    "checksum syn 0.15.26 (registry+https://github.com/rust-lang/crates.io-index)" = "f92e629aa1d9c827b2bb8297046c1ccffc57c99b947a680d3ccff1f136a3bee9"
    [3.94685]
    [3.94833]
    "checksum syn 0.15.28 (registry+https://github.com/rust-lang/crates.io-index)" = "218aa5a01ab9805df6e9e48074c8d88f317cc9660b1ad6c3dabac2d627d185d6"
  • replacement in Cargo.lock at line 2031
    [3.29644][3.8771:8922]()
    "checksum tempfile 3.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "37daa55a7240c4931c84559f03b3cad7d19535840d1c4a0cc4e9b2fb0dcf70ff"
    [3.29644]
    [3.56141]
    "checksum tempfile 3.0.7 (registry+https://github.com/rust-lang/crates.io-index)" = "b86c784c88d98c801132806dadd3819ed29d8600836c4088e855cdf3e178ed8a"
  • replacement in Cargo.lock at line 2038
    [3.56440][3.56440:56589]()
    "checksum tokio 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)" = "e0500b88064f08bebddd0c0bed39e19f5c567a5f30975bee52b0c0d3e2eeb38c"
    [3.56440]
    [3.30254]
    "checksum tokio 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)" = "fcaabb3cec70485d0df6e9454fe514393ad1c4070dee8915f11041e95630b230"
  • replacement in Cargo.lock at line 2041
    [3.96655][3.30411:30574]()
    "checksum tokio-current-thread 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "331c8acc267855ec06eb0c94618dcbbfea45bed2d20b77252940095273fb58f6"
    [3.96655]
    [3.56590]
    "checksum tokio-current-thread 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "c756b04680eea21902a46fca4e9f410a2332c04995af590e07ff262e2193a9a3"
  • replacement in Cargo.lock at line 2043
    [3.56747][3.56747:57206]()
    "checksum tokio-fs 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "0e9cbbc8a3698b7ab652340f46633364f9eaa928ddaaee79d8b8f356dd79a09d"
    "checksum tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)" = "b53aeb9d3f5ccf2ebb29e19788f96987fa1355f8fe45ea193928eaaaf3ae820f"
    "checksum tokio-reactor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "afbcdb0f0d2a1e4c440af82d7bbf0bf91a8a8c0575bcd20c05d15be7e9d3a02f"
    [3.56747]
    [3.30731]
    "checksum tokio-fs 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "3fe6dc22b08d6993916647d108a1a7d15b9cd29c4f4496c62b92c45b5041b7af"
    "checksum tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)" = "5090db468dad16e1a7a54c8c67280c5e4b544f3d3e018f0b913b400261f85926"
    "checksum tokio-reactor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "6af16bfac7e112bea8b0442542161bfc41cbfa4466b580bdda7d18cb88b911ce"
  • replacement in Cargo.lock at line 2047
    [3.30886][3.57207:57360]()
    "checksum tokio-sync 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3742b64166c1ee9121f1921aea5a726098458926a6b732d906ef23b1f3ef6f4f"
    [3.30886]
    [3.57360]
    "checksum tokio-sync 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "1bf2b9dac2a0509b5cfd1df5aa25eafacb616a42a491a13604d6bbeab4486363"
  • replacement in Cargo.lock at line 2049
    [3.57512][3.57512:57672]()
    "checksum tokio-threadpool 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)" = "c3fd86cb15547d02daa2b21aadaf4e37dee3368df38a526178a5afa3c034d2fb"
    [3.57512]
    [3.57672]
    "checksum tokio-threadpool 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)" = "742e511f6ce2298aeb86fc9ea0d8df81c2388c6ebae3dc8a7316e8c9df0df801"
  • edit in Cargo.lock at line 2067
    [3.100517][3.8923:9077]()
    "checksum unreachable 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "382810877fe448991dfc7f0dd6e3ae5d58088fd0ea5e35189655f84e6814fa56"
  • edit in Cargo.lock at line 2072
    [3.101417][3.9078:9225]()
    "checksum void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d"