1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#![recursion_limit = "1024"]
#![cfg_attr(feature = "cargo-clippy", allow(clippy::transmute_bytes_to_str))]

#[macro_use]
extern crate error_chain;

#[cfg(test)]
#[macro_use]
extern crate quickcheck;

mod array;
mod h5type;
mod string;

mod errors {
    error_chain! {
        foreign_links {
            Ascii(::ascii::AsAsciiStrError);
        }
    }
}

pub use self::array::{Array, VarLenArray};
pub use self::errors::Error;
pub use self::h5type::{
    CompoundField, CompoundType, EnumMember, EnumType, FloatSize, H5Type, IntSize, TypeDescriptor,
};
pub use self::string::{FixedAscii, FixedUnicode, VarLenAscii, VarLenUnicode};