* Add support for `Box<JsonRawValue>` types. This allows keeping structs that implement FromRow lifetime-free, previously you had to use `&'a JsonRawValue`. ```rust struct Foo { bar: Box<JsonRawValue>, } ``` * Add Encode impls for `JsonRawValue`.
sqlx.toml