vortex_proto/lib.rs
1#![allow(clippy::all, clippy::nursery)]
2
3#[cfg(feature = "dtype")]
4#[rustfmt::skip]
5#[path = "./generated/vortex.dtype.rs"]
6pub mod dtype;
7
8#[cfg(feature = "scalar")]
9#[rustfmt::skip]
10#[path = "./generated/vortex.scalar.rs"]
11pub mod scalar;
12
13#[cfg(feature = "expr")]
14#[rustfmt::skip]
15#[path = "./generated/vortex.expr.rs"]
16pub mod expr;