libhdfs3_sys/
lib.rs

1#![allow(non_upper_case_globals)]
2#![allow(non_camel_case_types)]
3#![allow(non_snake_case)]
4
5// Include the bindings directly instead of autogenerating them
6// at build time. This is because some systems may not have the
7// required clang runtime libraries such as `libclangAST.so` etc
8// that are used by `bindgen` to parse C and C++ headers.
9// include!(concat!(env!("OUT_DIR"), "/hdfs3_bindings.rs"));
10include!("hdfs3_bindings.rs");
11
12pub mod err;
13pub mod hdfs3;