vortex_array/aliases/
mod.rs

1// SPDX-License-Identifier: Apache-2.0
2// SPDX-FileCopyrightText: Copyright the Vortex contributors
3
4//! Re-exports of third-party crates we use in macros exported from vortex-array.
5//!
6
7pub mod paste {
8    //! Re-export of [`paste`](https://docs.rs/paste/latest/paste/).
9    pub use paste::paste;
10}
11
12// Re-export of [`inventory`](https://docs.rs/inventory/latest/inventory/).
13pub use inventory;