trustfall_core 0.1.1

The trustfall query engine, empowering you to query everything.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![forbid(unsafe_code)]
#![forbid(unused_lifetimes)]

#[macro_use]
extern crate maplit;

#[macro_use]
extern crate lazy_static;

mod filesystem_interpreter;
mod util;

pub mod frontend;
pub mod graphql_query;
pub mod interpreter;
pub mod ir;
mod numbers_interpreter;
pub mod schema;