cratestack-api 0.7.2

CrateStack server facade for procedures-only, no-database services — Axum HTTP bindings, generated Rust client runtime, and the shared schema/parser/policy/SQL surface, with `cratestack-sqlx` genuinely absent from the dependency graph. Pick this crate via `cratestack = { package = "cratestack-api" }` for `db = None` servers; pick `cratestack-pg` instead the moment a schema needs even one `model`.
Documentation
1
2
3
4
5
6
7
8
datasource db {
  provider = "postgresql"
}

model Widget {
  id Int @id
  name String
}