hdfs-native 0.13.5

Native HDFS client implementation in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[allow(clippy::all, dead_code)]
pub mod common {
    #[cfg(feature = "generate-protobuf")]
    include!(concat!(env!("OUT_DIR"), "/hadoop.common.rs"));
    #[cfg(not(feature = "generate-protobuf"))]
    include!(concat!("hadoop.common.rs"));
}

#[allow(clippy::all, dead_code)]
pub mod hdfs {
    #[cfg(feature = "generate-protobuf")]
    include!(concat!(env!("OUT_DIR"), "/hadoop.hdfs.rs"));
    #[cfg(not(feature = "generate-protobuf"))]
    include!(concat!("hadoop.hdfs.rs"));
}