rustyroad 1.7.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
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Rich database introspection for code generation.
//!
//! Reads the full shape of a schema — tables, columns with types and defaults,
//! primary keys, foreign keys, unique constraints, and indexes — into a
//! backend-neutral model that generators consume.

mod assemble;
pub mod cli;
pub mod model;
pub mod postgres;
mod queries;

pub use model::{Column, Enum, ForeignKey, Index, Schema, Table, Unique};
pub use postgres::read;