1#![cfg(target_endian = "little")]
2#![deny(missing_docs)]
3
4pub use dtype::*;
10pub use extension::*;
11pub use field::*;
12pub use field_mask::*;
13pub use half;
14pub use nullability::*;
15pub use ptype::*;
16pub use struct_::*;
17
18#[cfg(feature = "arbitrary")]
19mod arbitrary;
20mod dtype;
21mod extension;
22mod field;
23mod field_mask;
24mod nullability;
25mod ptype;
26mod serde;
27mod struct_;
28
29#[cfg(feature = "proto")]
30pub mod proto {
31 pub use vortex_proto::dtype;
36}
37
38pub mod flatbuffers {
39 pub use vortex_flatbuffers::dtype::*;
44
45 pub use super::serde::flatbuffers::*;
46}