foundry-rs 0.1.3

Configuration-driven REST backend library for Rust with PostgreSQL — define schemas, tables, and APIs in JSON, get a production-grade REST service.
Documentation
[
  {
    "id": "tbl_users",
    "name": "users",
    "comment": "User accounts",
    "primary_key": "id",
    "unique": [["email"]],
    "check": []
  },
  {
    "id": "tbl_orders",
    "name": "orders",
    "comment": "Customer orders",
    "primary_key": "id",
    "unique": [],
    "check": [
      { "name": "created_at_not_future", "expression": "created_at <= NOW()" }
    ]
  }
]