miden-client-sqlite-store 0.14.7

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;
mod helpers;
mod storage;
mod vault;

#[cfg(test)]
mod tests;