update deps

[?]
Dec 16, 2018, 10:04 AM
QWE26TMV6A5VUQLWG5ZMKHMH4NFZIQMVVXQJMPP42JUMM66C3VOQC

Dependencies

  • [2] TDOR5XQU Accept destination
  • [3] FV6BJ5K6 Send self-presence and store account info in Rc so it willbe used in some future in parallel
  • [4] FVVPKFTL Initial commit
  • [5] L77O4T7M Formatting and fixes
  • [6] UIQTC2NT Update dependencies
  • [7] VS6AHRWI Move XMPP to separate dir
  • [8] 3Q6IGHI2 Update deps
  • [9] HKSQO7JZ Enable hyper http server and configuration
  • [10] BTOZT4JP Use failure
  • [11] 3GEU7TC7 Welcome to 2018!
  • [12] 36WQ7YHD Update dependencies
  • [13] 5A5UVGNM Move receiver closing logic out of xmpp processing

Change contents

  • replacement in src/xmpp/stanzas.rs at line 0
    [3.13][2.0:21]()
    use config::Account;
    [3.13]
    [3.35]
    use crate::config::Account;
  • replacement in src/xmpp/mod.rs at line 6
    [3.198][2.22:34]()
    use config;
    [3.198]
    [3.420]
    use crate::config;
  • replacement in src/xmpp/mod.rs at line 104
    [3.1072][2.35:64]()
    }).join(
    [3.1072]
    [3.1101]
    })
    .join(
  • replacement in src/xmpp/mod.rs at line 112
    [3.1484][2.65:141]()
    }).and_then(|(event, stream)| match event {
    [3.1484]
    [3.1560]
    })
    .and_then(|(event, stream)| match event {
  • replacement in src/xmpp/mod.rs at line 135
    [3.2947][2.142:264]()
    }).map_err(|e| format!("waiting self-presence: {}", e)),
    ).then(|r| match r {
    [3.2947]
    [3.3069]
    })
    .map_err(|e| format!("waiting self-presence: {}", e)),
    )
    .then(|r| match r {
  • replacement in src/xmpp/mod.rs at line 157
    [3.60][2.265:317]()
    pub struct XmppCommand {
    pub xmpp_to: String,
    }
    [3.60]
    [3.3816]
    pub struct XmppCommand;
  • replacement in src/xmpp/mod.rs at line 179
    [3.4243][2.318:380]()
    ) -> impl future::Future<Item = (), Error = tokio::io::Error>
    [3.4243]
    [3.4305]
    ) -> impl future::Future<Item = (), Error = failure::Error>
  • replacement in src/xmpp/mod.rs at line 182
    [3.4355][2.381:433]()
    S: stream::Stream<Item = XmppCommand> + 'static
    [3.4355]
    [3.4355]
    S: stream::Stream<Item = XmppCommand> + 'static,
  • replacement in src/xmpp/mod.rs at line 184
    [3.4357][2.434:557]()
    let signal = signal
    .map_err(|_| tokio::io::Error::new(tokio::io::ErrorKind::Other, "Wrong shutdown signal"));
    [3.4357]
    [3.4480]
    let signal = signal.map_err(|_| format_err!("Wrong shutdown signal"));
  • replacement in src/xmpp/mod.rs at line 201
    [3.4955][2.558:723]()
    tokio::io::Error::new(tokio::io::ErrorKind::Other, "Receive cmd error")
    }).map(|f| (f, conn))
    })).then(|r| {
    [3.4955]
    [3.5120]
    format_err!("Receive cmd error")
    })
    .map(|f| (f, conn))
    }))
    .then(|r| {
  • replacement in src/xmpp/mod.rs at line 231
    [3.6342][2.724:954]()
    Box::new(future::err(tokio::io::Error::new(
    tokio::io::ErrorKind::Other,
    "Cmd error",
    ))) as Box<Future<Item = _, Error = _>>
    [3.6342]
    [3.6572]
    Box::new(future::err(format_err!("Cmd error")))
    as Box<Future<Item = _, Error = _>>
  • replacement in src/xmpp/mod.rs at line 236
    [3.6627][2.955:1649]()
    }).and_then(
    |(opt_cmd_recv, _conn): (Option<S>, XmppConnection)| {
    if let Some(cmd_recv) = opt_cmd_recv {
    // process left commands
    info!("Stop accepting commands");
    Box::new(cmd_recv.for_each(|_cmd| future::ok(())).map_err(|_| {
    tokio::io::Error::new(tokio::io::ErrorKind::Other, "cmd receiver last error")
    })) as Box<Future<Item = (), Error = tokio::io::Error>>
    } else {
    Box::new(future::err(tokio::io::Error::new(
    tokio::io::ErrorKind::Other,
    "cmd receiver gone",
    )))
    }
    },
    )
    [3.6627]
    [3.7379]
    })
    .and_then(|(opt_cmd_recv, _conn): (Option<S>, XmppConnection)| {
    if let Some(cmd_recv) = opt_cmd_recv {
    // process left commands
    info!("Stop accepting commands");
    Box::new(
    cmd_recv
    .for_each(|_cmd| future::ok(()))
    .map_err(|_| format_err!("cmd receiver last error")),
    ) as Box<Future<Item = (), Error = failure::Error>>
    } else {
    Box::new(future::err(format_err!("cmd receiver gone")))
    }
    })
  • replacement in src/stoppable_receiver.rs at line 37
    [3.1292][2.1650:1680]()
    self.receiver.poll();
    [3.1292]
    [3.1322]
    self.receiver.poll()
  • edit in src/main.rs at line 17
    [3.3878]
    [3.3878]
    #[macro_use]
    extern crate failure;
  • replacement in src/main.rs at line 31
    [3.4109][2.1681:1701]()
    use config::Config;
    [3.4109]
    [3.4129]
    use crate::config::Config;
  • replacement in src/main.rs at line 34
    [3.4140][2.1702:1741]()
    use xmpp::{xmpp_process, XmppCommand};
    [3.4140]
    [3.1558]
    use crate::xmpp::{xmpp_process, XmppCommand};
  • replacement in src/main.rs at line 37
    [3.1583][2.1742:1781]()
    use stoppable_receiver::stop_receiver;
    [3.1583]
    [3.4179]
    use crate::stoppable_receiver::stop_receiver;
  • replacement in src/main.rs at line 52
    [3.4557][2.1782:1807]()
    ).get_matches();
    [3.4557]
    [3.4582]
    )
    .get_matches();
  • replacement in src/main.rs at line 55
    [3.4583][2.1808:1896]()
    let config = Config::new(args.value_of("config").expect("Mandatory option config"))
    [3.4583]
    [3.4671]
    let config = Config::read(args.value_of("config").expect("Mandatory option config"))
  • replacement in src/main.rs at line 71
    [3.5134][2.1897:2669]()
    service_fn(move |req: Request<Body>| {
    let xmpp_to_opt = req.headers().get("X-XMPP-To");
    let xmpp_to_res: Result<String, std::borrow::Cow<str>> = xmpp_to_opt.map_or_else(
    || Err("none".into()),
    |xmpp_to| {
    xmpp_to.to_str().map(|x| x.to_owned()).map_err(|e| {
    format!("\"{}\" {}", String::from_utf8_lossy(xmpp_to.as_bytes()), e)
    .into()
    })
    },
    );
    match xmpp_to_res {
    Err(err) => {
    warn!("Unknown destination: {}", err);
    Box::new(tokio::prelude::future::result(
    [3.5134]
    [3.5542]
    service_fn(move |_req: Request<Body>| {
    info!("Got request");
    cmd_send.clone().send(XmppCommand {}).then(|r| match r {
    Ok(_) => tokio::prelude::future::ok(Response::new(Body::from("Accepted"))),
    Err(e) => {
    error!("Command sent error: {}", e);
    tokio::prelude::future::result(
  • replacement in src/main.rs at line 80
    [3.5662][2.2670:2832]()
    .body(Body::from(format!("Unknown destination: {}", err))),
    )) as Box<Future<Item = _, Error = _> + Send>
    [3.5662]
    [2.2832]
    .body(Body::from(format!("Command sent error: {}", e))),
    )
  • replacement in src/main.rs at line 83
    [2.2854][2.2854:4148](),[2.4148][3.5777:5799](),[3.5777][3.5777:5799](),[3.5799][2.4149:4167]()
    Ok(xmpp_to) => {
    info!("Got request");
    Box::new(
    cmd_send
    .clone()
    .send(XmppCommand { xmpp_to })
    .then(|r| match r {
    Ok(_) => tokio::prelude::future::ok(Response::new(Body::from(
    "Accepted",
    ))),
    Err(e) => {
    error!("Command sent error: {}", e);
    tokio::prelude::future::result(
    Response::builder()
    .status(hyper::StatusCode::BAD_REQUEST)
    .body(Body::from(format!(
    "Command sent error: {}",
    e
    ))),
    )
    }
    }),
    ) as Box<Future<Item = _, Error = _> + Send>
    }
    }
    [2.2854]
    [3.5818]
    })
  • replacement in src/main.rs at line 85
    [3.5833][2.4168:4230]()
    }).with_graceful_shutdown(ctrl_c.clone().map(|_| ()))
    [3.5833]
    [3.5895]
    })
    .with_graceful_shutdown(ctrl_c.clone().map(|_| ()))
  • replacement in src/main.rs at line 93
    [3.6040][2.4231:4312]()
    let xmpp_join = std::thread::spawn(move || -> Result<(), tokio::io::Error> {
    [3.6040]
    [3.1623]
    let xmpp_join = std::thread::spawn(move || -> Result<(), failure::Error> {
  • replacement in src/config.rs at line 17
    [3.1681][2.4313:4377]()
    pub fn new<P: AsRef<Path>>(path: P) -> io::Result<Config> {
    [3.1681]
    [3.1745]
    pub fn read<P: AsRef<Path>>(path: P) -> io::Result<Self> {
  • edit in Cargo.toml at line 6
    [3.12171]
    [3.12171]
    edition = "2018"
  • edit in Cargo.toml at line 13
    [3.6667]
    [3.6667]
    failure = "0.1"
  • replacement in Cargo.toml at line 20
    [3.6756][2.4378:4416]()
    env_logger = "0.5"
    minidom = "=0.9.1"
    [3.6756]
    [3.6794]
    env_logger = "0.6"
    minidom = "=0.9.1" # dependency of tokio-xmpp
  • replacement in Cargo.lock at line 2
    [3.6852][2.4417:4435]()
    version = "0.6.8"
    [3.6852]
    [3.6870]
    version = "0.6.9"
  • replacement in Cargo.lock at line 5
    [3.6952][2.4436:4509]()
    "memchr 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.6952]
    [3.7025]
    "memchr 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 18
    [3.7266][2.4510:4528]()
    version = "0.3.4"
    [3.7266]
    [3.7284]
    version = "0.3.6"
  • replacement in Cargo.lock at line 28
    [3.7494][2.4529:4547]()
    version = "0.4.7"
    [3.7494]
    [3.7512]
    version = "0.4.8"
  • replacement in Cargo.lock at line 31
    [3.7594][2.4548:4622]()
    "nodrop 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.7594]
    [3.7668]
    "nodrop 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 39
    [3.7798][2.4623:4695]()
    "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.7798]
    [3.7870]
    "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)",
  • edit in Cargo.lock at line 43
    [3.8019]
    [3.8019]
    [[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.8151][3.8151:8232](),[3.8151][3.8151:8232](),[3.8151][3.8151:8232](),[3.8151][3.8151:8232](),[3.8151][3.8151:8232](),[3.8151][3.8151:8232]()
    "backtrace-sys 0.1.24 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.8151]
    [3.8232]
    "backtrace-sys 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 58
    [3.8462][2.4696:4768](),[3.2252][3.8534:8615](),[3.1190][3.8534:8615](),[2.4768][3.8534:8615](),[3.145][3.8534:8615](),[3.417][3.8534:8615](),[3.8534][3.8534:8615]()
    "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
    "rustc-demangle 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.8462]
    [3.8615]
    "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.8722][3.8722:8740](),[3.8722][3.8722:8740](),[3.8722][3.8722:8740](),[3.8722][3.8722:8740](),[3.8722][3.8722:8740](),[3.8722][3.8722:8740]()
    version = "0.3.9"
    [3.8722]
    [3.8740]
    version = "0.3.13"
  • replacement in Cargo.lock at line 68
    [3.8822][3.8822:8903](),[3.8822][3.8822:8903](),[3.8822][3.8822:8903](),[3.8822][3.8822:8903](),[3.8822][3.8822:8903](),[3.8822][3.8822:8903]()
    "backtrace-sys 0.1.24 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.8822]
    [3.8903]
    "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.8976][2.4769:4841](),[3.2325][3.9048:9129](),[3.1263][3.9048:9129](),[2.4841][3.9048:9129](),[3.218][3.9048:9129](),[3.490][3.9048:9129](),[3.9048][3.9048:9129]()
    "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
    "rustc-demangle 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.8976]
    [3.9129]
    "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.9240][3.9240:9259](),[3.9240][3.9240:9259](),[3.9240][3.9240:9259](),[3.9240][3.9240:9259](),[3.9240][3.9240:9259](),[3.9240][3.9240:9259]()
    version = "0.1.24"
    [3.9240]
    [3.9259]
    version = "0.1.26"
  • replacement in Cargo.lock at line 81
    [3.9341][3.9341:9411](),[3.9341][3.9341:9411](),[3.9341][3.9341:9411](),[3.9341][3.9341:9411](),[3.9341][3.9341:9411](),[3.9341][3.9341:9411](),[3.9411][2.4842:4914]()
    "cc 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)",
    "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.9341]
    [3.9483]
    "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 130
    [3.10786][2.4915:4934]()
    version = "0.4.10"
    [3.10786]
    [3.10805]
    version = "0.4.11"
  • replacement in Cargo.lock at line 144
    [3.11172][3.11172:11191](),[3.11172][3.11172:11191](),[3.11172][3.11172:11191](),[3.11172][3.11172:11191](),[3.11172][3.11172:11191]()
    version = "1.0.25"
    [3.11172]
    [3.11191]
    version = "1.0.26"
  • replacement in Cargo.lock at line 159
    [3.11653][3.11653:11725](),[3.11653][3.11653:11725](),[3.11653][3.11653:11725](),[3.11653][3.11653:11725](),[3.11653][3.11653:11725]()
    "time 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.11653]
    [3.11725]
    "time 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 195
    [3.12938][2.4935:5007]()
    "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.12938]
    [3.13010]
    "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 203
    [3.13154][2.5008:5080]()
    "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.13154]
    [3.13226]
    "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 208
    [3.13266][2.5081:5099]()
    version = "0.6.1"
    [3.13266]
    [3.13284]
    version = "0.6.2"
  • replacement in Cargo.lock at line 211
    [3.13366][2.5100:5264]()
    "crossbeam-epoch 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)",
    "crossbeam-utils 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.13366]
    [3.13530]
    "crossbeam-epoch 0.6.1 (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.13570][2.5265:5283]()
    version = "0.5.2"
    [3.13570]
    [3.13588]
    version = "0.6.1"
  • replacement in Cargo.lock at line 220
    [3.13670][2.5284:5359]()
    "arrayvec 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.13670]
    [3.13745]
    "arrayvec 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 222
    [3.13818][2.5360:5520]()
    "crossbeam-utils 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
    "lazy_static 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.13818]
    [3.13978]
    "crossbeam-utils 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)",
    "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 230
    [3.14171][2.5521:5539]()
    version = "0.5.0"
    [3.14171]
    [3.14189]
    version = "0.6.3"
  • edit in Cargo.lock at line 232
    [3.14254]
    [3.14254]
    dependencies = [
    "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
    ]
  • replacement in Cargo.lock at line 274
    [3.15438][2.5540:5559]()
    version = "0.8.10"
    [3.15438]
    [3.15457]
    version = "0.8.13"
  • replacement in Cargo.lock at line 282
    [3.15647][2.5560:5579]()
    version = "0.5.13"
    [3.15647]
    [3.15666]
    version = "0.6.0"
  • replacement in Cargo.lock at line 286
    [3.15820][2.5580:5798]()
    "humantime 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
    "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
    "regex 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.15820]
    [3.16038]
    "humantime 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
    "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
    "regex 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 305
    [3.16463][3.16463:16539](),[3.16463][3.16463:16539](),[3.16463][3.16463:16539](),[3.16463][3.16463:16539](),[3.16463][3.16463:16539](),[3.16463][3.16463:16539]()
    "backtrace 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.16463]
    [3.16539]
    "backtrace 0.3.13 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 313
    [3.16671][3.16671:16747](),[3.16671][3.16671:16747](),[3.16671][3.16671:16747](),[3.16671][3.16671:16747](),[3.16671][3.16671:16747](),[3.16671][3.16671:16747]()
    "backtrace 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.16671]
    [3.16747]
    "backtrace 0.3.13 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 322
    [3.16967][2.5799:6102]()
    "proc-macro2 0.4.20 (registry+https://github.com/rust-lang/crates.io-index)",
    "quote 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)",
    "syn 0.15.14 (registry+https://github.com/rust-lang/crates.io-index)",
    "synstructure 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.16967]
    [3.17270]
    "proc-macro2 0.4.24 (registry+https://github.com/rust-lang/crates.io-index)",
    "quote 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)",
    "syn 0.15.23 (registry+https://github.com/rust-lang/crates.io-index)",
    "synstructure 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 385
    [3.18884][3.18884:18959](),[3.18884][3.18884:18959](),[3.18884][3.18884:18959](),[3.18884][3.18884:18959](),[3.18884][3.18884:18959]()
    "num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.18884]
    [3.18959]
    "num_cpus 1.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 398
    [3.19199][2.6103:6122]()
    version = "0.1.13"
    [3.19199]
    [3.19218]
    version = "0.1.14"
  • replacement in Cargo.lock at line 402
    [3.19376][2.6123:6196]()
    "bytes 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.19376]
    [3.19449]
    "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 405
    [3.19594][2.6197:6269]()
    "http 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.19594]
    [3.19666]
    "http 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 407
    [3.19741][2.6270:6340]()
    "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.19741]
    [3.19811]
    "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 409
    [3.19882][2.6341:6414]()
    "string 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.19882]
    [3.19955]
    "string 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 418
    [3.20164][2.6415:6487]()
    "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.20164]
    [3.20236]
    "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 424
    [3.20339][2.6488:6507]()
    version = "0.1.13"
    [3.20339]
    [3.20358]
    version = "0.1.14"
  • replacement in Cargo.lock at line 427
    [3.20440][2.6508:6581]()
    "bytes 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.20440]
    [3.20513]
    "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 439
    [3.20802][2.6582:6600]()
    version = "1.1.1"
    [3.20802]
    [3.20820]
    version = "1.2.0"
  • replacement in Cargo.lock at line 447
    [3.21010][2.6601:6621]()
    version = "0.12.13"
    [3.21010]
    [3.21030]
    version = "0.12.18"
  • replacement in Cargo.lock at line 450
    [3.21112][2.6622:6695]()
    "bytes 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.21112]
    [3.21185]
    "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 453
    [3.21342][2.6696:6838]()
    "h2 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)",
    "http 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.21342]
    [3.21484]
    "h2 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)",
    "http 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 458
    [3.21702][2.6839:6909]()
    "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.21702]
    [3.21772]
    "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 460
    [3.21844][3.21844:21916](),[3.21844][3.21844:21916](),[3.21844][3.21844:21916](),[3.21844][3.21844:21916](),[3.21844][3.21844:21916](),[3.21916][2.6910:6983]()
    "time 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)",
    "tokio 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.21844]
    [3.21989]
    "time 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)",
    "tokio 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 464
    [3.22146][2.6984:7064]()
    "tokio-reactor 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.22146]
    [3.22226]
    "tokio-reactor 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 466
    [3.22302][2.7065:7226]()
    "tokio-threadpool 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
    "tokio-timer 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.22302]
    [3.22463]
    "tokio-threadpool 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
    "tokio-timer 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 491
    [3.23148][2.7227:7299]()
    "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.23148]
    [3.23220]
    "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 497
    [3.23326][2.7300:7318]()
    version = "0.1.7"
    [3.23326]
    [3.23344]
    version = "0.1.9"
  • replacement in Cargo.lock at line 538
    [3.24705][2.7319:7337]()
    version = "1.1.0"
    [3.24705]
    [3.24723]
    version = "1.2.0"
  • edit in Cargo.lock at line 540
    [3.24788][2.7338:7437]()
    dependencies = [
    "version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
    ]
  • replacement in Cargo.lock at line 543
    [3.24918][2.7438:7456]()
    version = "1.2.0"
    [3.24918]
    [3.24936]
    version = "1.2.1"
  • replacement in Cargo.lock at line 548
    [3.25028][2.7457:7476]()
    version = "0.2.43"
    [3.25028]
    [3.25047]
    version = "0.2.45"
  • replacement in Cargo.lock at line 558
    [3.25264][2.7477:7495]()
    version = "0.1.4"
    [3.25264]
    [3.25282]
    version = "0.1.5"
  • replacement in Cargo.lock at line 561
    [3.25364][2.7496:7573]()
    "owning_ref 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.25364]
    [3.25441]
    "owning_ref 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 567
    [2.7602][2.7602:7772](),[2.7772][3.5119:5147](),[3.5119][3.5119:5147](),[3.5147][2.7773:7791]()
    version = "0.3.9"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    dependencies = [
    "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
    ]
    [[package]]
    name = "log"
    version = "0.4.5"
    [2.7602]
    [3.25762]
    version = "0.4.6"
  • replacement in Cargo.lock at line 588
    [3.26278][3.26278:26296](),[3.26278][3.26278:26296](),[3.26278][3.26278:26296](),[3.26278][3.26278:26296](),[3.26278][3.26278:26296]()
    version = "0.7.3"
    [3.26278]
    [3.26296]
    version = "0.7.5"
  • replacement in Cargo.lock at line 593
    [3.26528][2.7792:8023]()
    "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)",
    "serde_json 1.0.32 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.26528]
    [3.26759]
    "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)",
    "serde_json 1.0.33 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 598
    [3.26925][2.8024:8098]()
    "tendril 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.26925]
    [3.26999]
    "tendril 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 608
    [3.27143][2.8099:8117]()
    version = "2.1.0"
    [3.27143]
    [3.27161]
    version = "2.1.2"
  • replacement in Cargo.lock at line 612
    [3.27316][2.8118:8190]()
    "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.27316]
    [3.27388]
    "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 640
    [3.28393][2.8191:8408]()
    "lazycell 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
    "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
    "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.28393]
    [3.28610]
    "lazycell 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
    "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)",
    "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 655
    [3.29101][2.8409:8481]()
    "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.29101]
    [3.29173]
    "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 675
    [3.29809][2.8482:8702]()
    "lazy_static 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
    "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
    "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.29809]
    [3.30029]
    "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
    "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)",
    "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 684
    [3.30514][2.8703:8778]()
    "tempfile 3.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.30514]
    [3.30589]
    "tempfile 3.0.5 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 693
    [3.30792][2.8779:8851]()
    "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.30792]
    [3.30864]
    "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 707
    [3.31192][2.8852:8871]()
    version = "0.1.12"
    [3.31192]
    [3.31211]
    version = "0.1.13"
  • replacement in Cargo.lock at line 725
    [3.31626][3.31626:31644]()
    version = "1.8.0"
    [3.31626]
    [3.31644]
    version = "1.9.0"
  • replacement in Cargo.lock at line 728
    [3.31726][2.8872:8944]()
    "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.31726]
    [3.31798]
    "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 739
    [3.32160][2.8945:9095]()
    "lazy_static 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
    "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.32160]
    [3.32310]
    "lazy_static 1.2.0 (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 754
    [3.32645][3.32645:32715](),[3.32645][3.32645:32715](),[3.32645][3.32645:32715](),[3.32645][3.32645:32715](),[3.32645][3.32645:32715](),[3.32645][3.32645:32715](),[3.32715][2.9096:9168]()
    "cc 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)",
    "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.32645]
    [3.32787]
    "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 762
    [3.32972][2.9169:9187]()
    version = "0.3.3"
    [3.32972]
    [3.32990]
    version = "0.4.0"
  • replacement in Cargo.lock at line 773
    [3.33293][2.9188:9263]()
    "lock_api 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.33293]
    [3.33368]
    "lock_api 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 782
    [3.33592][2.9264:9336]()
    "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.33592]
    [3.33664]
    "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 785
    [3.33815][2.9337:9412]()
    "smallvec 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.33815]
    [3.33890]
    "smallvec 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 840
    [3.35363][2.9413:9432]()
    version = "0.4.20"
    [3.35363]
    [3.35382]
    version = "0.4.24"
  • replacement in Cargo.lock at line 856
    [3.35794][2.9433:9512]()
    "encoding_rs 0.8.10 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.35794]
    [3.35873]
    "encoding_rs 0.8.13 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 858
    [3.35947][2.9513:9656]()
    "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
    "memchr 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.35947]
    [3.36090]
    "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
    "memchr 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 869
    [3.36232][2.9657:9675]()
    version = "0.6.8"
    [3.36232]
    [3.36250]
    version = "0.6.10"
  • replacement in Cargo.lock at line 872
    [3.36332][2.9676:9755]()
    "proc-macro2 0.4.20 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.36332]
    [3.36411]
    "proc-macro2 0.4.24 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 881
    [3.36621][2.9756:9828]()
    "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.36621]
    [3.36693]
    "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 892
    [3.37051][2.9829:9901]()
    "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.37051]
    [3.37123]
    "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)",
  • edit in Cargo.lock at line 895
    [3.5780]
    [3.5780]
    ]
    [[package]]
    name = "rand"
    version = "0.6.1"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    dependencies = [
    "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
    "fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
    "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)",
    "rand_chacha 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
    "rand_core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
    "rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
    "rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
    "rand_pcg 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
    "rand_xorshift 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
    "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
    "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
    ]
    [[package]]
    name = "rand_chacha"
    version = "0.1.0"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    dependencies = [
    "rand_core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
    "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
  • edit in Cargo.lock at line 935
    [3.37534]
    [3.7006]
    source = "registry+https://github.com/rust-lang/crates.io-index"
    [[package]]
    name = "rand_hc"
    version = "0.1.0"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    dependencies = [
    "rand_core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
    ]
    [[package]]
    name = "rand_isaac"
    version = "0.1.1"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    dependencies = [
    "rand_core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
    ]
    [[package]]
    name = "rand_pcg"
    version = "0.1.1"
  • edit in Cargo.lock at line 957
    [3.7071]
    [3.7166]
    dependencies = [
    "rand_core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
    "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
    ]
  • edit in Cargo.lock at line 963
    [3.7179]
    [3.37612]
    name = "rand_xorshift"
    version = "0.1.0"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    dependencies = [
    "rand_core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
    ]
    [[package]]
  • replacement in Cargo.lock at line 972
    [3.37635][2.9902:9921]()
    version = "0.1.40"
    [3.37635]
    [3.37654]
    version = "0.1.44"
  • replacement in Cargo.lock at line 980
    [3.37855][2.9922:10003]()
    "redox_syscall 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.37855]
    [3.37936]
    "redox_syscall 0.1.44 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 985
    [3.37966][2.10004:10022]()
    version = "1.0.5"
    [3.37966]
    [3.37984]
    version = "1.1.0"
  • replacement in Cargo.lock at line 988
    [3.38066][2.10023:10254]()
    "aho-corasick 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)",
    "memchr 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
    "regex-syntax 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.38066]
    [3.38297]
    "aho-corasick 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)",
    "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 992
    [3.38376][2.10255:10333]()
    "utf8-ranges 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.38376]
    [3.38454]
    "utf8-ranges 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 997
    [3.38491][2.10334:10352]()
    version = "0.6.2"
    [3.38491]
    [3.38509]
    version = "0.6.4"
  • replacement in Cargo.lock at line 1000
    [3.38591][2.10353:10428]()
    "ucd-util 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.38591]
    [3.38666]
    "ucd-util 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1022
    [3.39206][3.39206:39224](),[3.39206][3.39206:39224](),[3.39206][3.39206:39224](),[3.39206][3.39206:39224](),[3.39206][3.39206:39224]()
    version = "0.1.9"
    [3.39206]
    [3.39224]
    version = "0.1.11"
  • replacement in Cargo.lock at line 1035
    [3.39526][2.10429:10447]()
    version = "0.2.6"
    [3.39526]
    [3.39544]
    version = "0.2.7"
  • replacement in Cargo.lock at line 1057
    [3.40132][2.10448:10526]()
    "lazy_static 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.40132]
    [3.40210]
    "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1073
    [3.40710][2.10527:10599]()
    "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.40710]
    [3.40782]
    "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1083
    [3.41104][2.10600:10672]()
    "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.41104]
    [3.41176]
    "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1104
    [3.41611][2.10673:10895]()
    "env_logger 0.5.13 (registry+https://github.com/rust-lang/crates.io-index)",
    "hyper 0.12.13 (registry+https://github.com/rust-lang/crates.io-index)",
    "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.41611]
    [3.41833]
    "env_logger 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
    "failure 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
    "hyper 0.12.18 (registry+https://github.com/rust-lang/crates.io-index)",
    "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1109
    [3.41907][2.10896:11122]()
    "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)",
    "tokio 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.41907]
    [3.42133]
    "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)",
    "tokio 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1113
    [3.42213][2.11123:11202]()
    "tokio-signal 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.42213]
    [3.42292]
    "tokio-signal 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1115
    [3.42369][2.11203:11274]()
    "toml 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.42369]
    [3.42440]
    "toml 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1121
    [3.42550][2.11275:11294]()
    version = "1.0.80"
    [3.42550]
    [3.42569]
    version = "1.0.82"
  • replacement in Cargo.lock at line 1126
    [3.42669][2.11295:11314]()
    version = "1.0.80"
    [3.42669]
    [3.42688]
    version = "1.0.82"
  • replacement in Cargo.lock at line 1129
    [3.42770][2.11315:11538]()
    "proc-macro2 0.4.20 (registry+https://github.com/rust-lang/crates.io-index)",
    "quote 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)",
    "syn 0.15.14 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.42770]
    [3.42993]
    "proc-macro2 0.4.24 (registry+https://github.com/rust-lang/crates.io-index)",
    "quote 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)",
    "syn 0.15.23 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1136
    [3.43028][2.11539:11558]()
    version = "1.0.32"
    [3.43028]
    [3.43047]
    version = "1.0.33"
  • replacement in Cargo.lock at line 1140
    [3.43200][2.11559:11702]()
    "ryu 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)",
    "serde 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.43200]
    [3.43343]
    "ryu 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)",
    "serde 1.0.82 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1179
    [3.44679][2.11703:11721]()
    version = "0.1.5"
    [3.44679]
    [3.44697]
    version = "0.1.6"
  • replacement in Cargo.lock at line 1182
    [3.44779][2.11722:11869]()
    "arc-swap 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
    "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.44779]
    [3.44926]
    "arc-swap 0.3.6 (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 1198
    [3.45184][2.11870:11888]()
    version = "0.6.5"
    [3.45184]
    [3.45202]
    version = "0.6.7"
  • replacement in Cargo.lock at line 1210
    [3.45567][2.11889:12042]()
    "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
    "redox_syscall 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.45567]
    [3.45720]
    "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 1222
    [3.45948][2.12043:12061]()
    version = "0.1.1"
    [3.45948]
    [3.45966]
    version = "0.1.2"
  • replacement in Cargo.lock at line 1230
    [3.46166][2.12062:12140]()
    "lazy_static 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.46166]
    [3.46244]
    "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1234
    [3.46493][2.12141:12214]()
    "serde 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.46493]
    [3.46566]
    "serde 1.0.82 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1246
    [3.47043][2.12215:12366]()
    "proc-macro2 0.4.20 (registry+https://github.com/rust-lang/crates.io-index)",
    "quote 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.47043]
    [3.47194]
    "proc-macro2 0.4.24 (registry+https://github.com/rust-lang/crates.io-index)",
    "quote 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1273
    [3.47899][2.12367:12387]()
    version = "0.15.14"
    [3.47899]
    [3.47919]
    version = "0.15.23"
  • replacement in Cargo.lock at line 1276
    [3.48001][2.12388:12539]()
    "proc-macro2 0.4.20 (registry+https://github.com/rust-lang/crates.io-index)",
    "quote 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.48001]
    [3.48152]
    "proc-macro2 0.4.24 (registry+https://github.com/rust-lang/crates.io-index)",
    "quote 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1291
    [3.48476][2.12540:12559]()
    version = "0.10.0"
    [3.48476]
    [3.48495]
    version = "0.10.1"
  • replacement in Cargo.lock at line 1294
    [3.48577][2.12560:12783]()
    "proc-macro2 0.4.20 (registry+https://github.com/rust-lang/crates.io-index)",
    "quote 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)",
    "syn 0.15.14 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.48577]
    [3.48800]
    "proc-macro2 0.4.24 (registry+https://github.com/rust-lang/crates.io-index)",
    "quote 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)",
    "syn 0.15.23 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1302
    [3.48911][2.12784:12802]()
    version = "3.0.4"
    [3.48911]
    [3.48929]
    version = "3.0.5"
  • replacement in Cargo.lock at line 1306
    [3.49084][2.12803:13027]()
    "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
    "rand 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)",
    "redox_syscall 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.49084]
    [3.49308]
    "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)",
    "rand 0.6.1 (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 1315
    [3.49494][2.13028:13046]()
    version = "0.4.0"
    [3.49494]
    [3.49512]
    version = "0.4.1"
  • replacement in Cargo.lock at line 1336
    [3.50148][2.13047:13200]()
    "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
    "redox_syscall 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.50148]
    [3.50301]
    "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 1354
    [3.50732][2.13201:13279]()
    "lazy_static 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.50732]
    [3.50810]
    "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1359
    [3.50839][3.50839:50858](),[3.50839][3.50839:50858](),[3.50839][3.50839:50858](),[3.50839][3.50839:50858](),[3.50839][3.50839:50858]()
    version = "0.1.40"
    [3.50839]
    [3.50858]
    version = "0.1.41"
  • replacement in Cargo.lock at line 1362
    [3.50940][2.13280:13433]()
    "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
    "redox_syscall 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.50940]
    [3.51093]
    "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 1369
    [3.51196][2.13434:13453]()
    version = "0.1.11"
    [3.51196]
    [3.51215]
    version = "0.1.13"
  • replacement in Cargo.lock at line 1372
    [3.51297][2.13454:13527]()
    "bytes 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.51297]
    [3.51370]
    "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)",
  • edit in Cargo.lock at line 1375
    [3.51516]
    [3.51516]
    "num_cpus 1.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1377
    [3.51594][2.13528:13615]()
    "tokio-current-thread 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.51594]
    [3.51681]
    "tokio-current-thread 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1381
    [3.51913][2.13616:13696]()
    "tokio-reactor 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.51913]
    [3.51993]
    "tokio-reactor 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1383
    [3.52069][2.13697:14010]()
    "tokio-threadpool 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
    "tokio-timer 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)",
    "tokio-udp 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
    "tokio-uds 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.52069]
    [3.52382]
    "tokio-threadpool 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
    "tokio-timer 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
    "tokio-udp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
    "tokio-uds 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1402
    [3.52731][2.14011:14084]()
    "bytes 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.52731]
    [3.52804]
    "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1409
    [3.53000][2.14085:14103]()
    version = "0.1.3"
    [3.53000]
    [3.53018]
    version = "0.1.4"
  • replacement in Cargo.lock at line 1431
    [3.53754][2.14104:14187]()
    "tokio-threadpool 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.53754]
    [3.53837]
    "tokio-threadpool 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1439
    [3.53971][2.14188:14261]()
    "bytes 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.53971]
    [3.54044]
    "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1441
    [3.54119][2.14262:14332]()
    "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.54119]
    [3.54189]
    "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1446
    [3.54227][2.14333:14351]()
    version = "0.1.6"
    [3.54227]
    [3.54245]
    version = "0.1.7"
  • replacement in Cargo.lock at line 1449
    [3.54327][2.14352:14434]()
    "crossbeam-utils 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.54327]
    [3.54409]
    "crossbeam-utils 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1451
    [3.54484][2.14435:14583]()
    "lazy_static 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
    "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.54484]
    [3.54632]
    "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
    "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1454
    [3.54703][3.54703:54778](),[3.54703][3.54703:54778](),[3.54703][3.54703:54778](),[3.54703][3.54703:54778](),[3.54703][3.54703:54778]()
    "num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.54703]
    [3.54778]
    "num_cpus 1.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1463
    [3.55121][2.14584:14602]()
    version = "0.2.6"
    [3.55121]
    [3.55139]
    version = "0.2.7"
  • replacement in Cargo.lock at line 1467
    [3.55296][2.14603:14675]()
    "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.55296]
    [3.55368]
    "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1470
    [3.55513][2.14676:14754]()
    "signal-hook 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.55513]
    [3.55591]
    "signal-hook 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1473
    [3.55748][2.14755:14835]()
    "tokio-reactor 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.55748]
    [3.55828]
    "tokio-reactor 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1482
    [3.56035][2.14836:14909]()
    "bytes 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.56035]
    [3.56108]
    "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1487
    [3.56402][2.14910:14990]()
    "tokio-reactor 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.56402]
    [3.56482]
    "tokio-reactor 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1492
    [3.56523][2.14991:15009]()
    version = "0.1.8"
    [3.56523]
    [3.56541]
    version = "0.1.9"
  • replacement in Cargo.lock at line 1495
    [3.56623][2.15010:15174]()
    "crossbeam-deque 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
    "crossbeam-utils 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.56623]
    [3.56787]
    "crossbeam-deque 0.6.2 (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 1498
    [3.56862][2.15175:15245](),[3.11957][3.56932:57007](),[3.13031][3.56932:57007](),[2.15245][3.56932:57007](),[3.12184][3.56932:57007](),[3.56932][3.56932:57007](),[3.57007][2.15246:15317]()
    "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
    "num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
    "rand 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.56862]
    [3.57078]
    "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
    "num_cpus 1.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
    "rand 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1506
    [3.57195][2.15318:15336]()
    version = "0.2.7"
    [3.57195]
    [3.57213]
    version = "0.2.8"
  • replacement in Cargo.lock at line 1509
    [3.57295][2.15337:15419]()
    "crossbeam-utils 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.57295]
    [3.57377]
    "crossbeam-utils 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1527
    [3.58000][2.15420:15438]()
    version = "0.1.2"
    [3.58000]
    [3.58018]
    version = "0.1.3"
  • replacement in Cargo.lock at line 1530
    [3.58100][2.15439:15512]()
    "bytes 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.58100]
    [3.58173]
    "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1532
    [3.58248][2.15513:15583]()
    "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.58248]
    [3.58318]
    "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1536
    [3.58543][2.15584:15664]()
    "tokio-reactor 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.58543]
    [3.58623]
    "tokio-reactor 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1541
    [3.58657][2.15665:15683]()
    version = "0.2.3"
    [3.58657]
    [3.58675]
    version = "0.2.4"
  • replacement in Cargo.lock at line 1544
    [3.58757][2.15684:15757]()
    "bytes 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.58757]
    [3.58830]
    "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1547
    [3.58977][2.15758:15900]()
    "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
    "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.58977]
    [3.59119]
    "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)",
    "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
  • edit in Cargo.lock at line 1551
    [3.59264]
    [3.59264]
    "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1553
    [3.59340][2.15901:15981]()
    "tokio-reactor 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.59340]
    [3.59420]
    "tokio-reactor 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1561
    [3.59555][2.15982:16055]()
    "bytes 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.59555]
    [3.59628]
    "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1570
    [3.60222][2.16056:16129]()
    "tokio 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.60222]
    [3.60295]
    "tokio 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1577
    [3.60767][2.16130:16206]()
    "xml5ever 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.60767]
    [3.60843]
    "xml5ever 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1583
    [3.60952][2.16207:16225]()
    version = "0.4.8"
    [3.60952]
    [3.60970]
    version = "0.4.10"
  • replacement in Cargo.lock at line 1586
    [3.61052][2.16226:16299]()
    "serde 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.61052]
    [3.61125]
    "serde 1.0.82 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1598
    [3.61566][2.16300:16448]()
    "lazy_static 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
    "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.61566]
    [3.61714]
    "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
    "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1601
    [3.61785][2.16449:16524]()
    "smallvec 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.61785]
    [3.61860]
    "smallvec 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1605
    [3.62091][2.16525:16605]()
    "tokio-reactor 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.62091]
    [3.62171]
    "tokio-reactor 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1607
    [3.62247][2.16606:16830]()
    "tokio-timer 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)",
    "tokio-udp 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
    "url 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.62247]
    [3.62471]
    "tokio-timer 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
    "tokio-udp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
    "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1620
    [3.62841][2.16831:17054]()
    "ipconfig 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
    "lazy_static 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
    "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.62841]
    [3.63064]
    "ipconfig 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
    "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
    "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1625
    [3.63218][2.17055:17203]()
    "smallvec 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
    "tokio 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.63218]
    [3.63366]
    "smallvec 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)",
    "tokio 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1647
    [3.63823][2.17204:17222]()
    version = "0.1.1"
    [3.63823]
    [3.63841]
    version = "0.1.3"
  • replacement in Cargo.lock at line 1688
    [3.64830][2.17223:17241]()
    version = "1.7.1"
    [3.64830]
    [3.64848]
    version = "1.7.2"
  • replacement in Cargo.lock at line 1703
    [3.65305][2.17242:17260]()
    version = "1.0.1"
    [3.65305]
    [3.65323]
    version = "1.0.2"
  • replacement in Cargo.lock at line 1732
    [3.66043][2.17261:17331]()
    "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.66043]
    [3.66113]
    "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1814
    [3.68341][2.17332:17351]()
    version = "0.12.0"
    [3.68341]
    [3.68360]
    version = "0.12.1"
  • replacement in Cargo.lock at line 1817
    [3.68442][2.17352:17422]()
    "log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)",
    [3.68442]
    [3.68512]
    "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
  • replacement in Cargo.lock at line 1819
    [3.68582][3.68582:68732](),[3.68582][3.68582:68732](),[3.68582][3.68582:68732](),[3.68582][3.68582:68732](),[3.68582][3.68582:68732]()
    "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.68582]
    [3.68732]
    "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 1841
    [3.69609][2.17423:17578]()
    "checksum aho-corasick 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)" = "68f56c7353e5a9547cbd76ed90f7bb5ffc3ba09d4ea9bd1d8c06c8b1142eeb5a"
    [3.69609]
    [3.69764]
    "checksum aho-corasick 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)" = "1e9a933f4e58658d7b12defcf96dc5c720f20832deebe3e0a19efd3b6aaeeb9e"
  • replacement in Cargo.lock at line 1843
    [3.69917][2.17579:17730]()
    "checksum arc-swap 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "af192669a9f44d2fb63c691a04183c8e12428f34041449270b08c0456587f5a5"
    [3.69917]
    [3.70068]
    "checksum arc-swap 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "5c5ed110e2537bdd3f5b9091707a8a5556a72ac49bbd7302ae0b28fdccb3246c"
  • replacement in Cargo.lock at line 1845
    [3.70219][2.17731:17882]()
    "checksum arrayvec 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)" = "a1e964f9e24d588183fcb43503abda40d288c8657dfc27311516ce2f05675aef"
    [3.70219]
    [3.70370]
    "checksum arrayvec 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" = "f405cc4c21cd8b784f6c8fc2adf9bc00f59558f0049b5ec21517f875963040cc"
  • edit in Cargo.lock at line 1847
    [3.70518]
    [3.70518]
    "checksum autocfg 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4e5f34df7a019573fb8bdc7e24a2bfebe51a2a1d6bfdbaeccedb3c41fc574727"
  • replacement in Cargo.lock at line 1849
    [3.70670][3.70670:70979](),[3.70670][3.70670:70979](),[3.70670][3.70670:70979](),[3.70670][3.70670:70979](),[3.70670][3.70670:70979]()
    "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.70670]
    [3.70979]
    "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 1857
    [3.71888][2.17883:18032]()
    "checksum bytes 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)" = "0ce55bd354b095246fc34caf4e9e242f5297a7fd938b090cadfea6eee614aa62"
    [3.71888]
    [3.72037]
    "checksum bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)" = "40ade3d27603c2cb345eb0912aec461a6dec7e06a4ae48589904e808335c7afa"
  • replacement in Cargo.lock at line 1859
    [3.72184][3.72184:72330](),[3.72184][3.72184:72330](),[3.72184][3.72184:72330](),[3.72184][3.72184:72330](),[3.72184][3.72184:72330]()
    "checksum cc 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)" = "f159dfd43363c4d08055a07703eb7a3406b0dac4d0584d96965a3262db3c9d16"
    [3.72184]
    [3.72330]
    "checksum cc 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)" = "389803e36973d242e7fecb092b2de44a3d35ac62524b3b9339e51d577d668e02"
  • replacement in Cargo.lock at line 1867
    [3.73406][2.18033:18507]()
    "checksum crossbeam-deque 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3486aefc4c0487b9cb52372c97df0a48b8c249514af1ee99703bf70d2f2ceda1"
    "checksum crossbeam-epoch 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "30fecfcac6abfef8771151f8be4abc9e4edc112c2bcb233314cafde2680536e9"
    "checksum crossbeam-utils 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "677d453a17e8bd2b913fa38e8b9cf04bcdbb5be790aa294f2389661d72036015"
    [3.73406]
    [3.73880]
    "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.3 (registry+https://github.com/rust-lang/crates.io-index)" = "41ee4864f4797060e52044376f7d107429ce1fb43460021b126424b7180ee21a"
  • replacement in Cargo.lock at line 1874
    [3.74491][2.18508:18817]()
    "checksum encoding_rs 0.8.10 (registry+https://github.com/rust-lang/crates.io-index)" = "065f4d0c826fdaef059ac45487169d918558e3cf86c9d89f6e81cf52369126e5"
    "checksum env_logger 0.5.13 (registry+https://github.com/rust-lang/crates.io-index)" = "15b0a4d2e39f8420210be8b27eeda28029729e2fd4291019455016c348240c38"
    [3.74491]
    [3.74800]
    "checksum encoding_rs 0.8.13 (registry+https://github.com/rust-lang/crates.io-index)" = "1a8fa54e6689eb2549c4efed8d00d7f3b2b994a064555b0e8df4ae3764bcc4be"
    "checksum env_logger 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "afb070faf94c85d17d50ca44f6ad076bce18ae92f0037d350947240a36e9d42e"
  • replacement in Cargo.lock at line 1890
    [3.76963][2.18818:18964]()
    "checksum h2 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)" = "7dd33bafe2e6370e6c8eb0cf1b8c5f93390b90acde7e9b03723f166b28b648ed"
    [3.76963]
    [3.77109]
    "checksum h2 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)" = "1ac030ae20dee464c5d0f36544d8b914a6bc606da44a57e052d2b0f5dae129e0"
  • replacement in Cargo.lock at line 1892
    [3.77260][2.18965:19113]()
    "checksum http 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)" = "24f58e8c2d8e886055c3ead7b28793e1455270b5fb39650984c224bc538ba581"
    [3.77260]
    [3.77408]
    "checksum http 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)" = "02096a6d2c55e63f7fcb800690e4f889a25f6ec342e3adb4594e293b625215ab"
  • replacement in Cargo.lock at line 1894
    [3.77559][2.19114:19416]()
    "checksum humantime 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0484fda3e7007f2a4a0d9c3a703ca38c71c54c55602ce4660c419fd32e188c9e"
    "checksum hyper 0.12.13 (registry+https://github.com/rust-lang/crates.io-index)" = "95ffee0d1d30de4313fdaaa485891ce924991d45bbc18adfc8ac5b1639e62fbb"
    [3.77559]
    [3.77861]
    "checksum humantime 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3ca7e5f2e110db35f93b837c81797f3714500b81d517bf20c431b16d3ca4f114"
    "checksum hyper 0.12.18 (registry+https://github.com/rust-lang/crates.io-index)" = "8dd7729fc83d88353415f6816fd4bb00897aa47c7f1506b69060e74e6e3d8e8b"
  • replacement in Cargo.lock at line 1899
    [3.78307][2.19417:19568]()
    "checksum ipconfig 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "fccb81dd962b29a25de46c4f46e497b75117aa816468b6fff7a63a598a192394"
    [3.78307]
    [3.78458]
    "checksum ipconfig 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "08f7eadeaf4b52700de180d147c4805f199854600b36faa963d91114827b2ffc"
  • replacement in Cargo.lock at line 1904
    [3.79055][2.19569:20022]()
    "checksum lazy_static 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ca488b89a5657b0a2ecd45b95609b3e848cf1755da332a0da46e2b2b1cb371a7"
    "checksum lazycell 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ddba4c30a78328befecec92fc94970e53b3ae385827d28620f0f5bb2493081e0"
    "checksum libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)" = "76e3a3ef172f1a0b9a9ff0dd1491ae5e6c948b94479a3021819ba7d860c8645d"
    [3.79055]
    [3.79508]
    "checksum lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a374c89b9db55895453a74c1e38861d9deec0b01b405a82516e9d5de4820dea1"
    "checksum lazycell 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b294d6fa9ee409a054354afc4352b0b9ef7ca222c69b8812cbea9e7d2bf3783f"
    "checksum libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)" = "2d2857ec59fadc0773853c664d2d18e7198e83883e7060b63c924cb077bd5c74"
  • replacement in Cargo.lock at line 1908
    [3.79666][2.20023:20466]()
    "checksum lock_api 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "775751a3e69bde4df9b38dd00a1b5d6ac13791e4223d4a0506577f0dd27cfb7a"
    "checksum log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "e19e8d5c34a3e0e2223db8e060f9e8264aeeb5c5fc64a4ee9965c062211c024b"
    "checksum log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)" = "d4fcce5fa49cc693c312001daf1d13411c4a5283796bac1084299ea3e567113f"
    [3.79666]
    [3.80109]
    "checksum lock_api 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "62ebf1391f6acad60e5c8b43706dde4582df75c06698ab44511d15016bc2442c"
    "checksum log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c84ec4b527950aa83a329754b01dbe3f58361d1c5efacd1f6d68c494d08a17c6"
  • replacement in Cargo.lock at line 1912
    [3.80407][3.80407:80561](),[3.80407][3.80407:80561](),[3.80407][3.80407:80561](),[3.80407][3.80407:80561](),[3.80407][3.80407:80561]()
    "checksum markup5ever 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)" = "a87c4100d614080c8ab43334fb028ebe387f273fb61ed4ff0eae9189b94b6be8"
    [3.80407]
    [3.80561]
    "checksum markup5ever 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)" = "897636f9850c3eef4905a5540683ed53dc9393860f0846cab2c2ddf9939862ff"
  • replacement in Cargo.lock at line 1914
    [3.80711][2.20467:20616]()
    "checksum memchr 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4b3629fe9fdbff6daa6c33b90f7c08355c1aca05a3d01fa8063b822fcf185f3b"
    [3.80711]
    [3.80860]
    "checksum memchr 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "db4c41318937f6e76648f42826b1d9ade5c09cafb5aef7e351240a70f39206e9"
  • replacement in Cargo.lock at line 1923
    [3.82071][2.20617:20767]()
    "checksum nodrop 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)" = "9a2228dca57108069a5262f2ed8bd2e82496d2e074a06d1ccc7ce1687b6ae0a2"
    [3.82071]
    [3.82221]
    "checksum nodrop 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)" = "2f9667ddcc6cc8a43afc9b7917599d7216aa09c463919ea32c59ed6cac8bc945"
  • replacement in Cargo.lock at line 1926
    [3.82529][3.82529:82680](),[3.82529][3.82529:82680](),[3.82529][3.82529:82680](),[3.82529][3.82529:82680](),[3.82529][3.82529:82680]()
    "checksum num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c51a3322e4bca9d212ad9a158a02abc6934d005490c054a2778df73a70aa0a30"
    [3.82529]
    [3.82680]
    "checksum num_cpus 1.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5a69d464bdc213aaaff628444e99578ede64e9c854025aa43b9796530afa9238"
  • replacement in Cargo.lock at line 1930
    [3.83143][2.20768:20921]()
    "checksum owning_ref 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "cdf84f41639e037b484f93433aa3897863b561ed65c6e59c7073d7c561710f37"
    [3.83143]
    [3.83296]
    "checksum owning_ref 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "49a4b8ea2179e6a2e27411d3bca09ca6dd630821cf6894c6c7c8467a8ee7ef13"
  • replacement in Cargo.lock at line 1940
    [3.84694][2.20922:21077]()
    "checksum proc-macro2 0.4.20 (registry+https://github.com/rust-lang/crates.io-index)" = "3d7b7eaaa90b4a90a932a9ea6666c95a389e424eff347f0f793979289429feee"
    [3.84694]
    [3.84849]
    "checksum proc-macro2 0.4.24 (registry+https://github.com/rust-lang/crates.io-index)" = "77619697826f31a02ae974457af0b29b723e5619e113e9397b8b82c6bd253f09"
  • replacement in Cargo.lock at line 1944
    [3.85305][2.21078:21226]()
    "checksum quote 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)" = "dd636425967c33af890042c483632d33fa7a18f19ad1d7ea72e8998c6ef8dea5"
    [3.85305]
    [3.85453]
    "checksum quote 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)" = "53fa22a1994bd0f9372d7a816207d8a2677ad0325b073f5c5332760f0fb62b5c"
  • edit in Cargo.lock at line 1947
    [3.85747]
    [3.85747]
    "checksum rand 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ae9d223d52ae411a33cf7e54ec6034ec165df296ccd23533d671a28252b6f66a"
    "checksum rand_chacha 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "771b009e3a508cb67e8823dda454aaa5368c7bc1c16829fb77d3e980440dd34a"
  • replacement in Cargo.lock at line 1951
    [3.86051][2.21227:21384]()
    "checksum redox_syscall 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)" = "c214e91d3ecf43e9a4e41e578973adeb14b474f2bee858742d127af75a0112b1"
    [3.86051]
    [3.86208]
    "checksum rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4"
    "checksum rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08"
    "checksum rand_pcg 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "086bd09a33c7044e56bb44d5bdde5a60e7f119a9e95b0775f545de759a32fe05"
    "checksum rand_xorshift 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "effa3fcaa47e18db002bdde6060944b6d2f9cfd8db471c30e873448ad9187be3"
    "checksum redox_syscall 0.1.44 (registry+https://github.com/rust-lang/crates.io-index)" = "a84bcd297b87a545980a2d25a0beb72a1f490c31f0a9fde52fca35bfbb1ceb70"
  • replacement in Cargo.lock at line 1957
    [3.86364][2.21385:21688]()
    "checksum regex 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "2069749032ea3ec200ca51e4a31df41759190a88edca0d2d86ee8bedf7073341"
    "checksum regex-syntax 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "747ba3b235651f6e2f67dfa8bcdcd073ddb7c243cb21c442fc12395dfcac212d"
    [3.86364]
    [3.86667]
    "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.86978][3.86978:87135](),[3.86978][3.86978:87135](),[3.86978][3.86978:87135](),[3.86978][3.86978:87135](),[3.86978][3.86978:87135](),[3.86978][3.86978:87135]()
    "checksum rustc-demangle 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "bcfe5b13211b4d78e5c2cadfebd7769197d95c639c35a50057eb4c05de811395"
    [3.86978]
    [3.87135]
    "checksum rustc-demangle 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)" = "01b90379b8664dd83460d59bdc5dd1fd3172b8913788db483ed1325171eab2f7"
  • replacement in Cargo.lock at line 1963
    [3.87291][2.21689:21835]()
    "checksum ryu 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "7153dd96dade874ab973e098cb62fcdbb89a03682e46b144fd09550998d4a4a7"
    [3.87291]
    [3.87437]
    "checksum ryu 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)" = "eb9e9b8cde282a9fe6a42dd4681319bfb63f121b8a8ee9439c6f4107e58a46f7"
  • replacement in Cargo.lock at line 1972
    [3.88670][2.21836:22295]()
    "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"
    "checksum serde_json 1.0.32 (registry+https://github.com/rust-lang/crates.io-index)" = "43344e7ce05d0d8280c5940cabb4964bea626aa58b1ec0e8c73fa2a8512a38ce"
    [3.88670]
    [3.89129]
    "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"
    "checksum serde_json 1.0.33 (registry+https://github.com/rust-lang/crates.io-index)" = "c37ccd6be3ed1fdf419ee848f7c758eb31b054d7cd3ae3600e3bae0adf569811"
  • replacement in Cargo.lock at line 1978
    [3.89571][2.22296:22450]()
    "checksum signal-hook 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "f7ca1f1c0ed6c8beaab713ad902c041e4f09d06e1b4bb74c5fc553c078ed0110"
    [3.89571]
    [3.89725]
    "checksum signal-hook 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "8941ae94fa73d0f73b422774b3a40a7195cecd88d1c090f4b37ade7dc795ab66"
  • replacement in Cargo.lock at line 1981
    [3.90024][2.22451:22602]()
    "checksum smallvec 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)" = "153ffa32fd170e9944f7e0838edf824a754ec4c1fc64746fcc9fe1f8fa602e5d"
    [3.90024]
    [3.90175]
    "checksum smallvec 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)" = "b73ea3738b47563803ef814925e69be00799a8c07420be8b996f8e98fb2336db"
  • replacement in Cargo.lock at line 1984
    [3.90486][2.22603:22752]()
    "checksum string 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "00caf261d6f90f588f8450b8e1230fa0d5be49ee6140fdfbcb55335aff350970"
    [3.90486]
    [3.90635]
    "checksum string 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "98998cced76115b1da46f63388b909d118a37ae0be0f82ad35773d4a4bc9d18d"
  • replacement in Cargo.lock at line 1990
    [3.91412][2.22753:22901]()
    "checksum syn 0.15.14 (registry+https://github.com/rust-lang/crates.io-index)" = "baaba45c6bf60fe29aaf241fa33306c0b75c801edea8378263a8f043b09a5634"
    [3.91412]
    [3.91560]
    "checksum syn 0.15.23 (registry+https://github.com/rust-lang/crates.io-index)" = "9545a6a093a3f0bd59adb472700acc08cad3776f860f16a897dfce8c88721cbc"
  • replacement in Cargo.lock at line 1992
    [3.91709][2.22902:23359]()
    "checksum synstructure 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ec37f4fab4bafaf6b5621c1d54e6aa5d4d059a8f84929e87abfdd7f9f04c6db2"
    "checksum tempfile 3.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "55c1195ef8513f3273d55ff59fe5da6940287a0d7a98331254397f464833675b"
    "checksum tendril 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9de21546595a0873061940d994bbbc5c35f024ae4fd61ec5c5b159115684f508"
    [3.91709]
    [3.92166]
    "checksum synstructure 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "73687139bf99285483c96ac0add482c3776528beac1d97d444f6e91f203a2015"
    "checksum tempfile 3.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "7e91405c14320e5c79b3d148e1c86f40749a36e490642202a31689cb1a3452b2"
    "checksum tendril 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "707feda9f2582d5d680d733e38755547a3e8fb471e7ba11452ecfd9ce93a5d3b"
  • replacement in Cargo.lock at line 1999
    [3.92775][3.92775:92923](),[3.92775][3.92775:92923](),[3.92775][3.92775:92923](),[3.92923][2.23360:23509]()
    "checksum time 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)" = "d825be0eb33fda1a7e68012d51e9c7f451dc1a69391e7fdc197060bb8c56667b"
    "checksum tokio 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)" = "6e93c78d23cc61aa245a8acd2c4a79c4d7fa7fb5c3ca90d5737029f043a84895"
    [3.92775]
    [3.93072]
    "checksum time 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)" = "847da467bf0db05882a9e2375934a8a55cffdc9db0d128af1518200260ba1f6c"
    "checksum tokio 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)" = "a7817d4c98cc5be21360b3b37d6036fe9b7aefa5b7a201b7b16ff33423822f7d"
  • replacement in Cargo.lock at line 2003
    [3.93382][2.23510:23673]()
    "checksum tokio-current-thread 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "f90fcd90952f0a496d438a976afba8e5c205fb12123f813d8ab3aa1c8436638c"
    [3.93382]
    [3.93545]
    "checksum tokio-current-thread 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "331c8acc267855ec06eb0c94618dcbbfea45bed2d20b77252940095273fb58f6"
  • replacement in Cargo.lock at line 2007
    [3.94005][2.23674:23985]()
    "checksum tokio-reactor 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "4b26fd37f1125738b2170c80b551f69ff6fecb277e6e5ca885e53eec2b005018"
    "checksum tokio-signal 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "40da88e6445ed335e14746b60986a6c8b3632b09bc9097df76b4a6ddd16f1f92"
    [3.94005]
    [3.94316]
    "checksum tokio-reactor 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "502b625acb4ee13cbb3b90b8ca80e0addd263ddacf6931666ef751e610b07fb5"
    "checksum tokio-signal 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)" = "dd6dc5276ea05ce379a16de90083ec80836440d5ef8a6a39545a3207373b8296"
  • replacement in Cargo.lock at line 2010
    [3.94468][2.23986:24299]()
    "checksum tokio-threadpool 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "3929aee321c9220ed838ed6c3928be7f9b69986b0e3c22c972a66dbf8a298c68"
    "checksum tokio-timer 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)" = "3a52f00c97fedb6d535d27f65cccb7181c8dd4c6edc3eda9ea93f6d45d05168e"
    [3.94468]
    [3.94781]
    "checksum tokio-threadpool 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "56c5556262383032878afad66943926a1d1f0967f17e94bd7764ceceb3b70e7f"
    "checksum tokio-timer 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "4f37f0111d76cc5da132fe9bc0590b9b9cfd079bc7e75ac3846278430a299ff8"
  • replacement in Cargo.lock at line 2013
    [3.94933][2.24300:24604]()
    "checksum tokio-udp 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "da941144b816d0dcda4db3a1ba87596e4df5e860a72b70783fe435891f80601c"
    "checksum tokio-uds 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "df195376b43508f01570bacc73e13a1de0854dc59e79d1ec09913e8db6dd2a70"
    [3.94933]
    [3.95237]
    "checksum tokio-udp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "66268575b80f4a4a710ef83d087fdfeeabdce9b74c797535fbac18a2cb906e92"
    "checksum tokio-uds 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "99ce87382f6c1a24b513a72c048b2c8efe66cb5161c9061d00bee510f08dc168"
  • replacement in Cargo.lock at line 2016
    [3.95390][2.24605:24752]()
    "checksum toml 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" = "4a2ecc31b0351ea18b3fe11274b8db6e4d82bce861bbb22e6dbed40417902c65"
    [3.95390]
    [3.95537]
    "checksum toml 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)" = "758664fc71a3a69038656bee8b6be6477d2a6c315a6b81f7081f591bffa4111f"
  • replacement in Cargo.lock at line 2022
    [3.96309][2.24753:24904]()
    "checksum ucd-util 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "fd2be2d6639d0f8fe6cdda291ad456e23629558d466e2789d2c3e9892bda285d"
    [3.96309]
    [3.96460]
    "checksum ucd-util 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "535c204ee4d8434478593480b8f86ab45ec9aae0e83c568ca81abf0fd0e88f86"
  • replacement in Cargo.lock at line 2029
    [3.97397][2.24905:25051]()
    "checksum url 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2a321979c09843d272956e73700d12c4e7d3d92b2ee112b31548aef0d4efc5a6"
    [3.97397]
    [3.97543]
    "checksum url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "dd4e7c0d531266369519a4aa4f399d748bd37043b00bde1e4ff1f60a120b355a"
  • replacement in Cargo.lock at line 2031
    [3.97691][2.25052:25206]()
    "checksum utf8-ranges 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "fd70f467df6810094968e2fce0ee1bd0e87157aceb026a8c083bcf5e25b9efe4"
    [3.97691]
    [3.97845]
    "checksum utf8-ranges 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "796f7e48bef87609f7ade7e06495a87d5cd06c7866e6a5cbfceffc558a243737"
  • replacement in Cargo.lock at line 2048
    [3.100296][2.25207:25359]()
    "checksum xml5ever 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ead952cf8bab253fb5cb56e1fff780747bbf7a7258fb0451afe645a166050b1f"
    [3.100296]
    [3.100448]
    "checksum xml5ever 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)" = "32cd7ebf0203c620906230ce22caa5df0b603c32b6fef72a275a48f6a2ae64b9"