vortex_array/aliases/
mod.rs

1//! Re-exports of third-party crates we use in macros exported from vortex-array.
2//!
3
4pub mod paste {
5    //! Re-export of [`paste`](https://docs.rs/paste/latest/paste/).
6    pub use paste::paste;
7}
8
9// Re-export of [`inventory`](https://docs.rs/inventory/latest/inventory/).
10pub use inventory;