1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![allow(clippy::all, clippy::nursery)]

#[cfg(feature = "dtype")]
#[rustfmt::skip]
#[path = "./generated/vortex.dtype.rs"]
pub mod dtype;

#[cfg(feature = "scalar")]
#[rustfmt::skip]
#[path = "./generated/vortex.scalar.rs"]
pub mod scalar;

#[cfg(feature = "expr")]
#[rustfmt::skip]
#[path = "./generated/vortex.expr.rs"]
pub mod expr;