queryscript 0.1.4

Queryscript is a SQL-based language that allows you to use higher order abstractions like variables, functions, and modules alongside SQL queries.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod arrow;
pub mod error;
pub mod list;
pub mod number;
mod primitives;
pub mod record;
pub mod types;
pub mod value;

#[cfg(feature = "serde")]
mod serde;

pub use error::TypesystemError;
pub use types::*;
pub use value::*;