rustyroad 1.3.0

Rusty Road is a framework written in Rust that is based on Ruby on Rails. It is designed to provide the familiar conventions and ease of use of Ruby on Rails, while also taking advantage of the performance and efficiency of Rust.
Documentation
pub mod connect;
pub mod database;
pub mod databasetype;
pub mod datatype;
pub mod introspection;
pub mod migrations;
pub mod schema;
pub mod statement;
pub mod versions;

#[cfg(test)]
mod statement_test;

pub use connect::*;
pub use database::*;
pub use databasetype::*;
pub use datatype::*;
pub use migrations::*;
pub use schema::*;
pub use statement::*;