cratestack-sqlite 0.7.5

CrateStack embedded facade — rusqlite-backed SQLite runtime (native + wasm32) plus the shared schema/parser/policy/SQL surface. Pick this crate via `cratestack = { package = "cratestack-sqlite" }` for mobile, desktop, browser, or any on-device storage layer.
Documentation
// cratestack#398 regression fixture: every field name below is a Rust
// keyword. `include_embedded_schema!` used to emit these verbatim (no
// raw-identifier escaping), producing uncompilable Rust — see the issue's
// own tested table. This fixture is the exact keyword list from that
// table, minus `self`/`Self`/`super`/`crate` (which the parser now
// rejects at schema-parse time instead — see
// `cratestack_parser::tests_reserved_keywords`).

datasource db {
  provider = "sqlite"
  url = env("DATABASE_URL")
}

model KeywordField {
  id Int @id
  match String
  type String
  ref String
  move String
  impl String
  fn String
  let String
  loop String
  box String
}