foundry-rs 0.3.5

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
13
14
[
  {
    "id": "rel_orders_user",
    "from_schema_id": "default",
    "from_table_id": "tbl_orders",
    "from_column_id": "col_orders_user_id",
    "to_schema_id": "default",
    "to_table_id": "tbl_users",
    "to_column_id": "col_users_id",
    "on_update": "CASCADE",
    "on_delete": "CASCADE",
    "name": "fk_orders_user_id"
  }
]