prqlc 0.13.13

PRQL is a modern language for transforming data — a simple, powerful, pipelined SQL replacement.
Documentation
1
2
3
4
5
6
7
8
9
// Exclude benchmarks from WASM builds (criterion depends on alloca).
// The inner cfg attr compiles an empty crate, but we still need a main for WASM.
#![cfg_attr(not(target_family = "wasm"), allow(unused))]

#[cfg(target_family = "wasm")]
fn main() {}

#[cfg(not(target_family = "wasm"))]
include!("bench_impl.rs");