serde_rusqlite
serde_rusqlite copied to clipboard
Serialize/deserialize rusqlite rows
Updates the requirements on [rusqlite](https://github.com/rusqlite/rusqlite) to permit the latest version. Release notes Sourced from rusqlite's releases. 0.28.0 What's Changed Update bundled SQLcipher to v4.5.1 (equivalent to SQLite 3.37.2) #1131 Implement...
For now, I have to write a wrapper like this to deserialize UUID from BLOB: ```rust #[derive(Debug)] pub struct UuidRow(pub Uuid); impl for UuidRow { fn deserialize(deserializer: D) -> Result...
Hi! Thank you for the library. I have a [project](https://github.com/proofrock/sqliterg) that uses rusqlite and serde-rusqlite. If I use: ```toml rusqlite = { version = "~0", features = ["serde_json"] } serde_rusqlite...
When I deserializing from `CURRENT_TIMESTAMP` to `chrono::DateTime`, `serde_rusqlite::from_rows` returns an error. ## Dependencies ```toml anyhow = "^1.0" serde = { version = "^1.0", features = ["derive"] } chrono = {...
Hi, thank you for this crate—it's been really helpful! I'm currently trying to use serde_rusqlite::from_row in combination with rusqlite::Connection::prepare()?.query_one(...)?, but I'm running into a type mismatch that prevents compilation. Here's...