vortex_proto/
lib.rs

1// SPDX-License-Identifier: Apache-2.0
2// SPDX-FileCopyrightText: Copyright the Vortex contributors
3
4#![allow(clippy::all, clippy::nursery)]
5
6#[cfg(feature = "dtype")]
7#[rustfmt::skip]
8#[path = "./generated/vortex.dtype.rs"]
9pub mod dtype;
10
11#[cfg(feature = "scalar")]
12#[rustfmt::skip]
13#[path = "./generated/vortex.scalar.rs"]
14pub mod scalar;
15
16#[cfg(feature = "expr")]
17#[rustfmt::skip]
18#[path = "./generated/vortex.expr.rs"]
19pub mod expr;