1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
//! Memquery: In-memory relation manipulations
//!
//! Memquery is an in-memory relational database engine that does its
//! query planning at compile time, which provides a zero-cost
//! abstraction for complex data manipulations.
//!
//! All of the data storage backends provide the same API, so you
//! can adjust your data storage strategy for optimal performance
//! without a significant retooling of the domain logic that relies
//! on the data.
//!
//! Because of the amount of work this crate does with the type system,
//! you will probably need to raise the recursion limit in your crate
//! to 256 or higher:
//! ```
//! #![recursion_limit="256"]
//! ```
pub use tylisp;
pub