foundry-rs 0.3.9

Configuration-driven REST backend library for Rust with PostgreSQL — define schemas, tables, and APIs in JSON, get a production-grade REST service.
Documentation
1
2
3
4
5
6
7
8
//! Safe SQL builder: identifiers from config only, values as parameters.

mod builder;
pub mod params;
pub mod rsql;
pub use builder::*;
pub use params::*;
pub use rsql::{parse_rsql, parse_sort, FilterNode, RsqlOp, SortSpec};