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
//! A REPL (read-evaluate-print loop) library for lambda calculus.
//!
//! Based on the [`lamcal`](https://docs.rs/crate/lamcal) crate.

#![doc(html_root_url = "https://docs.rs/lamcal-repl/0.4.0")]
#![warn(
    bare_trait_objects,
    missing_copy_implementations,
    missing_debug_implementations,
//    missing_docs,
    trivial_casts,
    trivial_numeric_casts,
    unsafe_code,
    unstable_features,
    unused_extern_crates,
    unused_import_braces,
    unused_qualifications,
)]

#[cfg(feature = "config")]
extern crate config;

#[cfg(feature = "rustyline")]
extern crate rustyline;

#[macro_use]
extern crate failure;

extern crate lamcal;

pub mod command;
pub mod context;
pub mod model;
pub mod settings;
pub mod let_stmt;