1/// Contains the core of the Polonius borrow checking engine.
2/// Input is fed in via AllFacts, and outputs are returned via Output
3extern crate datafrog;
4#[macro_use]
5extern crate log;
6extern crate rustc_hash;
7
8mod facts;
9mod output;
10
11// Reexports of facts
12pub use facts::AllFacts;
13pub use facts::Atom;
14pub use facts::FactTypes;
15pub use output::Algorithm;
16pub use output::Output;
17