1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
/*!
`rain` is an implementation of an [RVSDG](https://arxiv.org/abs/1912.05036) with a concept of
lifetimes, inspired by (and implemented in) Rust.
*/
#![forbid(unsafe_code, missing_docs, missing_debug_implementations)]
#![feature(weak_into_raw)]

pub mod graph;
pub mod value;
pub mod util;

#[cfg(feature="parser")]
pub mod parser;