canrun 0.4.0

A logic programming library inspired by the *Kanren family of language DSLs.
Documentation
//! Low level implementation with basic unification, forking and constraint tracking.

pub mod constraints;
mod fork;
mod mkmvmap;
mod query;
mod reify;
mod state;
mod state_iterator;
mod unify;
mod value;

pub use fork::*;
pub use query::*;
pub use reify::*;
pub use state::*;
pub use state_iterator::*;
pub use unify::*;
pub use value::*;