From 03640e680e11f6704008349dcadc762f2a24204a Mon Sep 17 00:00:00 2001 From: Jeremy Fitzhardinge Date: Wed, 25 Jul 2018 15:39:05 -0700 Subject: [PATCH] tp2: update rust-crates-io Summary: Fix crate names for where the crate name doesn't match the package name. This affected a few crates, but in practice only rust-crypto/crypto was used. Reviewed By: Imxset21 Differential Revision: D9002131 fbshipit-source-id: d9591e4b6da9a00029054785b319a6584958f043 --- lib/revisionstore/src/lib.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/revisionstore/src/lib.rs b/lib/revisionstore/src/lib.rs index 9fde3ff4b8..413f65b943 100644 --- a/lib/revisionstore/src/lib.rs +++ b/lib/revisionstore/src/lib.rs @@ -3,14 +3,11 @@ //! and file data) extern crate byteorder; -#[cfg(not(fbcode_build))] extern crate crypto; #[macro_use] extern crate failure; extern crate lz4_pyframe; extern crate memmap; -#[cfg(fbcode_build)] -extern crate rust_crypto as crypto; extern crate tempfile; #[cfg(test)]