Update rust-crates-io in tp2 to include boxfnonce crate

Summary: The `boxfnonce` crate is a workaround for the lack of `FnBox` in stable Rust. Without it, it isn't possible to call a `Box<FnOnce>`.

Reviewed By: jsgf

Differential Revision: D5626687

fbshipit-source-id: 01ab37b98add5dae10f3c4834c2a330593639ab6
This commit is contained in:
Arun Kulshreshtha 2017-08-14 20:30:14 -07:00 committed by Facebook Github Bot
parent 99490863ef
commit 38bc0eaa77

View File

@ -21,7 +21,7 @@ extern crate error_chain;
#[macro_use]
extern crate slog;
extern crate slog_term;
extern crate kvfilter;
extern crate slog_kvfilter;
#[macro_use]
extern crate maplit;
@ -55,7 +55,7 @@ use futures::sync::mpsc;
use clap::{App, Arg};
use slog::{Drain, Level, LevelFilter, Logger};
use kvfilter::KVFilter;
use slog_kvfilter::KVFilter;
use bytes::Bytes;
use hgproto::sshproto::{HgSshCommandDecode, HgSshCommandEncode};