1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
#![deny(missing_docs)]
#![recursion_limit = "256"]
//! `mycroft` is an in-memory, Datalog + callbacks library.
//!
//! Currently, all it can do is parse predicates.
//!
//! `mycroft` is in work-in-progress status, and is not even suitable for experimental use.
//!
#[macro_use]
extern crate combine;
#[macro_use]
extern crate error_chain;
#[macro_use]
extern crate quote;
extern crate syn;

pub mod ast;
pub mod codegen;
pub mod ir;
pub mod parse;