diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..b11351b --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +tests/data/* binary diff --git a/build.rs b/build.rs index 3bcea93..77eb102 100644 --- a/build.rs +++ b/build.rs @@ -2,10 +2,10 @@ #![cfg_attr(feature = "clippy", plugin(clippy))] use fs_extra::dir::CopyOptions; +use glob::glob; use std::env; use std::path::{Path, PathBuf}; use std::process::{Command, Stdio}; -use glob::glob; static SOURCE_DIRECTORY: &str = "libpg_query"; static LIBRARY_NAME: &str = "pg_query";