miden-client-sqlite-store 0.17.0-rc.2

SQLite-backed Store implementation for miden-client
Documentation
1
2
3
4
5
6
7
8
9
10
11
// We use const QUERY: &str for SQL queries to increase readability. This style triggers this clippy
// lint error.
#![allow(clippy::items_after_statements)]

mod accounts;
pub(crate) mod rows;
mod storage;
mod vault;

#[cfg(test)]
mod tests;