cratestack-sqlite 0.7.3

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
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Regression fixture: `@@paged` on a model consumed by
// `include_embedded_schema!` used to be a hard compile error (it shaped
// nothing — the embedded composer generates no `list` route). It now
// compiles: real pagination is available unconditionally via
// `FindMany::paginate` regardless of this attribute — see
// `cratestack-macros/src/include/embedded.rs`'s module doc. This fixture
// proves the `@@paged` case specifically still compiles and works.

model Post {
  id Int @id
  title String
  published Boolean

  @@paged
}