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
15
16
17
//! Rust code generation from an introspected Postgres database.
//!
//! This is the Actix/SQLx counterpart to the TypeScript Drizzle/oRPC target. It
//! emits strongly typed row and input models, SQLx repositories, and Actix CRUD
//! procedures from the same introspected schema.

mod models;
mod naming;
mod procedures;
mod repositories;
mod types;
mod writer;

#[cfg(test)]
mod tests;

pub use writer::{write, Outputs};