buck: add buck target files

Summary: This will let us build with buck.

Reviewed By: quark-zju

Differential Revision: D8980839

fbshipit-source-id: ea64328d32bc2c88984d0c861acefcc55b84ce02
This commit is contained in:
Durham Goode 2018-07-24 15:56:03 -07:00 committed by Facebook Github Bot
parent 813ff213e6
commit 047bf26495
2 changed files with 9 additions and 3 deletions

View File

@ -9,7 +9,9 @@ failure = "*"
lz4-pyframe = { path = "../lz4-pyframe" }
memmap = "*"
mpatch = { path = "../mpatch" }
quickcheck = "*"
rand = "*"
rust-crypto = "*"
tempfile = "*"
[dev-dependencies]
rand = "*"
quickcheck = "*"

View File

@ -3,17 +3,21 @@
//! 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;
extern crate rand;
#[cfg(fbcode_build)]
extern crate rust_crypto as crypto;
extern crate tempfile;
#[cfg(test)]
#[macro_use]
extern crate quickcheck;
#[cfg(test)]
extern crate rand;
mod dataindex;
mod fanouttable;