rustyroad 1.0.26

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
1
2
3
4
5
6
7
8
9
10
11
pub mod category;
pub mod mysql_types;
pub mod postgres_types;
pub mod sqlite_types;
pub mod types_for_database;

pub use category::*;
pub use mysql_types::*;
pub use postgres_types::*;
pub use sqlite_types::*;
pub use types_for_database::*;