foundry-rs 0.3.11

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
9
10
11
12
//! HTTP handlers for entity CRUD, config ingestion, package install, KV store data, and asset signing.

pub mod asset;
pub mod config;
pub mod entity;
pub mod kv;
pub mod package;
pub use asset::*;
pub use config::*;
pub use entity::*;
pub use kv::*;
pub use package::*;