1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//! Schema-declared `Json` columns need a model-struct field type that's the
//! same on every backend so the same struct compiles on server and on
//! embedded (including `wasm32-unknown-unknown`, which can't depend on sqlx).
//!
//! This newtype lives in `cratestack-core` so every backend can reference it
//! without introducing a cyclic dep. `cratestack-sqlx` provides the sqlx
//! `Type` / `Encode` / `Decode` impls on native targets.
use ;
;